[compiler-rt] c172726 - [compiler-rt] Add hexagon support to CFI

Brian Cain via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 17 19:59:51 PDT 2021


Author: Brian Cain
Date: 2021-08-17T19:59:24-07:00
New Revision: c172726f6f1476ead975e6e731fb95c4d1393e42

URL: https://github.com/llvm/llvm-project/commit/c172726f6f1476ead975e6e731fb95c4d1393e42
DIFF: https://github.com/llvm/llvm-project/commit/c172726f6f1476ead975e6e731fb95c4d1393e42.diff

LOG: [compiler-rt] Add hexagon support to CFI

Adds build support for hexagon linux to cfi.

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 8fbd907699fa..c71a7cee6385 100644
--- a/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
+++ b/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake
@@ -63,7 +63,8 @@ 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} ${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_CFI_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${MIPS64}
+    ${HEXAGON})
 set(ALL_SCUDO_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${MIPS32}
     ${MIPS64} ${PPC64} ${HEXAGON})
 set(ALL_SCUDO_STANDALONE_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64}


        


More information about the llvm-commits mailing list