Mail Archives: cygwin/2000/10/24/12:28:59
Jeff Lu wrote:
>
> I compiled it with CFLAGS=-DGDBM_STATIC such as this
> gcc -o /home/jeff/getdata.cgi getdata.c -lgdbm utils.c -DGDBM_STATIC
>
> This takes care of the rename problem but am still getting dbm_open,
> dbm_fetch etc. as undefined reference
>
> I've even tried to explicitly link it to /usr/lib/libgdbm.a but that didn't
> help
>
Okay, so it appears that you want to link statically and not use the
dll, right? You can do this because the gdbm package provides *both* a
static lib *AND* a dll+import library.
If you want to link statically, then you need to add "-static" to your
link command. Now, since you are going straight from .c files to an
executable all in one step, your compile command and your link command
are the same. So, do this:
gcc -static -o /home/jeff/getdata.cgi getdata.c -lgdbm utils.c
-DGDBM_STATIC
You could also do this:
# compile
gcc -o getdata.o -c getdata.c -DGDBM_STATIC
gcc -o utils.o -c utils.c -DGDBM_STATIC
#link
gcc -static -o /home/jeff/getdata.cgi getdata.o utils.o -lgdbm
--Chuck
--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com
- Raw text -