
Hi, is there any way to override the compiler autolink uses to create the import library names? This really makes sense when compilers/libraries are binary compatible (e.g. Intel+VC) and could save 100 MBs of disk space! Stefan

is there any way to override the compiler autolink uses to create the import library names? This really makes sense when compilers/libraries are binary compatible (e.g. Intel+VC) and could save 100 MBs of disk space!
You can turn it off with BOOST_ALL_NO_LIB, but there's no way to override the compiler name part (maybe there should be though). John.

Stefan Slapeta wrote:
John Maddock wrote:
You can turn it off with BOOST_ALL_NO_LIB, but there's no way to override the compiler name part (maybe there should be though).
What do you think ... IMO it's enough to place a #ifndef BOOST_LIB_TOOLSET before the code that configures the lib name in auto_link.hpp and give the user the ability to set it manually, no? Stefan
participants (2)
-
John Maddock
-
Stefan Slapeta