From 3569c3c86d520bd04ea806f84c9cb5aad0615fdf Mon Sep 17 00:00:00 2001 From: "zhanyong.wan" Date: Fri, 26 Mar 2010 05:35:42 +0000 Subject: Fixes compatibility with Visual Age versions lower than 9.0 (by Hady Zalek); updates the release notes. --- CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index e8d18bd0..4c80bdef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -88,7 +88,10 @@ elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "SunPro") elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "VisualAge") set(cxx_exception_flags "-qeh") set(cxx_no_exception_flags "-qnoeh") - set(cxx_no_rtti_flags "-qnortti") + # Until version 9.0, Visual Age doesn't define a macro to indicate + # whether RTTI is enabled. Therefore we define GTEST_HAS_RTTI + # explicitly. + set(cxx_no_rtti_flags "-qnortti -DGTEST_HAS_RTTI=0") endif() if (CMAKE_USE_PTHREADS_INIT) # The pthreads library is available. -- cgit v1.2.3