From 4b13ccea5d629d7b28d56890f3f31293c84ec766 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 30 Jul 2018 20:40:05 -0400 Subject: [PATCH] Remove automatic bitness selection on PPC64 --- GNUmakefile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 7b68286d..439aea01 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -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