Skip to content

Commit d3d58f8

Browse files
authored
Catch conflicting usage of ARCH in at least some BSD environments
fixes #1796
1 parent 697dc1b commit d3d58f8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Makefile.system

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ ifndef TOPDIR
99
TOPDIR = .
1010
endif
1111

12+
# Catch conflicting usage of ARCH in some BSD environments
13+
ifeq ($(ARCH), amd64)
14+
override ARCH=x86_64
15+
endif
16+
1217
NETLIB_LAPACK_DIR = $(TOPDIR)/lapack-netlib
1318

1419
# Default C compiler

0 commit comments

Comments
 (0)