c++ - boost compilation flag iw what does it mean? -
i need file boost_filesystem-iw-mt-gd-1_52.lib
know mt == multithreading
,
gd == debug symbols
flag "iw" means?
where can find documentation this. tried boost site
http://www.boost.org/boost-build2/doc/html/bbv2/overview/invocation.html
but still nothing explains this. there additional info this?
tl;dr version:
you need filesystem
library compiled using intel c++ compiler (icc).
long version:
boost library naming convention places toolset , version used compile library after name of library itself.
this means filesystem
lib you're looking compiled using iw
toolset. figure out is, grepped iw
in auto_link.hpp
source (auto_link
file auto-generates library names platforms support auto-linking).
Comments
Post a Comment