From 2275502e4c6754b7b9106bf62231909be7138bdf Mon Sep 17 00:00:00 2001 From: TheOfficialFloW Date: Sun, 25 Oct 2020 10:20:19 +0100 Subject: [PATCH] Use fno-short-enums to be compatible with re3. (#2) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 985904c..3cbf837 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ PREFIX = arm-vita-eabi CC = $(PREFIX)-gcc CXX = $(PREFIX)-g++ AR = $(PREFIX)-gcc-ar -CFLAGS = -g -Wl,-q -fno-optimize-sibling-calls -O2 -ftree-vectorize -fsingle-precision-constant -mfloat-abi=hard -ffast-math \ +CFLAGS = -g -Wl,-q,--no-enum-size-warning -fno-short-enums -fno-optimize-sibling-calls -O2 -ftree-vectorize -fsingle-precision-constant -mfloat-abi=hard -ffast-math \ -DPSP2 -DDEBUG -DRW_GL3 -DLIBRW_GLAD CXXFLAGS = $(CFLAGS) ASFLAGS = $(CFLAGS)