diff options
author | Louis Dionne <ldionne@apple.com> | 2019-03-18 18:18:01 +0000 |
---|---|---|
committer | Louis Dionne <ldionne@apple.com> | 2019-03-18 18:18:01 +0000 |
commit | 0c962cb5c84a11360f335ead3ee416d253628446 (patch) | |
tree | beaa82dfc8280b9187ed29c1abe0696c471d390d | |
parent | 3c2aadbe67034679a5e7dcad0bab123e761e03c1 (diff) | |
download | bcm5719-llvm-0c962cb5c84a11360f335ead3ee416d253628446.tar.gz bcm5719-llvm-0c962cb5c84a11360f335ead3ee416d253628446.zip |
[libc++][NFC] Promote CMake comment to an actual option description
llvm-svn: 356386
-rw-r--r-- | libcxx/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/CMakeLists.txt b/libcxx/CMakeLists.txt index 5920cfda09c..0c20cc3f17a 100644 --- a/libcxx/CMakeLists.txt +++ b/libcxx/CMakeLists.txt @@ -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 |