Skip to content
Snippets Groups Projects
Commit 303f385c authored by Christoph Alt's avatar Christoph Alt
Browse files

removed old gcc workaround

parent 429fbc67
No related merge requests found
......@@ -61,16 +61,6 @@ if ( WALBERLA_BUILD_WITH_FASTMATH )
add_flag( CMAKE_CXX_FLAGS "-ffast-math")
endif()
#GCC 5+ ABI selection
if( NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0.0 )
option ( WALBERLA_USE_CPP11_ABI "On GCC 5+ use the C++11 ABI" ON )
if( WALBERLA_USE_CPP11_ABI )
add_flag( CMAKE_CXX_FLAGS "-D_GLIBCXX_USE_CXX11_ABI=1" )
else()
add_flag( CMAKE_CXX_FLAGS "-D_GLIBCXX_USE_CXX11_ABI=0" )
endif()
endif()
if (NOT WIN32)
find_package ( Backtrace QUIET )
if ( Backtrace_FOUND )
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment