Module Name: src
Committed By: mrg
Date: Wed May 28 16:41:06 UTC 2014
Modified Files:
src/external/gpl3/gcc/lib/libstdc++-v3: Makefile
Log Message:
add -pthread to compiler/linker flags. fixes 1/3 of the link issues.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/external/gpl3/gcc/lib/libstdc++-v3/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/libstdc++-v3/Makefile
diff -u src/external/gpl3/gcc/lib/libstdc++-v3/Makefile:1.11 src/external/gpl3/gcc/lib/libstdc++-v3/Makefile:1.12
--- src/external/gpl3/gcc/lib/libstdc++-v3/Makefile:1.11 Fri May 16 09:36:51 2014
+++ src/external/gpl3/gcc/lib/libstdc++-v3/Makefile Wed May 28 16:41:06 2014
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2014/05/16 09:36:51 mrg Exp $
+# $NetBSD: Makefile,v 1.12 2014/05/28 16:41:06 mrg Exp $
REQUIRETOOLS= yes
NOLINT= # defined
@@ -12,6 +12,9 @@ LDADD= -lgcc_s
LIBDPLIBS+= m ${.CURDIR}/../../../../../lib/libm
+COPTS+= -pthread
+LDFLAGS+= -pthread
+
UNSUPPORTED_COMPILER.clang= # defined
CWARNFLAGS.clang+= -Wno-logical-op-parentheses \
-Wno-deprecated-writable-strings -Wno-parentheses