[libcxx-commits] [libcxx] r356386 - [libc++][NFC] Promote CMake comment to an actual option description

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Mon Mar 18 11:18:01 PDT 2019


Author: ldionne
Date: Mon Mar 18 11:18:01 2019
New Revision: 356386

URL: http://llvm.org/viewvc/llvm-project?rev=356386&view=rev
Log:
[libc++][NFC] Promote CMake comment to an actual option description

Modified:
    libcxx/trunk/CMakeLists.txt

Modified: libcxx/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/CMakeLists.txt?rev=356386&r1=356385&r2=356386&view=diff
==============================================================================
--- libcxx/trunk/CMakeLists.txt (original)
+++ libcxx/trunk/CMakeLists.txt Mon Mar 18 11:18:01 2019
@@ -172,9 +172,9 @@ else()
   set(LIBCXX_CXX_ABI_LIBNAME "${LIBCXX_CXX_ABI}")
 endif()
 
-# Use a static copy of the ABI library when linking libc++. This option
-# cannot be used with LIBCXX_ENABLE_ABI_LINKER_SCRIPT.
-option(LIBCXX_ENABLE_STATIC_ABI_LIBRARY "Statically link the ABI library" OFF)
+option(LIBCXX_ENABLE_STATIC_ABI_LIBRARY
+  "Use a static copy of the ABI library when linking libc++.
+   This option cannot be used with LIBCXX_ENABLE_ABI_LINKER_SCRIPT." OFF)
 
 cmake_dependent_option(LIBCXX_STATICALLY_LINK_ABI_IN_STATIC_LIBRARY
   "Statically link the ABI library to static library" ON




More information about the libcxx-commits mailing list