pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/lang/gcc-aux Always stop libstdc++ from using PCH, not...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/20b919fe370a
branches:  trunk
changeset: 365062:20b919fe370a
user:      maya <maya%pkgsrc.org@localhost>
date:      Mon Jul 10 00:21:31 2017 +0000

description:
Always stop libstdc++ from using PCH, not just on bootstrap.

the configure test hangs on netbsd, and people who have looked at the PCH
implementation blame it rather than the OS.

whitespace.

diffstat:

 lang/gcc-aux/Makefile   |  5 +++--
 lang/gcc-aux/options.mk |  3 +--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (43 lines):

diff -r 899a59cbada9 -r 20b919fe370a lang/gcc-aux/Makefile
--- a/lang/gcc-aux/Makefile     Mon Jul 10 00:14:38 2017 +0000
+++ b/lang/gcc-aux/Makefile     Mon Jul 10 00:21:31 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.27 2017/01/19 18:52:13 agc Exp $
+# $NetBSD: Makefile,v 1.28 2017/07/10 00:21:31 maya Exp $
 #
 
 PKGNAME=       gcc-aux-${SNAPSHOT}
@@ -187,7 +187,7 @@
 
 
 # The standard configuration options
-CONFIGURE_ARGS=        --enable-languages=${LANGS:Q}
+CONFIGURE_ARGS=                --enable-languages=${LANGS:Q}
 CONFIGURE_ARGS+=       --build=${BLD_TARGET}
 CONFIGURE_ARGS+=       --prefix=${PKG_PREFIX:Q}
 CONFIGURE_ARGS+=       --enable-threads=posix
@@ -195,6 +195,7 @@
 CONFIGURE_ARGS+=       --disable-libmudflap
 CONFIGURE_ARGS+=       --disable-libgomp
 CONFIGURE_ARGS+=       --disable-libssp
+CONFIGURE_ARGS+=       --disable-libstdcxx-pch
 CONFIGURE_ARGS+=       --disable-libcilkrts
 CONFIGURE_ARGS+=       --disable-libitm
 CONFIGURE_ARGS+=       ${EXTRA_CONFARGS}
diff -r 899a59cbada9 -r 20b919fe370a lang/gcc-aux/options.mk
--- a/lang/gcc-aux/options.mk   Mon Jul 10 00:14:38 2017 +0000
+++ b/lang/gcc-aux/options.mk   Mon Jul 10 00:21:31 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.5 2015/06/14 19:46:51 marino Exp $
+# $NetBSD: options.mk,v 1.6 2017/07/10 00:21:31 maya Exp $
 
 # NLS is failing, might be linking with wrong iconv lib.
 # Disable option until further notice
@@ -114,7 +114,6 @@
 
 .if !empty(PKG_OPTIONS:Mbootstrap)
 EXTRA_CONFARGS+= --disable-shared --disable-lto
-EXTRA_CONFARGS+= --disable-libstdcxx-pch
 .  if ${OPSYS} != SunOS
 EXTRA_CONFARGS+= --with-stage1-ldflags=-static
 EXTRA_CONFARGS+= --with-boot-ldflags=-static



Home | Main Index | Thread Index | Old Index