Fix option -march with -mcpu for POWER architecture

In Makefile, -mcpu option is added for POWER architecture instead
of -march

Signed-off-by: Harish <harish@linux.vnet.ibm.com>
This commit is contained in:
Harish 2018-01-29 11:29:50 +05:30
parent 93d345889b
commit 519c2b47b1

View File

@ -96,6 +96,8 @@ else
# - Not Supported: RISC-V, IBM Power, etc...
ifneq ($(ARCH),$(filter $(ARCH),ppc64 ppc64le))
OPTON += -march=native -mtune=native
else
OPTON += -mcpu=native -mtune=native
endif
endif
@ -104,6 +106,8 @@ else
# (-mmacosx-versin-min= requires at least that version of SDK be installed)
ifneq ($(ARCH),$(filter $(ARCH),ppc64 ppc64le))
OPTON += -march=native -mmacosx-version-min=10.10
else
OPTON += -mcpu=native
endif
#http://stackoverflow.com/questions/9840207/how-to-use-avx-pclmulqdq-on-mac-os-x-lion/19342603#19342603
CFLAGS += -Wa,-q