I have a project that include some asio header files, I have boost_system linked statically already, but ASIO keeps adding -lboost_system to the linker so the resulting binary depends on the dynamic version of boost_system, I have -DBOOST_ALL_NO_LIB (in "other link flags") to prevent autolinking but it seems to be ignored.
Im using XCode 4 with clang and c++11
there any other way to prevent autolinking?