diff options
author | Cristiano A. Silva <hudokkow@gmail.com> | 2017-01-09 10:08:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-09 10:08:38 +0000 |
commit | 8edbda98e46f876d8285e78ffe55a817629536c6 (patch) | |
tree | 6a034e368b1da13823c60f8d475db00da898ffec | |
parent | 6a2db9146c9ddfb4c701d225e740e119a6b53a55 (diff) | |
parent | cea5ceaa1c15af272ca212dd6da7c2102f24a1f3 (diff) |
Merge pull request #11344 from nsenica/rpi_arch_fix_backport
[backport] [cmake] Fixes rpi ARCH
-rw-r--r-- | project/cmake/scripts/rbpi/ArchSetup.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/project/cmake/scripts/rbpi/ArchSetup.cmake b/project/cmake/scripts/rbpi/ArchSetup.cmake index d955dd5363..b083e235c0 100644 --- a/project/cmake/scripts/rbpi/ArchSetup.cmake +++ b/project/cmake/scripts/rbpi/ArchSetup.cmake @@ -11,10 +11,10 @@ if(WITH_ARCH) set(ARCH ${WITH_ARCH}) else() if(CPU STREQUAL arm1176jzf-s) - set(ARCH arm-linux-gnueabihf) + set(ARCH arm) set(NEON False) elseif(CPU MATCHES "cortex-a7" OR CPU MATCHES "cortex-a53") - set(ARCH arm-linux-gnueabihf) + set(ARCH arm) set(NEON True) else() message(SEND_ERROR "Unknown CPU: ${CPU}") |