[PATCH] D22861: Remove LLVM_ENABLE_LIBCXXABI
Jonas Hahnfeld via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 4 03:32:31 PDT 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL277714: Remove LLVM_ENABLE_LIBCXXABI (authored by Hahnfeld).
Changed prior to commit:
https://reviews.llvm.org/D22861?vs=65729&id=66784#toc
Repository:
rL LLVM
https://reviews.llvm.org/D22861
Files:
llvm/trunk/CMakeLists.txt
llvm/trunk/cmake/modules/HandleLLVMStdlib.cmake
Index: llvm/trunk/cmake/modules/HandleLLVMStdlib.cmake
===================================================================
--- llvm/trunk/cmake/modules/HandleLLVMStdlib.cmake
+++ llvm/trunk/cmake/modules/HandleLLVMStdlib.cmake
@@ -20,11 +20,6 @@
append("-stdlib=libc++"
CMAKE_CXX_FLAGS CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS)
- if(LLVM_ENABLE_LIBCXXABI)
- append("-lc++abi"
- CMAKE_EXE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS
- CMAKE_MODULE_LINKER_FLAGS)
- endif()
else()
message(WARNING "Can't specify libc++ with '-stdlib='")
endif()
Index: llvm/trunk/CMakeLists.txt
===================================================================
--- llvm/trunk/CMakeLists.txt
+++ llvm/trunk/CMakeLists.txt
@@ -336,7 +336,6 @@
endif()
option(LLVM_ENABLE_CXX1Y "Compile with C++1y enabled." OFF)
option(LLVM_ENABLE_LIBCXX "Use libc++ if available." OFF)
-option(LLVM_ENABLE_LIBCXXABI "Use libc++abi when using libc++." OFF)
option(LLVM_ENABLE_LLD "Use lld as C and C++ linker." OFF)
option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D22861.66784.patch
Type: text/x-patch
Size: 1251 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160804/823c961a/attachment.bin>
More information about the llvm-commits
mailing list