From 0b88723fe1765f51771f59a60aa715a2e4549184 Mon Sep 17 00:00:00 2001 From: Rinnegatamante Date: Thu, 22 Oct 2020 18:32:21 +0200 Subject: [PATCH] Enabling optimization flags. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a9679db..985904c 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 -O2 -ffast-math -mtune=cortex-a9 -mfpu=neon -ftree-vectorize \ +CFLAGS = -g -Wl,-q -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)