svn commit: r410995 - branches/2016Q1/Mk
Jan Beich
jbeich at FreeBSD.org
Sun Mar 13 15:17:04 UTC 2016
Author: jbeich
Date: Sun Mar 13 15:17:02 2016
New Revision: 410995
URL: https://svnweb.freebsd.org/changeset/ports/410995
Log:
MFH: r410973
www/firefox: work around Clang 3.4 crash with OPTIMIZED_CFLAGS=off
Pretend we want C++14 to pull more modern version of Clang on 10.x i386.
PR: 207837
Approved by: ports-secteam (junovitch)
Modified:
branches/2016Q1/Mk/bsd.gecko.mk
Directory Properties:
branches/2016Q1/ (props changed)
Modified: branches/2016Q1/Mk/bsd.gecko.mk
==============================================================================
--- branches/2016Q1/Mk/bsd.gecko.mk Sun Mar 13 15:07:20 2016 (r410994)
+++ branches/2016Q1/Mk/bsd.gecko.mk Sun Mar 13 15:17:02 2016 (r410995)
@@ -301,6 +301,9 @@ CFLAGS+= -O3
MOZ_EXPORT+= MOZ_OPTIMIZE_FLAGS="${CFLAGS:M-O*}"
MOZ_OPTIONS+= --enable-optimize
.else
+. if ${MOZILLA_VER:R:R} >= 45 && ${OSREL:R} == 10 && ${ARCH} == i386
+USES:= compiler:c++14-lang ${USES:Ncompiler*c++11*} # XXX ports/207837
+. endif
MOZ_OPTIONS+= --disable-optimize
.endif
More information about the svn-ports-branches
mailing list