[PATCH] D58250: [AIX][CMake] Changes for building on AIX with XL and GCC
Chandler Carruth via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 20 02:18:07 PST 2019
chandlerc added inline comments.
================
Comment at: llvm/include/llvm/Config/abi-breaking.h.cmake:37-41
+#if !(defined(_AIX) && defined(__GNU__))
+#define LLVM_HIDDEN_VISIBILITY __attribute__ ((visibility("hidden")))
+#else
+#define LLVM_HIDDEN_VISIBILITY
+#endif
----------------
Is this correct though? I would expect non-hidden visibility checks to break things.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D58250/new/
https://reviews.llvm.org/D58250
More information about the llvm-commits
mailing list