diff options
| author | Won Star | 2006-09-13 07:32:54 +0000 |
|---|---|---|
| committer | Won Star | 2006-09-13 07:32:54 +0000 |
| commit | 595a035bee92357850fba10ab9248b5364f2bf0f (patch) | |
| tree | b87fb8149d9e086790cf579cf32827d30a74384f /backends/platform/gp32/Makefile | |
| parent | c66ec787d26abdd37ef1fbca35fb43e6abca4e69 (diff) | |
| download | scummvm-rg350-595a035bee92357850fba10ab9248b5364f2bf0f.tar.gz scummvm-rg350-595a035bee92357850fba10ab9248b5364f2bf0f.tar.bz2 scummvm-rg350-595a035bee92357850fba10ab9248b5364f2bf0f.zip | |
Implement file cache. needs some testing :)
Fix some bugs in memory management.
svn-id: r23870
Diffstat (limited to 'backends/platform/gp32/Makefile')
| -rw-r--r-- | backends/platform/gp32/Makefile | 30 |
1 files changed, 13 insertions, 17 deletions
diff --git a/backends/platform/gp32/Makefile b/backends/platform/gp32/Makefile index 67595961b0..e91a27f33f 100644 --- a/backends/platform/gp32/Makefile +++ b/backends/platform/gp32/Makefile @@ -28,7 +28,7 @@ CFLAGS = -marm -march=armv4t -mtune=arm920 -mapcs \ -mno-thumb-interwork \ -I$(GPSDK)/include \ -g \ - -O \ + -O2 \ -fomit-frame-pointer # -ffast-math \ # -fshort-double @@ -92,9 +92,9 @@ DEFINES += -DDISABLE_FANCY_THEMES #LIBS += -Lbackends/platform/gp32/gpmad -lgpmad # Support libminilzo. -#DEFINES += -DUSE_MINILZO -#INCLUDES += -Ibackends/platform/gp32/minilzo -#LIBS += -Lbackends/platform/gp32/minilzo -lminilzo +DEFINES += -DUSE_MINILZO +INCLUDES += -Ibackends/platform/gp32/minilzo +LIBS += -Lbackends/platform/gp32/minilzo -lminilzo # Support for 8:3 save files names (The GP32 uses FAT12/16 (no vFAT) for the file system). DEFINES += -DSHORT_SAVENAMES @@ -159,19 +159,15 @@ DISABLE_HQ_SCALERS = 1 DISABLE_SCUMM_7_8 = 1 DISABLE_HE = 1 -# ??? -DISABLE_SIMON = 1 -DISABLE_SKY = 1 -DISABLE_QUEEN = 1 -DISABLE_GOB = 1 -DISABLE_LURE = 1 -DISABLE_CINE = 1 - -# In-development engines below. -# Disable for ALL release builds. -DISABLE_SAGA = 1 -DISABLE_KYRA = 1 -DISABLE_AGI = 1 +#DISABLE_SIMON = 1 +#DISABLE_SKY = 1 +#DISABLE_QUEEN = 1 +#DISABLE_GOB = 1 +#DISABLE_LURE = 1 +#DISABLE_CINE = 1 +#DISABLE_SAGA = 1 +#DISABLE_KYRA = 1 +#DISABLE_AGI = 1 # The engines below are not supported on the GP32 port so there is # no point compiling support into the binary. |
