From 4f27004dd55c3b7327045f713a2a60e9b98eccc5 Mon Sep 17 00:00:00 2001 From: emvivre Date: Tue, 22 Sep 2015 16:57:18 +0200 Subject: [PATCH] remove invalid parameter '-stdlib=libc++' in CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a1fb47e8f..16e9f960e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ if(MSVC) add_definitions(-D_SCL_SECURE_NO_WARNINGS) else(MSVC) set(CMAKE_CXX_FLAGS - "-std=c++11 -stdlib=libc++" + "-std=c++11" ) endif(MSVC)