From bf176dd9e63691a5950aaa6edf2b3f5370a19c15 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Fri, 18 Feb 2022 17:56:37 +0100 Subject: core/binutils: disabling gold linker on i486 --- core/binutils/PKGBUILD | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'core/binutils') diff --git a/core/binutils/PKGBUILD b/core/binutils/PKGBUILD index bd35c2d6..c0177c21 100644 --- a/core/binutils/PKGBUILD +++ b/core/binutils/PKGBUILD @@ -57,13 +57,15 @@ else fi # i486-specific: disable PGO/LTO build, uses too much resources, -# also disabling LTO for now +# also disabling LTO for now, also disabling the gold linker +# as it runs out of disk space (whatever that means) if [ "${CARCH}" = "i486" ]; then eval "$( declare -f build | \ sed ' s/--enable-pgo-build=.*/--disable-pgo-build/ s/--enable-lto/--disable-lto/ + s/--enable-gold/--disable-gold/ ' )" fi -- cgit v1.2.3-54-g00ecf