svn commit: r517706 - head/Mk/Uses

Dmitri Goutnik dmgk at FreeBSD.org
Fri Nov 15 22:47:45 UTC 2019


Author: dmgk
Date: Fri Nov 15 22:47:44 2019
New Revision: 517706
URL: https://svnweb.freebsd.org/changeset/ports/517706

Log:
  Mk/Uses/go.mk: Enable binary package building for Go ports on aarch64
  
  Tentatively enable package building for Go ports on aarch64 to catch
  regressions early.
  
  Reviewed by:	tobik, Mikaël Urankar <mikael.urankar at gmail.com>
  Approved by:	tz (mentor, implicit)
  Differential Revision:	https://reviews.freebsd.org/D22385

Modified:
  head/Mk/Uses/go.mk

Modified: head/Mk/Uses/go.mk
==============================================================================
--- head/Mk/Uses/go.mk	Fri Nov 15 22:47:25 2019	(r517705)
+++ head/Mk/Uses/go.mk	Fri Nov 15 22:47:44 2019	(r517706)
@@ -101,7 +101,11 @@ GO_ENV+=	GOPATH="${WRKDIR}" \
 		GOBIN=""
 .endif
 
-GO_PORT?=	lang/go
+# Tentatively enable package building for Go ports on aarch64 to catch regressions early.
+# Can be removed after go1.14 is officially released in Jan 2020 and lang/go is updated to 1.14
+GO_PORT_aarch64=	lang/go-devel
+GO_PORT?=	${GO_PORT_${ARCH}:Ulang/go}
+
 BUILD_DEPENDS+=	${GO_CMD}:${GO_PORT}
 .if ${go_ARGS:Mrun}
 RUN_DEPENDS+=	${GO_CMD}:${GO_PORT}


More information about the svn-ports-all mailing list