18 Sep
2008
18 Sep
'08
12:15 p.m.
Hello Florent, To check if a symbol is exported correctly I simply use dumpbin which is a command line tool that comes with msvc. E.g.: dumpbin /exports ..\boost_1_36_0\lib.x86-nt-msvc8\boost_program_options-vc80-mt-gd-1_36.lib | grep program_options::arg The "non dll-interface" warnings are OK, but am I missing something or are you not linking against boost_program_options-*.lib ? I have to say that I currently don't use auto linking maybe you should try adding all libraries manually and turn off the auto linking feature by defining: BOOST_ALL_NO_LIB=1. Regards, Sebastian