[compiler-rt] 217191b - [sanitizer] Add hexagon support to ubsan
Brian Cain via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 17 19:59:47 PDT 2021
Author: Brian Cain
Date: 2021-08-17T19:59:24-07:00
New Revision: 217191b70a6b31560505e551b40dcdf38d86097d
URL: https://github.com/llvm/llvm-project/commit/217191b70a6b31560505e551b40dcdf38d86097d
DIFF: https://github.com/llvm/llvm-project/commit/217191b70a6b31560505e551b40dcdf38d86097d.diff
LOG: [sanitizer] Add hexagon support to ubsan
Adds build support for hexagon linux to ubsan.
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 5eddec9ef819..50a16882c1c7 100644
--- a/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
+++ b/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
@@ -60,7 +60,7 @@ set(ALL_PROFILE_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${PPC32} ${PPC
${MIPS32} ${MIPS64} ${S390X} ${SPARC} ${SPARCV9})
set(ALL_TSAN_SUPPORTED_ARCH ${X86_64} ${MIPS64} ${ARM64} ${PPC64} ${S390X})
set(ALL_UBSAN_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${RISCV64}
- ${MIPS32} ${MIPS64} ${PPC64} ${S390X} ${SPARC} ${SPARCV9})
+ ${MIPS32} ${MIPS64} ${PPC64} ${S390X} ${SPARC} ${SPARCV9} ${HEXAGON})
set(ALL_SAFESTACK_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM64} ${MIPS32} ${MIPS64})
set(ALL_CFI_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${MIPS64})
set(ALL_SCUDO_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${MIPS32} ${MIPS64} ${PPC64})
More information about the llvm-commits
mailing list