mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 23:42:12 +01:00
50 lines
1.7 KiB
Plaintext
50 lines
1.7 KiB
Plaintext
# IT4Innovations 2019
|
|
|
|
easyblock = 'EB_GCC'
|
|
|
|
name = 'GCCcore'
|
|
version = '8.3.0'
|
|
|
|
homepage = 'http://gcc.gnu.org/'
|
|
description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada,
|
|
as well as libraries for these languages (libstdc++, libgcj,...)."""
|
|
|
|
toolchain = SYSTEM
|
|
|
|
source_urls = [
|
|
'http://ftpmirror.gnu.org/gnu/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror
|
|
'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
|
|
'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
|
|
'http://ftpmirror.gnu.org/gnu/mpc', # idem for MPC
|
|
'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies
|
|
'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies
|
|
'http://isl.gforge.inria.fr/', # original HTTP source for ISL
|
|
]
|
|
sources = [
|
|
'gcc-%(version)s.tar.gz',
|
|
'gmp-6.1.2.tar.bz2',
|
|
'mpfr-4.0.2.tar.bz2',
|
|
'mpc-1.1.0.tar.gz',
|
|
'isl-0.20.tar.bz2',
|
|
]
|
|
patches = ['GCCcore-6.2.0-fix-find-isl.patch']
|
|
checksums = [
|
|
'ea71adc1c3d86330874b8df19611424b143308f0d6612d542472600532c96d2d', # gcc-8.3.0.tar.gz
|
|
'5275bb04f4863a13516b2f39392ac5e272f5e1bb8057b18aec1c9b79d73d8fb2', # gmp-6.1.2.tar.bz2
|
|
'c05e3f02d09e0e9019384cdd58e0f19c64e6db1fd6f5ecf77b4b1c61ca253acc', # mpfr-4.0.2.tar.bz2
|
|
'6985c538143c1208dcb1ac42cedad6ff52e267b47e5f970183a3e75125b43c2e', # mpc-1.1.0.tar.gz
|
|
'b587e083eb65a8b394e833dea1744f21af3f0e413a448c17536b5549ae42a4c2', # isl-0.20.tar.bz2
|
|
'5ad909606d17d851c6ad629b4fddb6c1621844218b8d139fed18c502a7696c68', # GCCcore-6.2.0-fix-find-isl.patch
|
|
]
|
|
|
|
builddependencies = [
|
|
('M4', '1.4.18', '', True),
|
|
('binutils', '2.32'),
|
|
]
|
|
|
|
languages = ['c', 'c++', 'fortran']
|
|
|
|
withisl = True
|
|
|
|
moduleclass = 'compiler'
|