1.I have checked the Jamroot.jam file, it seems we can specify a build-type of minimal or complete. e.g.
bjam --toolset=msvc-9.0 --with-regex --build-type=complete stage
But it can not meet my requirement. For example, I just want to build
debug release <threading>multi <link>static.
How could I specify it?
2.it seems we can specify link/runtime-link options, what's the difference between link static and runtime-link static?
Does libboost_regex-vc90-mt-gd-1_35.lib means it's a multi-threading debug version of static link edition of regex library?
But how about libboost_date_time-vc90-mt-sgd-1_35.lib? What does the -sgd mean?
What's the naming convention?