diff options
author | bmaupin | 2019-09-16 14:03:24 -0400 |
---|---|---|
committer | bmaupin | 2019-10-03 13:53:34 -0400 |
commit | 2e13ee1cfc5cc17aff4814dd229e1cdf251eccd9 (patch) | |
tree | 911a4199c953cb39b648cb58d654d667f21d4135 /Makefile | |
parent | 24af89596e6484ff5a7a08efecfa8288cfbc02f3 (diff) | |
download | picogpsp-2e13ee1cfc5cc17aff4814dd229e1cdf251eccd9.tar.gz picogpsp-2e13ee1cfc5cc17aff4814dd229e1cdf251eccd9.tar.bz2 picogpsp-2e13ee1cfc5cc17aff4814dd229e1cdf251eccd9.zip |
Fix compiler warning for strict aliasing
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -217,7 +217,7 @@ else ifeq ($(platform), psp1) CFLAGS += -DPSP -G0 CFLAGS += -I$(shell psp-config --pspsdk-path)/include CFLAGS += -march=allegrex -mfp32 -mgp32 -mlong32 -mabi=eabi - CFLAGS += -fomit-frame-pointer -ffast-math -fstrict-aliasing + CFLAGS += -fomit-frame-pointer -ffast-math CFLAGS += -falign-functions=32 -falign-loops -falign-labels -falign-jumps STATIC_LINKING = 1 |