diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2011-07-16 05:35:12 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2011-07-16 05:35:12 +0000 |
commit | 93df6d170fb4758100b3879658c4965ea38f0a92 (patch) | |
tree | 7bdfd1686751b47fc63abefe940f8b29df26c464 /math/gotoblas | |
parent | eb16449372eb03517015558a229cee631d52c9fd (diff) | |
download | ports-93df6d170fb4758100b3879658c4965ea38f0a92.tar.gz ports-93df6d170fb4758100b3879658c4965ea38f0a92.zip |
Notes
Diffstat (limited to 'math/gotoblas')
-rw-r--r-- | math/gotoblas/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/math/gotoblas/Makefile b/math/gotoblas/Makefile index 124acb52d335..9bb48ecf9238 100644 --- a/math/gotoblas/Makefile +++ b/math/gotoblas/Makefile @@ -41,12 +41,16 @@ PLIST_FILES= ${GOTOFILES:S|^|lib/|} BUILD_DEPENDS+= ${LOCALBASE}/bin/as:${PORTSDIR}/devel/binutils -.if ${ARCH} == "amd64" || ${ARCH} == "alpha" || ${ARCH} == "sparc64" || ${ARCH} == "ia64" +.if ${ARCH} == "amd64" || ${ARCH} == "ia64" || ${ARCH} == "sparc64" MAKE_FLAGS+= BINARY64=1 .else MAKE_FLAGS+= BINARY32=1 .endif +.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" +BROKEN= Does not link: searches for x86-specific optimizations +.endif + .if defined(WITH_INTERFACE64) MAKE_FLAGS+= INTERFACE64=1 .endif |