svn commit: r477571 - head/lang/go14

Julien Laffaye jlaffaye at FreeBSD.org
Sun Aug 19 13:25:06 UTC 2018


Author: jlaffaye
Date: Sun Aug 19 13:25:05 2018
New Revision: 477571
URL: https://svnweb.freebsd.org/changeset/ports/477571

Log:
  Build lang/go14 without SSE2
  
  This allows to build lang/go14 on old x86 CPUs without SSE2 instructions.
  This has an impact on generated machine code performance, but lang/go14
  is only useful to boostrap lang/go so it is ok to do so unconditionally.
  
  PR:		230733
  Submitted by:	Dmitri Goutnik <dg at syrec.org>

Modified:
  head/lang/go14/Makefile

Modified: head/lang/go14/Makefile
==============================================================================
--- head/lang/go14/Makefile	Sun Aug 19 12:54:10 2018	(r477570)
+++ head/lang/go14/Makefile	Sun Aug 19 13:25:05 2018	(r477571)
@@ -2,7 +2,7 @@
 
 PORTNAME=	go14
 PORTVERSION=	1.4.3
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	lang
 MASTER_SITES=	http://golang.org/dl/
 DISTNAME=	go${PORTVERSION}.src
@@ -62,6 +62,7 @@ do-build:
 		CC=${CC} \
 		GOROOT=${WRKSRC} GOROOT_FINAL=${PREFIX}/go14 \
 		GOBIN= GOARCH=${GOARCH} GOOS=${OPSYS:tl} \
+		GO386=387 \
 		CGO_ENABLED=0 \
 		${SH} make.bash
 


More information about the svn-ports-head mailing list