[compiler-rt] 296d867 - [compiler-rt] Fixes Chromium Apple CI.
Mark de Wever via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 7 12:25:51 PDT 2023
Author: Mark de Wever
Date: 2023-06-07T21:24:05+02:00
New Revision: 296d867287414f4d1e1af4220c1a08c608f92b5e
URL: https://github.com/llvm/llvm-project/commit/296d867287414f4d1e1af4220c1a08c608f92b5e
DIFF: https://github.com/llvm/llvm-project/commit/296d867287414f4d1e1af4220c1a08c608f92b5e.diff
LOG: [compiler-rt] Fixes Chromium Apple CI.
s/add_asm_sources/set/ at one place it was forgotten in D152102 as
reported by @paulkirth.
Added:
Modified:
compiler-rt/lib/xray/CMakeLists.txt
Removed:
################################################################################
diff --git a/compiler-rt/lib/xray/CMakeLists.txt b/compiler-rt/lib/xray/CMakeLists.txt
index f81b0cb5196af..421489cd816fc 100644
--- a/compiler-rt/lib/xray/CMakeLists.txt
+++ b/compiler-rt/lib/xray/CMakeLists.txt
@@ -171,7 +171,7 @@ if (TARGET cxx-headers OR HAVE_LIBCXX)
endif()
if (APPLE)
- add_asm_sources(XRAY_ASM_SOURCES xray_trampoline_x86_64.S)
+ set(XRAY_ASM_SOURCES xray_trampoline_x86_64.S)
add_weak_symbols("sanitizer_common" WEAK_SYMBOL_LINK_FLAGS)
add_weak_symbols("xray" WEAK_SYMBOL_LINK_FLAGS)
More information about the llvm-commits
mailing list