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

via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 28 15:52:44 PDT 2025


================
@@ -17,7 +17,9 @@
         "-fno-optimize-sibling-calls",
     ]
     + [config.target_cflags]
-    + config.debug_info_flags
+    + ["--sysroot", config.cmake_sysroot]
+    if config.cmake_sysroot and config.host_os == "Linux"
----------------
zeroomega wrote:

I tried but ran into some further issues as some rtsan unit tests are not compatible with older glibc as `memfd_create` was not defined in glibc 2.19, it still can be invoked through syscall wrappers but that probably needs a separate patch. Therefore, I current limit the change to msan on Linux only to avoid other unwanted breakages.



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


More information about the llvm-commits mailing list