diff options
author | Ting-Wei Lan <lantw44@gmail.com> | 2023-01-28 02:35:03 +0800 |
---|---|---|
committer | Ting-Wei Lan <lantw44@gmail.com> | 2023-01-28 02:35:03 +0800 |
commit | 25f972788e6eaef391934b1f90f879c427cb9afa (patch) | |
tree | a5ee30c9ad90f59eedc53cf9d40fdd86b3f52404 | |
parent | 46e0b13d406735ec3b30105766a29fe3a45a8ad1 (diff) | |
download | wspkg-data-master.tar.gz wspkg-data-master.tar.zst wspkg-data-master.zip |
It takes a lot of time and memory to do LTO. Since poudriere forces us
to rebuild GCC for almost all updates, it doesn't make much sense to
waste time redoing LTO every time we need to update workstations.
-rw-r--r-- | wsbsd.files/make.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/wsbsd.files/make.conf b/wsbsd.files/make.conf index 5ce3683..5105a7e 100644 --- a/wsbsd.files/make.conf +++ b/wsbsd.files/make.conf @@ -102,6 +102,12 @@ graphics_zbar_SET= V4L irc_irssi_SET= BOT OTR PROXY SOCKS TRUECOLOR java_icedtea-web_SET= PLUGIN java_openjdk6_SET= ICEDTEA SOUND +lang_gcc11_SET= STANDARD_BOOTSTRAP +lang_gcc11_UNSET= LTO_BOOTSTRAP +lang_gcc12_SET= $(lang_gcc11_SET) +lang_gcc12_UNSET= $(lang_gcc11_UNSET) +lang_gcc13-devel_SET= $(lang_gcc11_SET) +lang_gcc13-devel_UNSET= $(lang_gcc11_UNSET) lang_ruby23_SET= CAPIDOCS GMP RDOC lang_ruby24_SET= $(lang_ruby23_SET) lang_ruby25_SET= $(lang_ruby23_SET) |