Fix -mno-sse inclusion

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@39231 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mlytwyn 2015-12-10 22:02:32 +00:00
parent be291aae09
commit c794a1fe70

View file

@ -598,7 +598,7 @@ INTERNAL_OBJCFLAGS = -fno-strict-aliasing
# Clang inserts move aligned packed instructions (i.e. movaps,etc) assembly
# code however stack is not aligned causing fault crashes...
ifeq ($(CC),clang)
ifeq ($(wildcard /etc/redhat-release),"")
ifneq ($(wildcard /etc/redhat-release),"")
RH_RELEASE := $(shell cat /etc/redhat-release)
ifeq ($(findstring CentOS,$(RH_RELEASE)),CentOS)
ifeq ($(findstring 6.5,$(RH_RELEASE)),6.5)