[PATCH] D70130: Don't set LLVM_NO_DEAD_STRIP on AIX
David Tenty via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 13 09:05:02 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rG8b2b2c08d994: Don't set LLVM_NO_DEAD_STRIP on AIX (authored by daltenty).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70130/new/
https://reviews.llvm.org/D70130
Files:
llvm/cmake/modules/AddLLVM.cmake
Index: llvm/cmake/modules/AddLLVM.cmake
===================================================================
--- llvm/cmake/modules/AddLLVM.cmake
+++ llvm/cmake/modules/AddLLVM.cmake
@@ -783,7 +783,7 @@
llvm_update_compile_flags(${name})
endif()
- if (ARG_SUPPORT_PLUGINS)
+ if (ARG_SUPPORT_PLUGINS AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "AIX")
set(LLVM_NO_DEAD_STRIP On)
endif()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D70130.229117.patch
Type: text/x-patch
Size: 399 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191113/7c3b6637/attachment.bin>
More information about the llvm-commits
mailing list