From: Petr Hosek Date: Fri, 16 Nov 2018 04:09:47 +0000 (+0000) Subject: [CMake] Use the correct spelling for armv7 in Fuchsia's toolchain X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c5ae3d10742f6fbf03d2cea84c528e8547d9bfe3;p=clang [CMake] Use the correct spelling for armv7 in Fuchsia's toolchain We need to explicitly specify the architecture version. Differential Revision: https://reviews.llvm.org/D54613 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@347021 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/cmake/caches/Fuchsia-stage2.cmake b/cmake/caches/Fuchsia-stage2.cmake index 8b91f7e85d..aa1fc5784c 100644 --- a/cmake/caches/Fuchsia-stage2.cmake +++ b/cmake/caches/Fuchsia-stage2.cmake @@ -33,7 +33,7 @@ if(APPLE) list(APPEND RUNTIME_TARGETS "default") endif() -foreach(target i386-linux-gnu;x86_64-linux-gnu;arm-linux-gnueabi;aarch64-linux-gnu) +foreach(target aarch64-linux-gnu;armv7-linux-gnueabihf;i386-linux-gnu;x86_64-linux-gnu) if(LINUX_${target}_SYSROOT) # Set the per-target builtins options. list(APPEND BUILTIN_TARGETS "${target}")