You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In CMakeLists.txt
the following code checks for 32 bit arm systems.
if (UNIX AND NOT APPLE)
if (CMAKE_SYSTEM_PROCESSOR MATCHES "arm|ARM")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mfpu=neon")
else()
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -msse4.1")
endif()
endif()
A fix would be to add another line such as
else if (CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64")
endif()
It shouldn't require any additional flags since neon is mandatory for aarch64, and both the -mfpu=neon and -msse4.1 flags cause cmake to fail.
The text was updated successfully, but these errors were encountered:
In CMakeLists.txt
the following code checks for 32 bit arm systems.
if (UNIX AND NOT APPLE)
if (CMAKE_SYSTEM_PROCESSOR MATCHES "arm|ARM")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mfpu=neon")
else()
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -msse4.1")
endif()
endif()
A fix would be to add another line such as
else if (CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64")
endif()
It shouldn't require any additional flags since neon is mandatory for aarch64, and both the -mfpu=neon and -msse4.1 flags cause cmake to fail.
The text was updated successfully, but these errors were encountered: