[compiler-rt] [compiler-rt] Propagate sysroot from CMake to msan tests (PR #132299)

via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 20 16:03:47 PDT 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-compiler-rt-sanitizer

Author: Haowei (zeroomega)

<details>
<summary>Changes</summary>

Some msan tests requires rpc/xdr.h, which is no longer available in some newer glibc. In build systems with hermetic sysroot set through CMake, this issue can be solved by setting the sysroot to CMAKE_SYSROOT for these tests. This patch implements it.

---
Full diff: https://github.com/llvm/llvm-project/pull/132299.diff


2 Files Affected:

- (modified) compiler-rt/test/msan/lit.cfg.py (+4) 
- (modified) compiler-rt/test/msan/lit.site.cfg.py.in (+1) 


``````````diff
diff --git a/compiler-rt/test/msan/lit.cfg.py b/compiler-rt/test/msan/lit.cfg.py
index 361be79e2557e..7282d29340201 100644
--- a/compiler-rt/test/msan/lit.cfg.py
+++ b/compiler-rt/test/msan/lit.cfg.py
@@ -17,6 +17,10 @@
         "-fno-optimize-sibling-calls",
     ]
     + [config.target_cflags]
+    + [
+        "--sysroot",
+        config.cmake_sysroot
+    ] if config.cmake_sysroot and config.host_os == "Linux" else []
     + config.debug_info_flags
 )
 # Some Msan tests leverage backtrace() which requires libexecinfo on FreeBSD.
diff --git a/compiler-rt/test/msan/lit.site.cfg.py.in b/compiler-rt/test/msan/lit.site.cfg.py.in
index 47264d0986946..41231359692ed 100644
--- a/compiler-rt/test/msan/lit.site.cfg.py.in
+++ b/compiler-rt/test/msan/lit.site.cfg.py.in
@@ -6,6 +6,7 @@ config.target_cflags = "@MSAN_TEST_TARGET_CFLAGS@"
 config.target_arch = "@MSAN_TEST_TARGET_ARCH@"
 config.use_lld = @MSAN_TEST_USE_LLD@
 config.use_thinlto = @MSAN_TEST_USE_THINLTO@
+config.cmake_sysroot = "@CMAKE_SYSROOT@"
 
 # Load common config for all compiler-rt lit tests.
 lit_config.load_config(config, "@COMPILER_RT_BINARY_DIR@/test/lit.common.configured")

``````````

</details>


https://github.com/llvm/llvm-project/pull/132299


More information about the llvm-commits mailing list