cmake: Fix rpi4 build on newer gcc.

This was wrong/causing a warning, and now seems to have caused the wrong
code to build for some users (presumably a newer gcc.)
This commit is contained in:
Unknown W. Brackets
2020-05-16 23:53:43 -07:00
parent 5a5af3871f
commit bdeea1568a
+1 -1
View File
@@ -22,7 +22,7 @@ if(NOT PPSSPP_PI_MODEL4)
endif()
if(PPSSPP_PI_MODEL4)
set(ARCH_FLAGS "-march=armv7-a -mcpu=cortex-a72 -mtune=cortex-a72 -mfpu=neon-vfpv4 -mfloat-abi=hard")
set(ARCH_FLAGS "-march=armv7-a -mtune=cortex-a72 -mfpu=neon-vfpv4 -mfloat-abi=hard")
else()
set(ARCH_FLAGS "-mcpu=cortex-a7 -mfpu=neon -mfloat-abi=hard")
endif()