Kirill Makurin wrote: > This makes me once again question libtool's "auto-export" feature on MSVC. > It seems to do more harm than good, but some libraries still may rely on > it to export their symbols.
It is needed because the default behaviour on the non-Windows platforms is that all symbols are exported, and on Cygwin and mingw the same behaviour can be obtained by passing the option -Wl,--export-all-symbols to libtool --mode=link, but the MSVC linker does not support this option. Therefore libtool implements it (by default). Bruno