svn commit: r517355 - head/lang/gcc9-devel

Gerald Pfeifer gerald at FreeBSD.org
Wed Nov 13 00:12:30 UTC 2019


Author: gerald
Date: Wed Nov 13 00:12:29 2019
New Revision: 517355
URL: https://svnweb.freebsd.org/changeset/ports/517355

Log:
  Backport 517206 | gerald | 2019-11-10 from lang/gcc10-devel:
  
    Add a new option PLUGINS that enables GCC's plugin framework. This is off
    by default for now, but something to possibly make the default after a bit
    of settling.
  
    I plan to backport this to lang/gcc9-devel and then lang/gcc9.
  
  Submitted by:	David Carlier <devnexen at gmail.com>
  Differential Revision:	https://reviews.freebsd.org/D22292

Modified:
  head/lang/gcc9-devel/Makefile

Modified: head/lang/gcc9-devel/Makefile
==============================================================================
--- head/lang/gcc9-devel/Makefile	Tue Nov 12 23:27:23 2019	(r517354)
+++ head/lang/gcc9-devel/Makefile	Wed Nov 13 00:12:29 2019	(r517355)
@@ -45,7 +45,7 @@ SSP_UNSAFE=	yes
 CFLAGS:=	${CFLAGS:N-mretpoline}
 CXXFLAGS:=	${CXXFLAGS:N-mretpoline}
 
-OPTIONS_DEFINE=		BOOTSTRAP GRAPHITE
+OPTIONS_DEFINE=		BOOTSTRAP GRAPHITE PLUGINS
 OPTIONS_DEFAULT=	BOOTSTRAP
 BOOTSTRAP_DESC=		Build using a full bootstrap
 GRAPHITE_DESC=		Support for Graphite loop optimizations
@@ -60,6 +60,8 @@ MULTILIB_CONFIGURE_ENABLE=	multilib
 .else
 CONFIGURE_ARGS+=	--disable-multilib
 .endif
+
+PLUGINS_CONFIGURE_ENABLE=	plugin
 
 .include <bsd.port.pre.mk>
 


More information about the svn-ports-all mailing list