AIX changes for P10 with GNU Compiler

This commit is contained in:
kavanabhat 2021-10-01 05:18:35 -05:00
parent fe3c778c51
commit 9cc95e5657
2 changed files with 6 additions and 2 deletions

View File

@ -16,6 +16,8 @@ else
HOSTARCH = $(ARCH)
endif
HAVE_GAS := $(shell as -v < /dev/null 2>&1 | grep GNU 2>&1 >/dev/null)
# Catch conflicting usage of ARCH in some BSD environments
ifeq ($(ARCH), amd64)
override ARCH=x86_64

View File

@ -1,4 +1,6 @@
ifeq ($(HAVE_GAS), 1)
include $(KERNELDIR)/KERNEL.POWER8
else
#SGEMM_BETA = ../generic/gemm_beta.c
#DGEMM_BETA = ../generic/gemm_beta.c
#CGEMM_BETA = ../generic/zgemm_beta.c
@ -216,4 +218,4 @@ QCABS_KERNEL = ../generic/cabs.c
#Dump kernel
CGEMM3MKERNEL = ../generic/zgemm3mkernel_dump.c
ZGEMM3MKERNEL = ../generic/zgemm3mkernel_dump.c
endif