---
The fact that there's a Highway to Hell but only a Stairway to Heaven says a lot about anticipated traffic volume.
_______________________________________________
sqlite-dev mailing list
sqlit...@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-dev
Hi Edward,
the problem is basically simple to be explained:
> cannot find -ldl
note: libdl is the dynamic linking library adopted by Linux
and Unix-like systems.
it does not exist on Windows platforms because Windows has
its own System API for loading dynamic libraries, and they
are completely different from libdl.
so, not too much surprisingly, any attempt to link -ldl
will always fail on Windows.
Msys2 is specifically intended for supporting gcc on Windows,
it fully supports ./configure, make and so on, and it will make
any possible effort for respecting all the platform-specific
requirements and idiosyncrasies.
Hint: always use Msys2 for your Win builds, and your life
will be simpler and happier ;-)
bye Sandro