Skip to content

Commit

Permalink
[CMake] Use the correct spelling for armv7 in Fuchsia's toolchain
Browse files Browse the repository at this point in the history
We need to explicitly specify the architecture version.

Differential Revision: https://reviews.llvm.org/D54613

llvm-svn: 347021
  • Loading branch information
petrhosek committed Nov 16, 2018
1 parent 9fbf935 commit 1ee2987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/cmake/caches/Fuchsia-stage2.cmake
Expand Up @@ -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}")
Expand Down

0 comments on commit 1ee2987

Please sign in to comment.