summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorPetr Hosek <phosek@chromium.org>2018-11-16 04:09:47 +0000
committerPetr Hosek <phosek@chromium.org>2018-11-16 04:09:47 +0000
commitc5ae3d10742f6fbf03d2cea84c528e8547d9bfe3 (patch)
tree9954db010ea194fa877a743e0b2d4df8087f580a /cmake
parentfbbf9d4aee2f9dae4253180be19ceb7a271af65f (diff)
downloadclang-c5ae3d10742f6fbf03d2cea84c528e8547d9bfe3.tar.gz
[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
Diffstat (limited to 'cmake')
-rw-r--r--cmake/caches/Fuchsia-stage2.cmake2
1 files changed, 1 insertions, 1 deletions
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}")