Question

Jeff Lu jklcom@mindspring.com
Tue Oct 24 09:50:00 GMT 2000


Thanks Chuck,

I want to link with dll but couldn't get it to work

I was able to compile and link with the static lib
# 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

but not with this long command
gcc -static -o /home/jeff/getdata.cgi getdata.c -lgdbm utils.c -DGDBM_STATIC


-----Original Message-----
From: Charles S. Wilson [ mailto:cwilson@ece.gatech.edu ]
Sent: Tuesday, October 24, 2000 12:26 PM
To: Jeff Lu
Cc: cygwin@sourceware.cygnus.com
Subject: Re: Question




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

but not with this long command
gcc -static -o /home/jeff/getdata.cgi getdata.c -lgdbm utils.c -DGDBM_STATIC



--Chuck


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com



More information about the Cygwin mailing list