[llvm] 4a6b569 - [gn] try to port b1be21394e9c even more

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 25 06:20:10 PDT 2024


Author: Nico Weber
Date: 2024-10-25T09:19:21-04:00
New Revision: 4a6b56960f445d111adc9aef799acad8c6ca41f0

URL: https://github.com/llvm/llvm-project/commit/4a6b56960f445d111adc9aef799acad8c6ca41f0
DIFF: https://github.com/llvm/llvm-project/commit/4a6b56960f445d111adc9aef799acad8c6ca41f0.diff

LOG: [gn] try to port b1be21394e9c even more

Bots are now failing check-hwasan with

    llvm-lit: .../llvm/utils/lit/lit/llvm/subst.py:133: fatal: Did not find
        hwasan_symbolize in .../out/gn/stage2_unix/bin

This time it's the right fix for sure!

Added: 
    

Modified: 
    llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn

Removed: 
    


################################################################################
diff  --git a/llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn b/llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn
index 520f3b6c01665f..020f3e7d9acd7b 100644
--- a/llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn
+++ b/llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn
@@ -55,7 +55,8 @@ write_cmake_config("lit_common_configured") {
     "COMPILER_RT_ENABLE_INTERNAL_SYMBOLIZER_PYBOOL=False",
     "COMPILER_RT_HAS_NO_DEFAULT_CONFIG_FLAG_PYBOOL=True",
     "COMPILER_RT_INTERCEPT_LIBDISPATCH_PYBOOL=False",
-    "COMPILER_RT_RESOLVED_EXEC_OUTPUT_DIR=" + rebase_path("$root_out_dir/bin"),
+    "COMPILER_RT_RESOLVED_EXEC_OUTPUT_DIR=" +
+        rebase_path("$root_build_dir/bin"),
     "COMPILER_RT_RESOLVED_LIBRARY_OUTPUT_DIR=" +
         rebase_path(crt_current_out_dir),
     "COMPILER_RT_RESOLVED_OUTPUT_DIR=" + rebase_path(crt_current_out_dir),


        


More information about the llvm-commits mailing list