From c580726020233c15d23dbce70a963ad4e1cae720 Mon Sep 17 00:00:00 2001 From: Bernd Amend Date: Sat, 22 May 2021 14:54:23 +0200 Subject: [PATCH] Change the default value of USE_LIBCXX to FALSE By default clang is already using the system standard library. Therefore it is unexpected that chaiscript always uses libcxx if clang is used. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3218cd23..cbd431d8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -189,7 +189,7 @@ else() endif() if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") - option(USE_LIBCXX "Use clang's libcxx" TRUE) + option(USE_LIBCXX "Use clang's libcxx" FALSE) if(USE_LIBCXX) add_definitions(-stdlib=libc++)