From 4a6b56960f445d111adc9aef799acad8c6ca41f0 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Fri, 25 Oct 2024 09:19:21 -0400 Subject: [PATCH] [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! --- llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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),