pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang go*: Disable SSP checks for similar reasons as RE...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d1d1aca4c3da
branches:  trunk
changeset: 369752:d1d1aca4c3da
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Wed Oct 04 10:03:53 2017 +0000

description:
go*: Disable SSP checks for similar reasons as RELRO.

diffstat:

 lang/go/Makefile   |  4 +++-
 lang/go14/Makefile |  4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diffs (36 lines):

diff -r 759b47009231 -r d1d1aca4c3da lang/go/Makefile
--- a/lang/go/Makefile  Wed Oct 04 10:00:11 2017 +0000
+++ b/lang/go/Makefile  Wed Oct 04 10:03:53 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.56 2017/09/03 16:49:52 tron Exp $
+# $NetBSD: Makefile,v 1.57 2017/10/04 10:03:53 jperkin Exp $
 
 .include "version.mk"
 
@@ -72,6 +72,8 @@
 CHECK_RELRO_SKIP+=             go/pkg/bootstrap/bin/asm
 CHECK_RELRO_SKIP+=             go/pkg/bootstrap/bin/compile
 CHECK_RELRO_SKIP+=             go/pkg/bootstrap/bin/link
+# also does not support SSP at this time
+CHECK_SSP_SKIP=                        ${CHECK_RELRO_SKIP}
 
 # uses /bin/rc (for Plan 9)
 CHECK_INTERPRETER_SKIP+=       go/include/plan9/mklibc.rc
diff -r 759b47009231 -r d1d1aca4c3da lang/go14/Makefile
--- a/lang/go14/Makefile        Wed Oct 04 10:00:11 2017 +0000
+++ b/lang/go14/Makefile        Wed Oct 04 10:03:53 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2017/09/02 17:15:00 bsiegert Exp $
+# $NetBSD: Makefile,v 1.14 2017/10/04 10:03:53 jperkin Exp $
 
 .include "../../lang/go/version.mk"
 
@@ -70,6 +70,8 @@
 # uses its own linker which does not support relro in 1.4.x
 CHECK_RELRO_SKIP=      go14/bin/go
 CHECK_RELRO_SKIP+=     go14/bin/gofmt
+# also does not support SSP at this time
+CHECK_SSP_SKIP=                ${CHECK_RELRO_SKIP}
 
 # uses /bin/rc (for Plan 9)
 CHECK_INTERPRETER_SKIP+=       go14/include/plan9/mklibc.rc



Home | Main Index | Thread Index | Old Index