about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-05-19 09:57:59 +0200
committerptitSeb <sebastien.chev@gmail.com>2021-05-19 09:57:59 +0200
commit88ffcf63963e8ca933127f408de5ed3d6b9ebecb (patch)
tree530c4c8fe075e9748c09355f9fa6aefb2a6d838b
parent4d347f9ff04e11175bc0c25a693782be6ea5e29e (diff)
downloadbox64-88ffcf63963e8ca933127f408de5ed3d6b9ebecb.tar.gz
box64-88ffcf63963e8ca933127f408de5ed3d6b9ebecb.zip
Fixed compile options for PI4 profile
-rwxr-xr-xCMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index bdb4d234..033422c3 100755
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -48,8 +48,8 @@ endif()
 if(RPI4ARM64)
     add_definitions(-DRPI)
     add_definitions(-DRPI4ARM64)
-    add_definitions(-pipe -march=armv8-a+crc -mtune=cortex-a72 -mfpu=neon-fp-armv8)
-    set(CMAKE_ASM_FLAGS  "-pipe -march=armv8-a+crc -mtune=cortex-a72 -mfpu=neon-fp-armv8")
+    add_definitions(-pipe -march=armv8-a+crc -mtune=cortex-a72)
+    set(CMAKE_ASM_FLAGS  "-pipe -march=armv8-a+crc -mtune=cortex-a72")
 endif()
 
 if(RK3326)