summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2019-08-23 15:55:30 +0000
committer Eric Hameleers <alien@slackware.com>2019-08-23 15:55:30 +0000
commitc21aab86f8e8e7c48bb0b5f9bec0b0898968a7bf (patch)
tree0b9549a0a1bc4accd724dbcfce1b19d4e3e9f858
parenta0ca4b5ac5f6e08f665f563f837d3c9c4b2e157b (diff)
downloadmultilib-c21aab86f8e8e7c48bb0b5f9bec0b0898968a7bf.tar.gz
multilib-c21aab86f8e8e7c48bb0b5f9bec0b0898968a7bf.tar.xz
gcc-multilib: updated to 9.2.0
-rwxr-xr-xsource/current/gcc/gcc-multilib.SlackBuild16
1 files changed, 2 insertions, 14 deletions
diff --git a/source/current/gcc/gcc-multilib.SlackBuild b/source/current/gcc/gcc-multilib.SlackBuild
index 97efedb..27123ae 100755
--- a/source/current/gcc/gcc-multilib.SlackBuild
+++ b/source/current/gcc/gcc-multilib.SlackBuild
@@ -60,9 +60,9 @@
cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=gcc
-SRCVER=${SRCVER:-"9.1.0"}
+SRCVER=${SRCVER:-"9.2.0"}
VERSION=$(echo $SRCVER | cut -f 1 -d _)
-BUILD=${BUILD:-6alien}
+BUILD=${BUILD:-1alien}
# How many jobs to run in parallel:
NUMJOBS=${NUMJOBS:-"$(nproc)"}
@@ -187,18 +187,6 @@ tar xf $CWD/gcc-$SRCVER.tar.?z || exit 1
# Smite the fixincludes:
zcat $CWD/gcc-no_fixincludes.diff.gz | patch -p1 --verbose --backup --suffix=.orig || exit 1
- # Fix internal compiler error (PR90303):
- zcat $CWD/patches/Fix-ipa-devirt-ICEs-with-types-requiring-structural-equality-PR-tree-optimization-90303.patch.gz | patch -p0 --verbose || exit 1
-
- # Fix std::variant friend declaration that broke clang (PR90397):
- zcat $CWD/patches/gcc.PR90397.patch.gz | patch -p1 --verbose || exit 1
-
- # Fix format errors in es locale that can cause an internal compiler error:
- zcat $CWD/patches/gcc.es.po.diff.gz | patch -p1 --verbose || exit 1
-
- # Fix errors in sv locale:
- zcat $CWD/patches/gcc.sv.po.diff.gz | patch -p1 --verbose || exit 1
-
# Fix perms/owners:
chown -R root:root .
find . -perm 777 -exec chmod 755 {} \;