summaryrefslogtreecommitdiff
path: root/lang/gcc5-aux/Makefile
diff options
context:
space:
mode:
authormaya <maya@pkgsrc.org>2017-07-09 23:17:39 +0000
committermaya <maya@pkgsrc.org>2017-07-09 23:17:39 +0000
commit0d3132c63e7d70af415e5cb6edb25a7cb9aec6cf (patch)
treefcf57b10910671bd93e2f8a675bcd908373cef4e /lang/gcc5-aux/Makefile
parent51503ca29c5ba25fd06913ce8fc82fa2712dfc16 (diff)
downloadpkgsrc-0d3132c63e7d70af415e5cb6edb25a7cb9aec6cf.tar.gz
Always stop libstdc++ from using PCH, not just on bootstrap.
It fails and hangs on netbsd, and people who have looked at the PCH implementation blame it rather than the OS. whitespace.
Diffstat (limited to 'lang/gcc5-aux/Makefile')
-rw-r--r--lang/gcc5-aux/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/lang/gcc5-aux/Makefile b/lang/gcc5-aux/Makefile
index a0139436249..9ba6b996d42 100644
--- a/lang/gcc5-aux/Makefile
+++ b/lang/gcc5-aux/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2017/06/07 23:19:05 khorben Exp $
+# $NetBSD: Makefile,v 1.9 2017/07/09 23:17:39 maya Exp $
#
PKGNAME= gcc5-aux-${SNAPSHOT}
@@ -186,7 +186,7 @@ MY_MAKE_ENV+= lt_cv_path_SED=${TOOLS_SED}
# 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
@@ -194,6 +194,7 @@ CONFIGURE_ARGS+= --enable-checking=release
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}