From: Augustin Degomme Date: Sun, 14 May 2017 19:51:07 +0000 (+0200) Subject: try to help netbsd compiling the unit_tmgr test, which seems to have some ABI issues... X-Git-Tag: v3.16~274^2~22 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/1ca39540818d47b2c93100d6b44dfd7a1d5ce3be?hp=744fe4768d577093b57a30beb19425964d24bca7 try to help netbsd compiling the unit_tmgr test, which seems to have some ABI issues stackoverflow.com/questions/30668560/boost-unit-test-link-error-abi-mismatch --- diff --git a/tools/cmake/Tests.cmake b/tools/cmake/Tests.cmake index c432450a3e..273bf7c13e 100644 --- a/tools/cmake/Tests.cmake +++ b/tools/cmake/Tests.cmake @@ -94,8 +94,9 @@ ADD_TEST(testall ${CMAKE_BINARY_DIR}/testall) if(Boost_UNIT_TEST_FRAMEWORK_FOUND) add_executable (unit_tmgr src/surf/trace_mgr_test.cpp) target_link_libraries(unit_tmgr simgrid ${Boost_UNIT_TEST_FRAMEWORK_LIBRARY}) + set(CMAKE_CXX_FLAGS "-D_GLIBCXX_USE_CXX11_ABI=0 ${CMAKE_CXX_FLAGS}") ADD_TEST(unit_tmgr ${CMAKE_BINARY_DIR}/unit_tmgr --build_info=yes) else() set(EXTRA_DIST ${EXTRA_DIST} src/surf/trace_mgr_test.cpp) -endif() \ No newline at end of file +endif()