aboutsummaryrefslogtreecommitdiff
path: root/devel/cloudabi-toolchain
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2015-10-21 12:28:21 +0000
committerEd Schouten <ed@FreeBSD.org>2015-10-21 12:28:21 +0000
commit0e43d441400ee3377d275507586e2b8977f556ef (patch)
tree17fceb23fe06afaf47457085cb7f37dd5b56d3f7 /devel/cloudabi-toolchain
parent0f6e7a9bcc6d4291d6950419599ae77f2ee7ae24 (diff)
downloadports-0e43d441400ee3377d275507586e2b8977f556ef.tar.gz
ports-0e43d441400ee3377d275507586e2b8977f556ef.zip
Introduce Binutils for CloudABI on aarch64.
When I added the first copy of the CloudABI toolchain to the Ports tree, I assumed that it would be easily possible to have a single Binutils port that would support all of the architectures of interest. It seems that this is not really supported, or simply awkward to use. Let's just rename the cloudabi-binutils port to cloudabi-binutils-x86_64 and add an additional cloudabi-binutils-aarch64. Reviewed by: emaste Approved by: bapt Differential Revision: https://reviews.freebsd.org/D3919
Notes
Notes: svn path=/head/; revision=399906
Diffstat (limited to 'devel/cloudabi-toolchain')
-rw-r--r--devel/cloudabi-toolchain/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/devel/cloudabi-toolchain/Makefile b/devel/cloudabi-toolchain/Makefile
index 2f5b06e58041..14a3d4378731 100644
--- a/devel/cloudabi-toolchain/Makefile
+++ b/devel/cloudabi-toolchain/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= cloudabi-toolchain
-PORTVERSION= 1.1
+PORTVERSION= 1.2
CATEGORIES= devel
MAINTAINER= ed@FreeBSD.org
@@ -12,7 +12,8 @@ USES= metaport
LIBDIR= ${LOCALBASE}/x86_64-unknown-cloudabi/lib
-RUN_DEPENDS+= x86_64-unknown-cloudabi-ar:${PORTSDIR}/devel/cloudabi-binutils \
+RUN_DEPENDS+= aarch64-unknown-cloudabi-ld:${PORTSDIR}/devel/cloudabi-binutils-aarch64 \
+ x86_64-unknown-cloudabi-ld:${PORTSDIR}/devel/cloudabi-binutils-x86_64 \
x86_64-unknown-cloudabi-cc:${PORTSDIR}/lang/cloudabi-clang
.include <bsd.port.mk>