From a45e4a8d3ecb378ac8f573593aa8659ee5787af6 Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Thu, 30 May 2013 12:58:45 -0700 Subject: [PATCH] Revert "Not using libc++ on FreeBSD." This reverts commit b451674f88e4e83c904379f64b1bb3438413c1e4. --- cpp/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 14208d4a..4f0e2ddb 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -58,8 +58,7 @@ if ( CMAKE_CXX_COMPILER_ID STREQUAL "Clang" ) set( COMPILER_IS_CLANG true ) # The Travis CI build machines don't have libc++ installed - # Also, FreeBSD complains about this too. See issue #349. - if ( NOT DEFINED ENV{TRAVIS} AND NOT SYSTEM_IS_FREEBSD ) + if ( NOT DEFINED ENV{TRAVIS} ) set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++" ) endif() endif()