Source-Changes-HG archive

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

[src/trunk]: src/external/gpl3/gcc/lib libgcc needs to be fully built before ...



details:   https://anonhg.NetBSD.org/src/rev/8c67e8bb4080
branches:  trunk
changeset: 344162:8c67e8bb4080
user:      mrg <mrg%NetBSD.org@localhost>
date:      Wed Mar 16 05:41:47 2016 +0000

description:
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.

diffstat:

 external/gpl3/gcc/lib/Makefile |  10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diffs (26 lines):

diff -r 438d4077a4d9 -r 8c67e8bb4080 external/gpl3/gcc/lib/Makefile
--- a/external/gpl3/gcc/lib/Makefile    Wed Mar 16 05:39:49 2016 +0000
+++ b/external/gpl3/gcc/lib/Makefile    Wed Mar 16 05:41:47 2016 +0000
@@ -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>



Home | Main Index | Thread Index | Old Index