svn commit: r517725 - head/lang/gcc9
Gerald Pfeifer
gerald at FreeBSD.org
Sat Nov 16 08:12:35 UTC 2019
Author: gerald
Date: Sat Nov 16 08:12:34 2019
New Revision: 517725
URL: https://svnweb.freebsd.org/changeset/ports/517725
Log:
Backport 517206 | gerald | 2019-11-10 from lang/gcc10-devel, which already
landed in lang/gcc9-devel as r517355 | gerald | 2019-11-13.
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/Makefile
Modified: head/lang/gcc9/Makefile
==============================================================================
--- head/lang/gcc9/Makefile Sat Nov 16 06:45:21 2019 (r517724)
+++ head/lang/gcc9/Makefile Sat Nov 16 08:12:34 2019 (r517725)
@@ -38,7 +38,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
@@ -53,6 +53,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