Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 Nov 2019 22:47:44 +0000 (UTC)
From:      Dmitri Goutnik <dmgk@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r517706 - head/Mk/Uses
Message-ID:  <201911152247.xAFMliIB036929@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911152247.xAFMliIB036929>