diff options
author | Lukas Rusak <lorusak@gmail.com> | 2019-06-28 08:48:14 -0700 |
---|---|---|
committer | Lukas Rusak <lorusak@gmail.com> | 2020-09-08 12:46:18 -0700 |
commit | 605b3b05dc8aee32a1238653a5f02ce5be25719a (patch) | |
tree | 86ee8e0ac3737788e8dc2841d9679538f9a5bc12 /cmake/scripts/linux | |
parent | 062ab1cf9d99d1beed2e558a440d3ee372a7df24 (diff) |
RPi: remove platform
Diffstat (limited to 'cmake/scripts/linux')
-rw-r--r-- | cmake/scripts/linux/ArchSetup.cmake | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/cmake/scripts/linux/ArchSetup.cmake b/cmake/scripts/linux/ArchSetup.cmake index 04fc6e3ffd..b68efe3bd0 100644 --- a/cmake/scripts/linux/ArchSetup.cmake +++ b/cmake/scripts/linux/ArchSetup.cmake @@ -37,16 +37,6 @@ else() endif() endif() -# temp until further cleanup is done -# add Raspberry Pi 2 and 3 specific flags -if(CORE_PLATFORM_NAME_LC STREQUAL rbpi) - if(CPU MATCHES "cortex-a7") - set(NEON_FLAGS "-fPIC -mcpu=cortex-a7 -mfloat-abi=hard -mfpu=neon-vfpv4 -mvectorize-with-neon-quad") - elseif(CPU MATCHES "cortex-a53") - set(NEON_FLAGS "-fPIC -mcpu=cortex-a53 -mfloat-abi=hard -mfpu=neon-fp-armv8 -mvectorize-with-neon-quad") - endif() -endif() - if((CMAKE_BUILD_TYPE STREQUAL Release OR CMAKE_BUILD_TYPE STREQUAL MinSizeRel) AND CMAKE_COMPILER_IS_GNUCXX) # Make sure we strip binaries in Release build |