Skip to content

Commit

Permalink
- make ARM compiler flags optional, detect based on ${ZDOOM_TARGET_AR…
Browse files Browse the repository at this point in the history
…CH}, do not activate on Apple build systems
  • Loading branch information
madame-rachelle committed Jan 17, 2021
1 parent 26eac56 commit b70c66e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/CMakeLists.txt
Expand Up @@ -319,7 +319,11 @@ if( ZD_CMAKE_COMPILER_IS_GNUCXX_COMPATIBLE )
set( CMAKE_CXX_FLAGS "-Wall -Wextra -Wno-unused -Wno-unused-parameter -Wno-missing-field-initializers -ffp-contract=off ${CMAKE_CXX_FLAGS}" )

# ARM processors (Raspberry Pi, et al) - enable ARM NEON support.
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "arm")
if(${ZDOOM_TARGET_ARCH} MATCHES "arm" AND NOT APPLE)
set (USE_LINUX_ARM 1 CACHE BOOL "Compile for ARM - Linux")
endif ()

if (USE_LINUX_ARM)
set (USE_ARMV8 0 CACHE BOOL "Use ARMv8 instructions - Raspberry Pi 3")
if (USE_ARMV8)
set( CMAKE_CXX_FLAGS "-mcpu=cortex-a53 -mfpu=neon-fp-armv8 -mtune=cortex-a53 -mhard-float -DNO_SSE ${CMAKE_CXX_FLAGS}" )
Expand Down

0 comments on commit b70c66e

Please sign in to comment.