diff options
author | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-08-28 10:41:26 +0000 |
---|---|---|
committer | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-08-28 10:41:26 +0000 |
commit | 51bdc4949c46c6fd1d2ce1e1bf228f9df3b847b6 (patch) | |
tree | ed5161c28ed6ebdf5c50f2b78fd5c40e441143d1 /code/unix/Makefile | |
parent | bc87879a3d7f6858e0b25601bd28d17267a8dab0 (diff) | |
download | ioquake3-aero-51bdc4949c46c6fd1d2ce1e1bf228f9df3b847b6.tar.gz ioquake3-aero-51bdc4949c46c6fd1d2ce1e1bf228f9df3b847b6.zip |
-mtune isn't supported by gcc3, change to -march=i686. Who run q3 on a
P1 anyways?
git-svn-id: svn://svn.icculus.org/quake3/trunk@15 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/unix/Makefile')
-rwxr-xr-x | code/unix/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/unix/Makefile b/code/unix/Makefile index c0bf02f..fa45eec 100755 --- a/code/unix/Makefile +++ b/code/unix/Makefile @@ -160,7 +160,7 @@ ifeq ($(PLATFORM),linux) # TTimo: legacy RELEASE_CFLAGS # NOTE: the -fomit-frame-pointer option leads to an unstable binary on my test box if it was built on the main box # but building on the Mdk 7.2 baseline seems to work - RELEASE_CFLAGS=$(BASE_CFLAGS) -DNDEBUG -O3 -mtune=pentiumpro -march=pentium -fomit-frame-pointer -ffast-math -falign-loops=2 -falign-jumps=2 -falign-functions=2 -fno-strict-aliasing -fstrength-reduce + RELEASE_CFLAGS=$(BASE_CFLAGS) -DNDEBUG -O3 -march=i686 -fomit-frame-pointer -ffast-math -falign-loops=2 -falign-jumps=2 -falign-functions=2 -fno-strict-aliasing -fstrength-reduce # TTimo: use this for building on P3 gcc 2.95.3 libc2.2 for all targets (experimental! -fomit-fram-pointer removed) # RELEASE_CFLAGS=$(BASE_CFLAGS) -DNDEBUG -O3 -mtune=pentiumpro -march=pentium -pipe -ffast-math -malign-loops=2 -malign-jumps=2 -malign-functions=2 -fno-strict-aliasing -fstrength-reduce endif |