diff options
author | Joseph Benden <joe@benden.us> | 2019-05-08 11:52:56 -0700 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2019-06-16 16:40:08 +0200 |
commit | 88c07c655262ea63c342e7c9df67cfe36fe3e5df (patch) | |
tree | 249f0c4db7f90c33210d986937d0828d5c183106 /scripts | |
parent | 9b53201d9c53cd7021455ac9748b3dba744b468b (diff) | |
download | upstream-88c07c655262ea63c342e7c9df67cfe36fe3e5df.tar.gz upstream-88c07c655262ea63c342e7c9df67cfe36fe3e5df.tar.bz2 upstream-88c07c655262ea63c342e7c9df67cfe36fe3e5df.zip |
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 <joe@benden.us>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/patch-specs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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)" |