From b72119fe6aaf3e767e67d8b58874cc8a78a4b33b Mon Sep 17 00:00:00 2001 From: dborth Date: Tue, 23 Sep 2008 04:58:56 +0000 Subject: [PATCH] change to -O3 --- Makefile.gc | 8 ++++---- Makefile.wii | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile.gc b/Makefile.gc index 7aa9708..3ceba27 100644 --- a/Makefile.gc +++ b/Makefile.gc @@ -34,8 +34,8 @@ CFLAGS = -g -O3 -Wall $(MACHDEP) $(INCLUDE) \ -DCPU_SHUTDOWN -DSPC700_SHUTDOWN \ -DSPC700_C -DSDD1_DECOMP \ -DCORRECT_VRAM_READS -DNEW_COLOUR_BLENDING \ - -fomit-frame-pointer -fno-exceptions -Wno-unused-parameter -pipe \ - #-D_DEBUG_VIDEO + -fomit-frame-pointer -fno-exceptions -Wno-unused-parameter \ + #-D_DEBUG_VIDEO -pipe CXXFLAGS = $(CFLAGS) LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map -Wl,--cref @@ -118,11 +118,11 @@ clean: #--------------------------------------------------------------------------------- run: - wiiload $(OUTPUT).dol + psoload $(OUTPUT).dol #--------------------------------------------------------------------------------- reload: - wiiload -r $(OUTPUT).dol + psoload -r $(OUTPUT).dol #--------------------------------------------------------------------------------- diff --git a/Makefile.wii b/Makefile.wii index 604b753..9227908 100644 --- a/Makefile.wii +++ b/Makefile.wii @@ -28,7 +28,7 @@ INCLUDES := source/snes9x source/ngc # options for code generation #--------------------------------------------------------------------------------- -CFLAGS = -g -O2 -Wall $(MACHDEP) $(INCLUDE) \ +CFLAGS = -g -O3 -Wall $(MACHDEP) $(INCLUDE) \ -DNGC -DWII_DVD \ -DNO_ASM -DRIGHTSHIFT_IS_SAR \ -DCPU_SHUTDOWN -DSPC700_SHUTDOWN \