On 5/21/2015 5:32 PM, Aparna Kumta wrote:
I am looking at my test run for vmd in develop branch. http://www.boost.org/development/tests/develop/developer/vmd.html under SunOS.
My tests are run with cxxflags="-compat=5 -library=stlport4" as configured in user-config.jam
An example of a test, http://www.boost.org/development/tests/develop/developer/output/oracle-sparc...
The test fails as follows:
"CC" -std=c++0x -std=c++11 -compat=5 -library=stlport4 -xO4 -mt -erroff=%none -m32 -KPIC -DBOOST_ALL_NO_LIB=1 -DNDEBUG -I".." -c -o "/export/home/sstrunk-tester/boost_regression/boost_sparc-S2_stlport4/results/boost/bin.v2/libs/vmd/test/test_after_identifier_elem.test/sun-stlport4/release/threading-multi/test_after_identifier_elem.o" "../libs/vmd/test/test_after_identifier_elem.cpp"
CC: -compat=5 can not be used with -std CC: -library=stlport4 cannot be used with -std=c++11
If I compile the test manually without '-std=c++0x -std=c++11', the test compiles OK.
%CC -compat=5 -library=stlport4 -xO4 -mt -erroff=%none -m64 -KPIC -DBOOST_AL0%L_NO_LIB=1 -DNDEBUG -I.. -c -o ./test_after_identifier_elem.o ../libs/vmd/test/test_after_identifier_elem.cpp %
It looks like boost_root/libs/vmd/test/Jamfile.v2 needs to be modified for this compiler. Any ideas on how this can be done?
I have updated the jam file in the 'develop' version. When you try again, after pulling the latest vmd from 'develop', there may still be a problem for SunOS but at least I will be able to tell what is causing it.