[compiler-rt] f5e48a2 - [CMake][compiler-rt] Include the missing variables

Petr Hosek via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 6 17:41:34 PDT 2022


Author: Petr Hosek
Date: 2022-04-06T17:40:29-07:00
New Revision: f5e48a2ad3a96118dc95cdf2fd45337612a3b132

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

LOG: [CMake][compiler-rt] Include the missing variables

This includes the missing variables as pointed out in
https://reviews.llvm.org/rGb0e2ffe151c3

Added: 
    

Modified: 
    compiler-rt/cmake/crt-config-ix.cmake

Removed: 
    


################################################################################
diff  --git a/compiler-rt/cmake/crt-config-ix.cmake b/compiler-rt/cmake/crt-config-ix.cmake
index e8f50949a5029..399a22eaa4fad 100644
--- a/compiler-rt/cmake/crt-config-ix.cmake
+++ b/compiler-rt/cmake/crt-config-ix.cmake
@@ -20,8 +20,11 @@ endif()
 
 set(ARM64 aarch64)
 set(ARM32 arm armhf armv6m armv7m armv7em armv7 armv7s armv7k)
+set(HEXAGON hexagon)
 set(X86 i386)
 set(X86_64 x86_64)
+set(PPC32 powerpc powerpcspe)
+set(PPC64 powerpc64 powerpc64le)
 set(RISCV32 riscv32)
 set(RISCV64 riscv64)
 set(VE ve)


        


More information about the llvm-commits mailing list