[compiler-rt] [hwasan][aarch64] Fix missing DT_AARCH64_BTI_PLT flag (PR #95796)
Florian Mayer via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 21 10:02:39 PDT 2024
================
@@ -15,16 +15,28 @@ set(HWASAN_RTL_SOURCES
hwasan_memintrinsics.cpp
hwasan_poisoning.cpp
hwasan_report.cpp
- hwasan_setjmp_aarch64.S
- hwasan_setjmp_riscv64.S
- hwasan_setjmp_x86_64.S
- hwasan_tag_mismatch_aarch64.S
- hwasan_tag_mismatch_riscv64.S
hwasan_thread.cpp
hwasan_thread_list.cpp
hwasan_type_test.cpp
)
+foreach(arch ${HWASAN_SUPPORTED_ARCH})
----------------
fmayer wrote:
For my education, why do we need to `foreach` over `HWASAN_SUPPORTED_ARCH` (not `ARCHS`)?
https://github.com/llvm/llvm-project/pull/95796
More information about the llvm-commits
mailing list