Add architecture mappings for FreeBSD12

This commit is contained in:
Andrew 2018-12-02 12:07:41 +01:00
parent 84e614d0fd
commit 26b3710485
1 changed files with 7 additions and 1 deletions

View File

@ -12,6 +12,12 @@ endif
# Catch conflicting usage of ARCH in some BSD environments # Catch conflicting usage of ARCH in some BSD environments
ifeq ($(ARCH), amd64) ifeq ($(ARCH), amd64)
override ARCH=x86_64 override ARCH=x86_64
else ifeq ($(ARCH), powerpc64)
override ARCH=power
else ifeq (($ARCH), i386)
override ARCH=x86
else ifeq ($(ARCH), aarch64)
override ARCH=arm64
endif endif
NETLIB_LAPACK_DIR = $(TOPDIR)/lapack-netlib NETLIB_LAPACK_DIR = $(TOPDIR)/lapack-netlib