Restore explicit CPU selection based on MACHINE_ARCH, needing e.g. on
SmartOS.
This commit is contained in:
parent
59caa07797
commit
7362f8d479
1 changed files with 13 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.17 2016/11/11 19:46:05 joerg Exp $
|
||||
# $NetBSD: Makefile,v 1.18 2016/11/23 13:01:54 joerg Exp $
|
||||
|
||||
DISTNAME= Botan-1.11.33
|
||||
PKGNAME= ${DISTNAME:tl}
|
||||
|
@ -27,6 +27,18 @@ REPLACE_PYTHON+= *.py src/scripts/*.py
|
|||
CONFIGURE_ARGS+= --cc-bin=${CXX} --cc=clang
|
||||
.endif
|
||||
|
||||
.if ${MACHINE_ARCH} == "x86_64"
|
||||
CONFIGURE_ARGS+= --cpu=amd64
|
||||
.elif ${MACHINE_ARCH} == "i386"
|
||||
CONFIGURE_ARGS+= --cpu=i386
|
||||
.elif ${MACHINE_ARCH} == "powerpc"
|
||||
CONFIGURE_ARGS+= --cpu=ppc
|
||||
.elif ${MACHINE_ARCH} == "powerpc64"
|
||||
CONFIGURE_ARGS+= --cpu=ppc64
|
||||
.elif ${MACHINE_ARCH} == "arm"
|
||||
CONFIGURE_ARGS+= --cpu=arm
|
||||
.endif
|
||||
|
||||
MAKE_FLAGS+= LIB_OPT=${CXXFLAGS:Q}
|
||||
|
||||
USE_TOOLS+= gmake
|
||||
|
|
Loading…
Reference in a new issue