1
0
mirror of https://github.com/RPCS3/soundtouch.git synced 2024-09-18 23:42:27 +02:00

Do not add -mfpu=neon flag under aarch64

This commit is contained in:
fundawang 2023-04-23 22:26:37 +00:00
parent 8726394399
commit 55bd933dba

View File

@ -68,7 +68,9 @@ endif()
option(NEON "Use ARM Neon SIMD instructions if in ARM CPU" ON)
if(${NEON} AND ${NEON_CPU})
target_compile_definitions(SoundTouch PRIVATE SOUNDTOUCH_USE_NEON)
target_compile_options(SoundTouch PRIVATE -mfpu=neon)
if(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "^aarch64.*$")
target_compile_options(SoundTouch PRIVATE -mfpu=neon)
endif()
endif()
find_package(OpenMP)