diff options
author | icculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-12-04 23:14:23 +0000 |
---|---|---|
committer | icculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-12-04 23:14:23 +0000 |
commit | b58d73a1fda5fed950ac9d2bbbaafb4e7e1ef641 (patch) | |
tree | 2f489606af0c742544dbad760fc1d0dd3fd6decb /code | |
parent | 4ad0100b7a614f86e32bf8d3357cef8adac4c52d (diff) | |
download | ioquake3-aero-b58d73a1fda5fed950ac9d2bbbaafb4e7e1ef641.tar.gz ioquake3-aero-b58d73a1fda5fed950ac9d2bbbaafb4e7e1ef641.zip |
Removed -fomit-frame-pointer from Mac OS X builds. Someone should
probably gank this from the other platforms, too.
git-svn-id: svn://svn.icculus.org/quake3/trunk@412 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code')
-rw-r--r-- | code/unix/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/unix/Makefile b/code/unix/Makefile index f1cf1f3..1ed167e 100644 --- a/code/unix/Makefile +++ b/code/unix/Makefile @@ -265,7 +265,7 @@ ifeq ($(PLATFORM),darwin) GL_CFLAGS = endif - OPTIMIZE = -O3 -ffast-math -fomit-frame-pointer -falign-loops=16 + OPTIMIZE = -O3 -ffast-math -falign-loops=16 ifeq ($(ARCH),ppc) BASE_CFLAGS += -faltivec |