Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 19 Aug 2018 13:25:05 +0000 (UTC)
From:      Julien Laffaye <jlaffaye@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r477571 - head/lang/go14
Message-ID:  <201808191325.w7JDP5q2022537@repo.freebsd.org>

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



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