[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Ncurses/dialog static linking on 64bit problem
From: |
Thomas Dickey |
Subject: |
Re: Ncurses/dialog static linking on 64bit problem |
Date: |
Thu, 10 May 2007 06:48:48 -0400 (EDT) |
On Wed, 9 May 2007, VinX wrote:
Thomas Dickey wrote:
thanks - I'm interested to see what's breaking...
i tried building with this command sequence:
--
wget -c "ftp://invisible-island.net/ncurses/ncurses-5.6.tar.gz"
wget -c "ftp://invisible-island.net/dialog/dialog.tar.gz"
tar xzf ncurses-5.6.tar.gz
tar xzf dialog.tar.gz
mkdir ncurses_build
mkdir dialog_build
export CC="gcc -static"
#building NCURSES
cd ncurses_build/
.../ncurses-5.6/configure --with-trace --without-gpm --with-debug \
--without-dlsym --enable-warnings \
--with-debug
make
#building DIALOG
cd ../dialog_build
#in this package the tracing option is active by default
.../dialog-1.1-20070409/configure --with-warnings
#edit LIBS value on makefile
# -> -L/home/vinx/test/ncurses_build/lib/ -lncurses -lm -L/lib
make
--
i have lauced this command:
--
export NCURSES_TRACE=0xffff
../dialog --trace /home/vinx/output.log --msgbox "Hello World" 6 20
--
and in the output file i have only dumped key pressed... in this example:
That's "/home/vinx/output.log". But also there should be a file named
"trace" which is created by setting the NCURSES_TRACE variable and
linking to the --with-trace'd ncurses. You can check if the static
executable has trace functions, since "nm" would show "trace", "_tracef"
and several other "_traceXXX" symbols.
--
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net
- Ncurses/dialog static linking on 64bit problem, VinX, 2007/05/08
- Re: Ncurses/dialog static linking on 64bit problem, Thomas Dickey, 2007/05/08
- Re: Ncurses/dialog static linking on 64bit problem, VinX, 2007/05/08
- Re: Ncurses/dialog static linking on 64bit problem, Thomas Dickey, 2007/05/08
- Re: Ncurses/dialog static linking on 64bit problem, VinX, 2007/05/08
- Re: Ncurses/dialog static linking on 64bit problem, Thomas Dickey, 2007/05/08
- Re: Ncurses/dialog static linking on 64bit problem, VinX, 2007/05/10
- Re: Ncurses/dialog static linking on 64bit problem,
Thomas Dickey <=
- Re: Ncurses/dialog static linking on 64bit problem, VinX, 2007/05/10
- Re: Ncurses/dialog static linking on 64bit problem, Thomas Dickey, 2007/05/10
- Re: Ncurses/dialog static linking on 64bit problem, VinX, 2007/05/11
- Re: Ncurses/dialog static linking on 64bit problem, Thomas Dickey, 2007/05/11