[compiler-rt] 97f370a - [safestack] Enable loongarch64
Weining Lu via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 9 19:49:11 PST 2022
Author: Youling Tang
Date: 2022-12-10T11:48:52+08:00
New Revision: 97f370a0a3dc2bb7bde66de11e6884ce4bebc281
URL: https://github.com/llvm/llvm-project/commit/97f370a0a3dc2bb7bde66de11e6884ce4bebc281
DIFF: https://github.com/llvm/llvm-project/commit/97f370a0a3dc2bb7bde66de11e6884ce4bebc281.diff
LOG: [safestack] Enable loongarch64
Enable safestack on loongarch64.
Some test cases will fail on loongarch, it will be fixed in glibc,
Links: https://sourceware.org/pipermail/libc-alpha/2022-November/143641.html
Reviewed By: #sanitizers, SixWeining, vitalybuka
Differential Revision: https://reviews.llvm.org/D139494
Added:
Modified:
compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
Removed:
################################################################################
diff --git a/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake b/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
index a9d13eda9d243..5c48a72f2a07d 100644
--- a/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
+++ b/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
@@ -66,7 +66,7 @@ set(ALL_UBSAN_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${RISCV64}
${MIPS32} ${MIPS64} ${PPC64} ${S390X} ${SPARC} ${SPARCV9} ${HEXAGON}
${LOONGARCH64})
set(ALL_SAFESTACK_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM64} ${MIPS32} ${MIPS64}
- ${HEXAGON})
+ ${HEXAGON} ${LOONGARCH64})
set(ALL_CFI_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${MIPS64}
${HEXAGON})
set(ALL_SCUDO_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${MIPS32}
More information about the llvm-commits
mailing list