Skip to content

Commit

Permalink
[libc++] Do not enable assertions in the dylib in the Apple cache
Browse files Browse the repository at this point in the history
It turns out that all this time, we've actually been building without
assertions enabled in the dylib. This commit updates the Apple CMake
cache to make it consistent with reality.
  • Loading branch information
ldionne committed Apr 21, 2020
1 parent a8086ba commit d632587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcxx/cmake/caches/Apple.cmake
Expand Up @@ -2,7 +2,7 @@ set(CMAKE_BUILD_TYPE MinSizeRel CACHE STRING "")
set(CMAKE_POSITION_INDEPENDENT_CODE OFF CACHE BOOL "")

set(LIBCXX_USE_COMPILER_RT ON CACHE BOOL "")
set(LIBCXX_ENABLE_ASSERTIONS ON CACHE BOOL "")
set(LIBCXX_ENABLE_ASSERTIONS OFF CACHE BOOL "")

set(LIBCXX_ABI_VERSION "1" CACHE STRING "")

Expand Down

0 comments on commit d632587

Please sign in to comment.