Module Name:    src
Committed By:   mrg
Date:           Wed Mar 16 05:41:47 UTC 2016

Modified Files:
        src/external/gpl3/gcc/lib: Makefile

Log Message:
libgcc needs to be fully built before others (so that headers are)
so add a .WAIT.  make sure to check MKCXX for libs??c++*.

XXX turn of libasan for now.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/external/gpl3/gcc/lib/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/lib/Makefile
diff -u src/external/gpl3/gcc/lib/Makefile:1.9 src/external/gpl3/gcc/lib/Makefile:1.10
--- src/external/gpl3/gcc/lib/Makefile:1.9	Tue Mar 15 03:19:38 2016
+++ src/external/gpl3/gcc/lib/Makefile	Wed Mar 16 05:41:47 2016
@@ -1,16 +1,18 @@
-#	$NetBSD: Makefile,v 1.9 2016/03/15 03:19:38 mrg Exp $
+#	$NetBSD: Makefile,v 1.10 2016/03/16 05:41:47 mrg Exp $
 
 .include <bsd.own.mk>
 
 # crtstuff is built out of elsewhere, or not at all
-SUBDIR+= libgcc libiberty libobjc libgomp
+SUBDIR+= libgcc .WAIT
+SUBDIR+= libiberty libobjc libgomp
 SUBDIR+= libbacktrace
 SUBDIR+= liblto_plugin
 
-.if (${MKLIBSTDCXX} != "no")
+.if (${MKLIBSTDCXX} != "no") && (${MKCXX} != "no")
 SUBDIR+= libsupc++ libstdc++-v3
 .endif
 
-SUBDIR+= libasan
+# XXX GCC5
+#SUBDIR+= libasan
 
 .include <bsd.subdir.mk>

Reply via email to