forked from OSchip/llvm-project
[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:
parent
9fbf93508c
commit
1ee2987abc
|
@ -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}")
|
||||
|
|
Loading…
Reference in New Issue