Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 17 Dec 2020 09:52:10 +0000 (UTC)
From:      Gerald Pfeifer <gerald@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r558274 - head/lang/gcc9
Message-ID:  <202012170952.0BH9qAY5000535@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gerald
Date: Thu Dec 17 09:52:10 2020
New Revision: 558274
URL: https://svnweb.freebsd.org/changeset/ports/558274

Log:
  Back port part of r555542 | gerald | 2020-11-17 from lang/gcc9-devel:
  
    Fold the PLUGINS option, which has been on by default, into standard
    behavior and remove that option.  It has not been causing any issues
    since we enabled it 11 months ago, nor measurable overhead.
  
  PR:		242644

Modified:
  head/lang/gcc9/Makefile

Modified: head/lang/gcc9/Makefile
==============================================================================
--- head/lang/gcc9/Makefile	Thu Dec 17 09:45:23 2020	(r558273)
+++ head/lang/gcc9/Makefile	Thu Dec 17 09:52:10 2020	(r558274)
@@ -39,8 +39,8 @@ SSP_UNSAFE=	yes
 CFLAGS:=	${CFLAGS:N-mretpoline}
 CXXFLAGS:=	${CXXFLAGS:N-mretpoline}
 
-OPTIONS_DEFINE=		BOOTSTRAP GRAPHITE PLUGINS
-OPTIONS_DEFAULT=	BOOTSTRAP PLUGINS
+OPTIONS_DEFINE=		BOOTSTRAP GRAPHITE
+OPTIONS_DEFAULT=	BOOTSTRAP
 BOOTSTRAP_DESC=		Build using a full bootstrap
 GRAPHITE_DESC=		Support for Graphite loop optimizations
 
@@ -55,8 +55,6 @@ MULTILIB_CONFIGURE_ENABLE=	multilib
 CONFIGURE_ARGS+=	--disable-multilib
 .endif
 
-PLUGINS_CONFIGURE_ENABLE=	plugin
-
 .include <bsd.port.pre.mk>
 
 .if ${ARCH} == amd64
@@ -90,6 +88,7 @@ BINMODE=	755
 .endif
 CONFIGURE_ARGS+=--disable-nls \
 		--enable-gnu-indirect-function \
+		--enable-plugin \
 		--libdir=${TARGLIB} \
 		--libexecdir=${LIBEXEC} \
 		--program-suffix=${SUFFIX} \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012170952.0BH9qAY5000535>