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

Petr Hosek via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 31 22:48:21 PDT 2025


================
@@ -63,7 +63,11 @@ set(MSAN_UNITTEST_LINK_FLAGS
   # inputs.
 )
 
-append_list_if(COMPILER_RT_HAS_LIBDL -ldl MSAN_UNITTEST_LINK_FLAGS)
+if (LINUX)
+  append_list_if(CMAKE_SYSROOT "--sysroot=${CMAKE_SYSROOT}" MSAN_UNITTEST_LINK_FLAGS)
----------------
petrhosek wrote:

This needs to be included in `MSAN_UNITTEST_COMMON_CFLAGS` as well.

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


More information about the llvm-commits mailing list