Hi,

I've got a static library (--disable-shared) named libcdk-db-c.la and a dynamic library
(--enable-shared --disable-static) named libcdk-db-pg.la and the shared library uses
function of the static library. I'm working on cygwin platform. Here the link command
of those two libraries:


/bin/bash /cygdrive/d/Workspace/CDK-plug-in/dev/postgreSQL/libtool
        --mode=link gcc
                -L/cygdrive/d/Workspace/CDK/dev/cdk-db/target/lib
                -no-undefined
                -lpq
                -lcdk-db-c
                -o target/lib/libcdk-db-pg.la
                target/postgreSQL.lo
                -rpath /oned/lib

*** Warning: This system can not link to static lib archive /cygdrive/d/Workspace/CDK/dev/cdk-db/target/lib/libcdk-db-c.la.
*** I have the capability to make that library automatically link in when
*** you link to this library. But I can only do this if you have a
*** shared version of the library, which you do not appear to have.
rm -fr target/lib/.libs/libcdk-db-pg.dll.a
gcc -shared target/.libs/postgreSQL.o -L/cygdrive/d/Workspace/CDK/dev/cdk-main/target/lib/.libs -L/cygdrive/d/Workspace/CDK/dev/cdk-log/target/lib/.libs -L/cygdrive/d/Workspace/CDK/dev/cdk-lib/target/lib/.libs -L/cygdrive/d/Workspace/CDK/dev/cdk-lib/target/lib -L/cygdrive/d/Workspace/CDK/dev/cdk-log/target/lib -L/cygdrive/d/Workspace/CDK/dev/cdk-main/target/lib -L/usr/lib -L/cygdrive/d/Workspace/CDK/dev/cdk-db/target/lib -lpq -o target/lib/.libs/cygcdk-db-pg-0.dll -Wl,--image-base=0x10000000 -Wl,--out-implib,target/lib/.libs/libcdk-db-pg.dll.a
Creating library file: target/lib/.libs/libcdk-db-pg.dll.a
target/.libs/postgreSQL.o(.text+0x12f): In function `postgreSQL_connect':



and then a lot of unresolved symbol (which are in /cygdrive/d/Workspace/CDK/dev/cdk-db/target/lib/libcdk-db-c.la)



Does it possible to link them or not (on cygwin platform) ? if yes how to do it ?

Thank you very much
Laurent Marzullo



_______________________________________________
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool

Reply via email to