mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-21 19:31:21 +00:00
NX: Downgrade GCC 14 errors to warnings
https://gcc.gnu.org/gcc-14/porting_to.html#warnings-as-errors GCC 14 upgraded certain warnings about non-standard C features to errors. -fpermissive is the documented way to turn them back to warnings and allow the build to succeed. For our long term sanity, it would be better to resolve the warnings properly, but this will do for now.
This commit is contained in:
parent
d1200a3956
commit
64270f1208
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ EXEFS_SRC := exefs_src
|
|||
#---------------------------------------------------------------------------------
|
||||
ARCH := -march=armv8-a -mtune=cortex-a57 -mtp=soft -fPIE -mcpu=cortex-a57+crc+fp+simd
|
||||
|
||||
CFLAGS := -g -Wall -O3 -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections \
|
||||
CFLAGS := -g -fpermissive -Wall -O3 -fno-strict-aliasing -fomit-frame-pointer -ffunction-sections \
|
||||
$(ARCH) $(DEFINES)
|
||||
|
||||
CFLAGS += $(INCLUDE) -D__SWITCH__
|
||||
|
|
Loading…
Reference in a new issue