From 88c07c655262ea63c342e7c9df67cfe36fe3e5df Mon Sep 17 00:00:00 2001 From: Joseph Benden Date: Wed, 8 May 2019 11:52:56 -0700 Subject: toolchain: Add GCC 9.1.0 release Most of the patches are copied over from GCC 8.3. The following patches are backported from the GCC 9.X development branch: toolchain/gcc/patches/9.1.0/970-recompute-dom-fast-queries-before-vn.patch toolchain/gcc/patches/9.1.0/975-g++-ICE-with-generic-lambda.patch The specs file changed with gcc 9, now it contains "%@{L*}" instead of "%{L*}" in older GCC versions. Signed-off-by: Joseph Benden --- scripts/patch-specs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/patch-specs.sh') diff --git a/scripts/patch-specs.sh b/scripts/patch-specs.sh index 3307b6b090..2262e218fe 100755 --- a/scripts/patch-specs.sh +++ b/scripts/patch-specs.sh @@ -35,7 +35,7 @@ patch_specs() { echo -n "Patching specs ... " STAGING_DIR="$DIR" "$CPP" -dumpspecs | awk ' mode ~ "link" { - sub("%{L.}", "%{L*} -L %:getenv(STAGING_DIR /usr/lib) -rpath-link %:getenv(STAGING_DIR /usr/lib)") + sub(/(%@?\{L.\})/, "& -L %:getenv(STAGING_DIR /usr/lib) -rpath-link %:getenv(STAGING_DIR /usr/lib)") } mode ~ "cpp" { $0 = $0 " -idirafter %:getenv(STAGING_DIR /usr/include)" -- cgit v1.2.3