Skip to content
Snippets Groups Projects
Unverified Commit f3c2ebbf authored by Kai Germaschewski's avatar Kai Germaschewski Committed by GitHub
Browse files

fix gcc@8.4.0 build (#15729)

the gcc package.py includes patches for a sanitizer related bug that look
like they've been fixed in gcc 8.4.0, which caused `spack install` to fail.

This PR excludes patching gcc >= 8.4.0 and < 9.0.0.
parent c1d111af
Branches
Tags
No related merge requests found
...@@ -237,8 +237,8 @@ class Gcc(AutotoolsPackage, GNUMirrorPackage): ...@@ -237,8 +237,8 @@ class Gcc(AutotoolsPackage, GNUMirrorPackage):
# Backport libsanitizer patch for glibc >= 2.31 and 8.1.0 <= gcc <= 9.2.0 # Backport libsanitizer patch for glibc >= 2.31 and 8.1.0 <= gcc <= 9.2.0
# https://bugs.gentoo.org/708346 # https://bugs.gentoo.org/708346
patch('glibc-2.31-libsanitizer-1.patch', when='@8.1.0:9.2.0') patch('glibc-2.31-libsanitizer-1.patch', when='@8.1.0:8.3.99,9.0.0:9.2.0')
patch('glibc-2.31-libsanitizer-2.patch', when='@8.1.0:9.2.0') patch('glibc-2.31-libsanitizer-2.patch', when='@8.1.0:8.3.99,9.0.0:9.2.0')
# Older versions do not compile with newer versions of glibc # Older versions do not compile with newer versions of glibc
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81712 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81712
patch('ucontext_t.patch', when='@4.9,5.1:5.4,6.1:6.4,7.1') patch('ucontext_t.patch', when='@4.9,5.1:5.4,6.1:6.4,7.1')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment