mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2026-01-01 03:12:23 +08:00
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.
This commit is contained in:
parent
816cb5e8e2
commit
c580726020
@ -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++)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user