aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorNuno Senica <nsenica@gmail.com>2017-01-02 16:25:10 +0000
committerNuno Senica <nsenica@gmail.com>2017-01-02 16:25:10 +0000
commit76b9836acfe42e762fd80547688622bded80877f (patch)
tree56035308b44eb87f82f32b81ae94c77b1cbc9ea0 /cmake
parent916230f23298cdfd45b2f1a0f41b0da9d3dc53c6 (diff)
[cmake] Fixes rpi ARCH
Diffstat (limited to 'cmake')
-rw-r--r--cmake/scripts/rbpi/ArchSetup.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/scripts/rbpi/ArchSetup.cmake b/cmake/scripts/rbpi/ArchSetup.cmake
index d955dd5363..b083e235c0 100644
--- a/cmake/scripts/rbpi/ArchSetup.cmake
+++ b/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}")