svn commit: r441790 - head/devel/cloudabi-toolchain

Ed Schouten ed at FreeBSD.org
Fri May 26 16:01:26 UTC 2017


Author: ed (src committer)
Date: Fri May 26 16:01:25 2017
New Revision: 441790
URL: https://svnweb.freebsd.org/changeset/ports/441790

Log:
  Add an ARMv7 toolchain to cloudabi-toolchain.
  
  CloudABI recently gained separate packages for ARMv7 based systems.
  These systems can freely use ARMv7-specific features like NEON, whereas
  the ARMv6 packages will need to stick to just VFP.
  
  This change extends the cloudabi-toolchain package to also set up a
  toolchain for ARMv7 properly.
  
  Reviewed by:	bapt
  Differential Revision:	https://reviews.freebsd.org/D10938

Modified:
  head/devel/cloudabi-toolchain/Makefile

Modified: head/devel/cloudabi-toolchain/Makefile
==============================================================================
--- head/devel/cloudabi-toolchain/Makefile	Fri May 26 15:34:18 2017	(r441789)
+++ head/devel/cloudabi-toolchain/Makefile	Fri May 26 16:01:25 2017	(r441790)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	cloudabi-toolchain
-PORTVERSION=	1.8
+PORTVERSION=	1.9
 CATEGORIES=	devel
 MASTER_SITES=	# None
 DISTFILES=	# None
@@ -19,7 +19,8 @@ RUN_DEPENDS=	clang${LLVM_SUFFIX}:devel/l
 LLVM_SUFFIX=	40
 
 CLOUDABI_ARCHS=	aarch64-unknown-cloudabi armv6-unknown-cloudabi-eabihf \
-		i686-unknown-cloudabi x86_64-unknown-cloudabi
+		armv7-unknown-cloudabi-eabihf i686-unknown-cloudabi \
+		x86_64-unknown-cloudabi
 
 LLVM_TOOLS=	ar nm objdump ranlib size
 SHELL_TOOLS=	man pkg-config


More information about the svn-ports-all mailing list