
Dear all, Does anyone know what Boost.Build toolset is used to build these tests? I need to force an ABI version and I was assuming it was the 'darwin' toolset. However <darwin><*><cxxflags>"-fabi-version=0" is not triggering. Thanks, Michael -- ___________________________________ Michael Stevens Systems Engineering Navigation Systems, Estimation and Bayesian Filtering http://bayesclasses.sf.net ___________________________________

Michael Stevens wrote:
Dear all,
Does anyone know what Boost.Build toolset is used to build these tests?
I need to force an ABI version and I was assuming it was the 'darwin' toolset. However <darwin><*><cxxflags>"-fabi-version=0" is not triggering.
It looks like it's using gcc-tools as the base. Which means you'll have to do something like this: [ cond [ is-subset Darwin : $(JAMUNAME) ] : <gcc><*><cxxflags>"-fabi-version=0" ] HTH. --grafik

Michael Stevens writes:
Dear all,
Does anyone know what Boost.Build toolset is used to build these tests?
It's 'darwin-tools.jam': GCC_ROOT_DIRECTORY ?= $(GCC_3.3_ROOT_DIRECTORY) ; extends-toolset darwin ;
I need to force an ABI version and I was assuming it was the 'darwin' toolset.
It is!
However <darwin><*><cxxflags>"-fabi-version=0" is not triggering.
Hmm, I'm not sure what's up here. I'd ask folks on the bjam list if there is anything wrong with the above. -- Aleksey Gurtovoy MetaCommunications Engineering
participants (3)
-
Aleksey Gurtovoy
-
Michael Stevens
-
Rene Rivera