diff options
author | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-03-28 16:16:38 +0000 |
---|---|---|
committer | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-03-28 16:16:38 +0000 |
commit | 69d038a1e3d4aea4300bd1d6bc103bdf00f197ba (patch) | |
tree | 93711d2024a505026c73a1a14f43a18b894bb796 /Makefile | |
parent | f44ed19af12bd78f8adb9a1aae408997d365d6e0 (diff) | |
download | ioquake3-aero-69d038a1e3d4aea4300bd1d6bc103bdf00f197ba.tar.gz ioquake3-aero-69d038a1e3d4aea4300bd1d6bc103bdf00f197ba.zip |
http://bugzilla.icculus.org/show_bug.cgi?id=3579
Patch to make Solaris work again by Vincent Cojot.
git-svn-id: svn://svn.icculus.org/quake3/trunk@1288 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -656,10 +656,10 @@ ifeq ($(PLATFORM),sunos) OPTIMIZE = -O3 -ffast-math -funroll-loops ifeq ($(ARCH),sparc) - OPTIMIZE = -O3 -ffast-math -falign-loops=2 \ - -falign-jumps=2 -falign-functions=2 -fstrength-reduce \ - -mtune=ultrasparc -mv8plus -mno-faster-structs \ - -funroll-loops + OPTIMIZE = -O3 -ffast-math \ + -fstrength-reduce -falign-functions=2 \ + -mtune=ultrasparc3 -mv8plus -mno-faster-structs \ + -funroll-loops #-mv8plus else ifeq ($(ARCH),i386) OPTIMIZE = -O3 -march=i586 -fomit-frame-pointer -ffast-math \ |