[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

llvm-svn: 347021
This commit is contained in:
Petr Hosek 2018-11-16 04:09:47 +00:00
parent 9fbf93508c
commit 1ee2987abc
1 changed files with 1 additions and 1 deletions

View File

@ -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}")