On 5/13/2013 16:36, Keith Christian wrote:
gcc -o libtclsqlite3.so -shared tea/generic/tclsqlite3.c -lpthread -ldl
-ltcl

Don't build it that way. It appears that the TEA build system sees Cygwin and thinks "oh, this is Windows, so it must be VC++ or MinGW". That prevents it from linking to the Cygwin SQLite library.

This seems to do the right thing:

    ... at the top-level of the source tree:
    $ cd tea
    $ ./configure --with-system-sqlite
    $ make

Do a "make clean" before the last step if you have any *.o files laying around. The shipped build system isn't smart enough to rebuild everything when you reconfigure with a very different set of compile and link options.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to