12 lines
430 B
Makefile
12 lines
430 B
Makefile
# $NetBSD: hacks.mk,v 1.3 2015/12/14 19:50:55 joerg Exp $
|
|
|
|
### [Mon Dec 14 16:58:00 MET 2015 : bouyer ]
|
|
### g++-4.8 on NetBSD/i386 fails with an internal compiler error
|
|
### when PCH is used. Be conservative and disable on all MACHINE_ARCH
|
|
###
|
|
.if ${OPSYS} == "NetBSD"
|
|
. include "../../mk/compiler.mk"
|
|
. if ${PKGSRC_COMPILER} == "gcc" && !empty(CC_VERSION:Mgcc-4.8.*)
|
|
CONFIGURE_ARGS+= --disable-precomp-headers
|
|
. endif
|
|
.endif
|