Skip to content
Snippets Groups Projects
Commit 8de143a9 authored by Matthew LeGendre's avatar Matthew LeGendre Committed by Todd Gamblin
Browse files

Fixes needed to build gcc on Linux/ppc64le (#2057)

* Fixes needed to build gcc on Linux/ppc64le

* flake8 fix.
parent 4b5281bf
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,8 @@ def install(self, spec, prefix):
enabled_languages = set(('c', 'c++', 'fortran', 'java', 'objc'))
if spec.satisfies("@4.7.1:") and sys.platform != 'darwin':
if spec.satisfies("@4.7.1:") and sys.platform != 'darwin' and \
not (spec.satisfies('@:4.9.3') and 'ppc64le' in spec.architecture):
enabled_languages.add('go')
# Fix a standard header file for OS X Yosemite that
......
......@@ -30,6 +30,8 @@ class Libsigsegv(Package):
homepage = "https://www.gnu.org/software/libsigsegv/"
url = "ftp://ftp.gnu.org/gnu/libsigsegv/libsigsegv-2.10.tar.gz"
patch('patch.new_config_guess', when='@2.10')
version('2.10', '7f96fb1f65b3b8cbc1582fb7be774f0f')
def install(self, spec, prefix):
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment