Module Name: src
Committed By: tron
Date: Tue Jul 19 15:59:02 UTC 2011
Modified Files:
src/external/gpl3/gcc/usr.bin/backend: Makefile
src/external/gpl3/gcc/usr.bin/cpp: Makefile
src/external/gpl3/gcc/usr.bin/frontend: Makefile
src/external/gpl3/gcc/usr.bin/gcov: Makefile
Log Message:
Fix remaining SSP build issues if GCC 4.5 is used.
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/external/gpl3/gcc/usr.bin/backend/Makefile
cvs rdiff -u -r1.3 -r1.4 src/external/gpl3/gcc/usr.bin/cpp/Makefile
cvs rdiff -u -r1.4 -r1.5 src/external/gpl3/gcc/usr.bin/frontend/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gcc/usr.bin/gcov/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/gpl3/gcc/usr.bin/backend/Makefile
diff -u src/external/gpl3/gcc/usr.bin/backend/Makefile:1.10 src/external/gpl3/gcc/usr.bin/backend/Makefile:1.11
--- src/external/gpl3/gcc/usr.bin/backend/Makefile:1.10 Tue Jul 19 01:37:59 2011
+++ src/external/gpl3/gcc/usr.bin/backend/Makefile Tue Jul 19 15:59:01 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2011/07/19 01:37:59 mrg Exp $
+# $NetBSD: Makefile,v 1.11 2011/07/19 15:59:01 tron Exp $
LIBISPRIVATE= yes
@@ -309,7 +309,7 @@
.endif
insn-emit.d insn-emit.o: tm-constrs.h
-COPTS+=-Wno-stack-protector
+CFLAGS+= -Wno-stack-protector
.if ${MACHINE_ARCH} == "m68000"
COPTS.lambda-code.c= -O0
Index: src/external/gpl3/gcc/usr.bin/cpp/Makefile
diff -u src/external/gpl3/gcc/usr.bin/cpp/Makefile:1.3 src/external/gpl3/gcc/usr.bin/cpp/Makefile:1.4
--- src/external/gpl3/gcc/usr.bin/cpp/Makefile:1.3 Sat Jul 2 14:06:42 2011
+++ src/external/gpl3/gcc/usr.bin/cpp/Makefile Tue Jul 19 15:59:02 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2011/07/02 14:06:42 mrg Exp $
+# $NetBSD: Makefile,v 1.4 2011/07/19 15:59:02 tron Exp $
# For ../Makefile.inc and bsd.own.mk
.include <bsd.init.mk>
@@ -38,6 +38,8 @@
LDADD+= -lintl
+COPTS+= -Wno-stack-protector
+
.include <bsd.info.mk>
.PATH: ${DIST}/gcc ${DIST}/gcc/doc
Index: src/external/gpl3/gcc/usr.bin/frontend/Makefile
diff -u src/external/gpl3/gcc/usr.bin/frontend/Makefile:1.4 src/external/gpl3/gcc/usr.bin/frontend/Makefile:1.5
--- src/external/gpl3/gcc/usr.bin/frontend/Makefile:1.4 Sat Jul 2 14:06:42 2011
+++ src/external/gpl3/gcc/usr.bin/frontend/Makefile Tue Jul 19 15:59:02 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2011/07/02 14:06:42 mrg Exp $
+# $NetBSD: Makefile,v 1.5 2011/07/19 15:59:02 tron Exp $
LIBISPRIVATE= yes
@@ -34,7 +34,7 @@
.include <bsd.lib.mk>
-COPTS+= -Wno-stack-protector
+CFLAGS+= -Wno-stack-protector
.PATH: ${DIST}/gcc
Index: src/external/gpl3/gcc/usr.bin/gcov/Makefile
diff -u src/external/gpl3/gcc/usr.bin/gcov/Makefile:1.2 src/external/gpl3/gcc/usr.bin/gcov/Makefile:1.3
--- src/external/gpl3/gcc/usr.bin/gcov/Makefile:1.2 Tue Jun 28 09:31:11 2011
+++ src/external/gpl3/gcc/usr.bin/gcov/Makefile Tue Jul 19 15:59:02 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2011/06/28 09:31:11 mrg Exp $
+# $NetBSD: Makefile,v 1.3 2011/07/19 15:59:02 tron Exp $
.include <bsd.own.mk>
@@ -15,4 +15,6 @@
LDADD= -L${LIBIBERTYOBJ} -liberty -lintl
+COPTS+= -Wno-stack-protector
+
.PATH: ${DIST}/gcc