Remove automatic bitness selection on PPC64

pull/696/head
Jeffrey Walton 2018-07-30 20:40:05 -04:00
parent 00135f5b5b
commit 4b13ccea5d
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 0 additions and 8 deletions

View File

@ -461,14 +461,6 @@ ifeq ($(XLC_COMPILER),1)
ifeq ($(findstring -qrtti,$(CXXFLAGS)),)
CXXFLAGS += -qrtti
endif
HAVE_BITS=$(shell echo $(CXXFLAGS) | $(GREP) -i -c -E '\-q32|\-q64')
ifeq ($(IS_PPC64)$(XLC_COMPILER)$(HAVE_BITS),110)
CXXFLAGS += -q64
else
ifeq ($(IS_PPC32)$(XLC_COMPILER)$(HAVE_BITS),110)
CXXFLAGS += -q32
endif
endif
endif
endif # X86, X64, ARM32, ARM64, PPC32, PPC64, etc