diff options
Diffstat (limited to 'plugins/gpu-gles')
-rw-r--r-- | plugins/gpu-gles/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/gpu-gles/Makefile b/plugins/gpu-gles/Makefile index fdefb08..1110151 100644 --- a/plugins/gpu-gles/Makefile +++ b/plugins/gpu-gles/Makefile @@ -8,8 +8,10 @@ CROSS_COMPILE ?= arm-none-linux-gnueabi- #CC = $(PREFIX)/bin/$(CROSS_COMPILE)gcc
CC = $(CROSS_COMPILE)gcc
-CFLAGS += -fPIC # -Wall
+CFLAGS += -fPIC -ggdb # -Wall
+ifndef DEBUG
CFLAGS += -O3 -ffast-math -fomit-frame-pointer
+endif
CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8
# note: the below causes strange bugs/crashes
#CFLAGS += -mfloat-abi=softfp
|