summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2006-01-24 05:04:21 +0000
committerTim Angus <tim@ngus.net>2006-01-24 05:04:21 +0000
commit608a95f42c08146d7e85fa876476d98365339a32 (patch)
treebb413c295ce51aa6648090e9856c399989a5e2f4 /Makefile
parent470f5cc7203a148289d6ad6f0f5c7b4d80a48d50 (diff)
* Merged ioq3-r522
- i586 is now default -march - Couple of OpenAL "bug" fixes - Fancy autocompletion - Delete key on *nix fixed - Client now sleeps when inactive - Persistent console history
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index d154a70d..d587243a 100644
--- a/Makefile
+++ b/Makefile
@@ -198,7 +198,7 @@ ifeq ($(PLATFORM),linux)
HAVE_VM_COMPILED = true
else
ifeq ($(ARCH),x86)
- OPTIMIZE = -O3 -march=i686 -fomit-frame-pointer -ffast-math \
+ OPTIMIZE = -O3 -march=i586 -fomit-frame-pointer -ffast-math \
-funroll-loops -falign-loops=2 -falign-jumps=2 \
-falign-functions=2 -fstrength-reduce
HAVE_VM_COMPILED=true
@@ -365,7 +365,7 @@ ifeq ($(PLATFORM),mingw32)
GL_CFLAGS =
MINGW_CFLAGS = -DDONT_TYPEDEF_INT32
- OPTIMIZE = -O3 -march=i686 -fomit-frame-pointer -ffast-math -falign-loops=2 \
+ OPTIMIZE = -O3 -march=i586 -fomit-frame-pointer -ffast-math -falign-loops=2 \
-funroll-loops -falign-jumps=2 -falign-functions=2 -fstrength-reduce
DEBUG_CFLAGS=$(BASE_CFLAGS) -g -O0
@@ -539,7 +539,7 @@ ifeq ($(PLATFORM),SunOS)
BASE_CFLAGS += -DNO_VM_COMPILED
else
ifeq ($(ARCH),x86)
- OPTIMIZE = -O3 -march=i686 -ffast-math \
+ OPTIMIZE = -O3 -march=i586 -ffast-math \
-falign-loops=2 -falign-jumps=2 -falign-functions=2 \
-funroll-loops -fstrength-reduce
endif