[libcxx-commits] [PATCH] D126017: [libunwind][ci][AIX] Add libunwind to buildbot CI
Xing Xue via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Jun 2 06:04:27 PDT 2022
This revision was automatically updated to reflect the committed changes.
xingxue marked an inline comment as done.
Closed by commit rGdfaee3c9cfa1: [libunwind][ci][AIX] Add libunwind to buildbot CI (authored by xingxue).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D126017/new/
https://reviews.llvm.org/D126017
Files:
libcxx/cmake/caches/AIX.cmake
libcxx/utils/ci/run-buildbot
libunwind/test/configs/ibm-libunwind-shared.cfg.in
Index: libunwind/test/configs/ibm-libunwind-shared.cfg.in
===================================================================
--- /dev/null
+++ libunwind/test/configs/ibm-libunwind-shared.cfg.in
@@ -0,0 +1,25 @@
+# Configuration file for running the libunwind tests on AIX.
+#
+
+lit_config.load_config(config, '@CMAKE_CURRENT_BINARY_DIR@/cmake-bridge.cfg')
+
+config.substitutions.append(('%{flags}', ''))
+config.substitutions.append(('%{compile_flags}',
+ '-nostdinc++ -I %{include} -I %{cxx-include}'
+))
+config.substitutions.append(('%{link_flags}',
+ '-nostdlib++ -L %{lib} -lunwind -ldl -Wl,-bbigtoc'
+))
+config.substitutions.append(('%{exec}',
+ '%{executor} --execdir %T --env LIBPATH=%{lib} -- '
+))
+
+import os, site
+site.addsitedir(os.path.join('@LIBUNWIND_LIBCXX_PATH@', 'utils'))
+import libcxx.test.params, libcxx.test.newconfig, libcxx.test.newconfig
+libcxx.test.newconfig.configure(
+ libcxx.test.params.DEFAULT_PARAMETERS,
+ libcxx.test.features.DEFAULT_FEATURES,
+ config,
+ lit_config
+)
Index: libcxx/utils/ci/run-buildbot
===================================================================
--- libcxx/utils/ci/run-buildbot
+++ libcxx/utils/ci/run-buildbot
@@ -575,10 +575,8 @@
generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/AIX.cmake" \
-DLIBCXX_TEST_CONFIG="ibm-libc++-shared.cfg.in" \
-DLIBCXXABI_TEST_CONFIG="ibm-libc++abi-shared.cfg.in" \
- -DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi"
- # TODO: use check-runtimes once libunwind builds cleanly on AIX.
- ${NINJA} -vC "${BUILD_DIR}" install-cxx install-cxxabi
- ${NINJA} -vC "${BUILD_DIR}" check-cxx check-cxxabi
+ -DLIBUNWIND_TEST_CONFIG="ibm-libunwind-shared.cfg.in"
+ check-runtimes
;;
#################################################################
# Insert vendor-specific internal configurations below.
Index: libcxx/cmake/caches/AIX.cmake
===================================================================
--- libcxx/cmake/caches/AIX.cmake
+++ libcxx/cmake/caches/AIX.cmake
@@ -14,3 +14,6 @@
set(LIBCXXABI_ENABLE_SHARED ON CACHE BOOL "")
set(LIBCXXABI_ENABLE_STATIC OFF CACHE BOOL "")
set(LIBCXX_CXX_ABI libcxxabi CACHE STRING "")
+set(LIBCXXABI_USE_LLVM_UNWINDER ON CACHE BOOL "")
+set(LIBUNWIND_ENABLE_SHARED ON CACHE BOOL "")
+set(LIBUNWIND_ENABLE_STATIC OFF CACHE BOOL "")
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D126017.433726.patch
Type: text/x-patch
Size: 2394 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220602/b54e3e36/attachment.bin>
More information about the libcxx-commits
mailing list