[libcxx-commits] [libcxx] 8776672 - [libc++] Fixup a missing occurrence of LIBCXX_ENABLE_DEBUG_MODE

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Fri Oct 9 11:41:20 PDT 2020


Author: Louis Dionne
Date: 2020-10-09T14:40:47-04:00
New Revision: 877667287fa5515d525edfee169b18207b342cd5

URL: https://github.com/llvm/llvm-project/commit/877667287fa5515d525edfee169b18207b342cd5
DIFF: https://github.com/llvm/llvm-project/commit/877667287fa5515d525edfee169b18207b342cd5.diff

LOG: [libc++] Fixup a missing occurrence of LIBCXX_ENABLE_DEBUG_MODE

Added: 
    

Modified: 
    libcxx/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/libcxx/CMakeLists.txt b/libcxx/CMakeLists.txt
index 8599e5d2cc99..ecc8924f2cf9 100644
--- a/libcxx/CMakeLists.txt
+++ b/libcxx/CMakeLists.txt
@@ -94,7 +94,7 @@ option(LIBCXX_ENABLE_FILESYSTEM "Build filesystem as part of the main libc++ lib
     ${ENABLE_FILESYSTEM_DEFAULT})
 option(LIBCXX_INCLUDE_TESTS "Build the libc++ tests." ${LLVM_INCLUDE_TESTS})
 option(LIBCXX_ENABLE_PARALLEL_ALGORITHMS "Enable the parallel algorithms library. This requires the PSTL to be available." OFF)
-option(LIBCXX_ENABLE_DEBUG_MODE
+option(LIBCXX_ENABLE_DEBUG_MODE_SUPPORT
   "Whether to include support for libc++'s debugging mode in the library.
    By default, this is turned on. If you turn it off and try to enable the
    debug mode when compiling a program against libc++, it will fail to link


        


More information about the libcxx-commits mailing list