[compiler-rt] 043926a - [sanitizer] Add hexagon support to asan
Brian Cain via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 17 19:59:45 PDT 2021
Author: Brian Cain
Date: 2021-08-17T19:59:24-07:00
New Revision: 043926a3a0773cdcefbcfbfefc6ba15623301122
URL: https://github.com/llvm/llvm-project/commit/043926a3a0773cdcefbcfbfefc6ba15623301122
DIFF: https://github.com/llvm/llvm-project/commit/043926a3a0773cdcefbcfbfefc6ba15623301122.diff
LOG: [sanitizer] Add hexagon support to asan
Adds build support for hexagon linux to asan.
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 d81baa23a3b6..5eddec9ef819 100644
--- a/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
+++ b/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
@@ -26,7 +26,7 @@ set(ALL_SANITIZER_COMMON_SUPPORTED_ARCH ${X86} ${X86_64} ${PPC64} ${RISCV64}
${ARM32} ${ARM64} ${MIPS32} ${MIPS64} ${S390X} ${SPARC} ${SPARCV9}
${HEXAGON})
set(ALL_ASAN_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${RISCV64}
- ${MIPS32} ${MIPS64} ${PPC64} ${S390X} ${SPARC} ${SPARCV9})
+ ${MIPS32} ${MIPS64} ${PPC64} ${S390X} ${SPARC} ${SPARCV9} ${HEXAGON})
set(ALL_CRT_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${PPC32} ${PPC64} ${RISCV32} ${RISCV64} ${VE})
set(ALL_DFSAN_SUPPORTED_ARCH ${X86_64} ${MIPS64} ${ARM64})
More information about the llvm-commits
mailing list