pkgsrc-Changes archive

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

CVS commit: pkgsrc/lang/gcc47



Module Name:    pkgsrc
Committed By:   maya
Date:           Tue Sep  6 16:28:48 UTC 2016

Modified Files:
        pkgsrc/lang/gcc47: Makefile

Log Message:
gcc47: limit disabling of libsdtc++ pch use to netbsd.

add a comment that explains that the hang occurs due to ASLR, so other
ASLR users will be able to identify the cause.

thanks joerg for suggesting the cause


To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 pkgsrc/lang/gcc47/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/gcc47/Makefile
diff -u pkgsrc/lang/gcc47/Makefile:1.39 pkgsrc/lang/gcc47/Makefile:1.40
--- pkgsrc/lang/gcc47/Makefile:1.39     Tue Sep  6 15:04:57 2016
+++ pkgsrc/lang/gcc47/Makefile  Tue Sep  6 16:28:48 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.39 2016/09/06 15:04:57 maya Exp $
+# $NetBSD: Makefile,v 1.40 2016/09/06 16:28:48 maya Exp $
 
 GCC_PKGNAME=           gcc47
 .include               "version.mk"
@@ -68,10 +68,8 @@ CHECK_SHLIBS_SKIP+=  ${GCC_PKGNAME}/lib*/
 ## For target librarys and libjava programs.
 CONFIGURE_ENV+=                LDFLAGS_FOR_TARGET=${LDFLAGS_FOR_TARGET:Q}
 
-.include "../../mk/compiler.mk"
-.if !empty(CC_VERSION:Mgcc-5.*)
-# hangs "checking for compiler with PCH support"
-# similar to GCC bug 54719/54645.
+# "checking for compiler with PCH support" hangs with ASLR enabled
+.if !empty(MACHINE_PLATFORM:MNetBSD-*)
 CONFIGURE_ARGS+=       --disable-libstdcxx-pch
 .endif
 



Home | Main Index | Thread Index | Old Index