Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Gartner <stefang@aon.at>2009-12-21 13:40:55 +0300
committerStefan Gartner <stefang@aon.at>2009-12-21 13:40:55 +0300
commite65562c6eaf706f73e5678554a6ce0d13c7b73a0 (patch)
tree29f6165232b89af4e3d472ebd220bbbeb735f16c /source/nan_compile.mk
parent5e6e3453a581f7f2bafae1ce4ebeba113a523c86 (diff)
Makefiles: fix CFLAGS for OS X
Diffstat (limited to 'source/nan_compile.mk')
-rw-r--r--source/nan_compile.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/nan_compile.mk b/source/nan_compile.mk
index 9036d0a0f34..03f5a0d1cd6 100644
--- a/source/nan_compile.mk
+++ b/source/nan_compile.mk
@@ -73,11 +73,11 @@ ifeq ($(OS),darwin)
CC ?= gcc
CCC ?= g++
ifeq ($(CPU),powerpc)
- CFLAGS += -pipe -fPIC -ffast-math -mcpu=7450 -mtune=G5 -funsigned-char -fno-strict-aliasing
- CCFLAGS += -pipe -fPIC -funsigned-char -fno-strict-aliasing -wno-long-double
+ CFLAGS += -pipe -fPIC -ffast-math -mcpu=7450 -mtune=G5 -funsigned-char -fno-strict-aliasing -Wno-long-double
+ CCFLAGS += -pipe -fPIC -funsigned-char -fno-strict-aliasing -Wno-long-double
else
CFLAGS += -pipe -fPIC -ffast-math -march=pentium-m -funsigned-char -fno-strict-aliasing
- CCFLAGS += -pipe -fPIC -funsigned-char -fno-strict-aliasing -wno-long-double
+ CCFLAGS += -pipe -fPIC -funsigned-char -fno-strict-aliasing
endif
# REL_CFLAGS += -O
# REL_CCFLAGS += -O2