diff options
author | Marcus Comstedt | 2003-04-13 12:53:08 +0000 |
---|---|---|
committer | Marcus Comstedt | 2003-04-13 12:53:08 +0000 |
commit | 0fe46c5007643bd65583ae8196c02b44ea1df492 (patch) | |
tree | c9a6803b9af3c56c2d985d768e16749b978689fc /backends | |
parent | c7f298702aef6ddef2d13c146e1abed74c672859 (diff) | |
download | scummvm-rg350-0fe46c5007643bd65583ae8196c02b44ea1df492.tar.gz scummvm-rg350-0fe46c5007643bd65583ae8196c02b44ea1df492.tar.bz2 scummvm-rg350-0fe46c5007643bd65583ae8196c02b44ea1df492.zip |
Looks like gcc is broken again... :-( Go back to -O1 for now.
svn-id: r7000
Diffstat (limited to 'backends')
-rw-r--r-- | backends/dc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/dc/Makefile b/backends/dc/Makefile index 0b71d0fb7f..616fc3779a 100644 --- a/backends/dc/Makefile +++ b/backends/dc/Makefile @@ -5,7 +5,7 @@ ronindir = /usr/local/ronin VPATH = ../.. CXX = sh-elf-g++ -ml -m4-single-only -CXXFLAGS= -O4 -Wno-multichar -funroll-loops -fschedule-insns2 -fomit-frame-pointer -fdelete-null-pointer-checks -fno-exceptions +CXXFLAGS= -O1 -Wno-multichar -funroll-loops -fschedule-insns2 -fomit-frame-pointer -fdelete-null-pointer-checks -fno-exceptions DEFINES = -D__DC__ -DNONSTANDARD_PORT LDFLAGS := -Wl,-Ttext,0x8c010000 -nostartfiles $(ronindir)/lib/crt0.o INCLUDES:= -I./ -I../.. -I../../common -I$(ronindir)/include/ |