diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-05-19 09:57:59 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-05-19 09:57:59 +0200 |
| commit | 88ffcf63963e8ca933127f408de5ed3d6b9ebecb (patch) | |
| tree | 530c4c8fe075e9748c09355f9fa6aefb2a6d838b | |
| parent | 4d347f9ff04e11175bc0c25a693782be6ea5e29e (diff) | |
| download | box64-88ffcf63963e8ca933127f408de5ed3d6b9ebecb.tar.gz box64-88ffcf63963e8ca933127f408de5ed3d6b9ebecb.zip | |
Fixed compile options for PI4 profile
| -rwxr-xr-x | CMakeLists.txt | 4 |
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) |