mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-14 10:51:21 +01:00

new file: b/binutils/binutils-2.28.eb new file: g/GCCcore/GCCcore-7.1.0.eb new file: i/icc/icc-2017.4.196-GCC-7.1.0-2.28.eb new file: i/iccifort/iccifort-2017.4.196-GCC-7.1.0-2.28.eb new file: i/ifort/ifort-2017.4.196-GCC-7.1.0-2.28.eb new file: i/iimpi/iimpi-2017.05-GCC-7.1.0-2.28.eb new file: i/imkl/imkl-2017.3.196-iimpi-2017.05-GCC-7.1.0-2.28.eb new file: i/impi/impi-2017.3.196-iccifort-2017.4.196-GCC-7.1.0-2.28.eb new file: i/intel/intel-2017.05.eb
55 lines
1.6 KiB
Plaintext
55 lines
1.6 KiB
Plaintext
easyblock = 'EB_GCC'
|
|
|
|
name = 'GCCcore'
|
|
version = '7.1.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 = {'name': 'dummy', 'version': ''}
|
|
|
|
mpfr_version = '3.1.5'
|
|
|
|
source_urls = [
|
|
'http://ftpmirror.gnu.org/gcc/gcc-%(version)s', # GCC auto-resolving HTTP mirror
|
|
'http://ftpmirror.gnu.org/gmp', # idem for GMP
|
|
'http://ftpmirror.gnu.org/mpfr', # idem for MPFR
|
|
'http://www.multiprecision.org/mpc/download', # MPC official
|
|
'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.bz2',
|
|
'gmp-6.1.2.tar.bz2',
|
|
'mpfr-%s.tar.bz2' % mpfr_version,
|
|
'mpc-1.0.3.tar.gz',
|
|
'isl-0.16.1.tar.bz2',
|
|
]
|
|
|
|
builddependencies = [
|
|
('M4', '1.4.18', '', True),
|
|
('binutils', '2.28', '', True),
|
|
]
|
|
|
|
patches = [
|
|
('mpfr-%s-allpatches-20161219.patch' % mpfr_version, '../mpfr-%s' % mpfr_version),
|
|
'GCCcore-6.2.0-fix-find-isl.patch',
|
|
]
|
|
|
|
checksums = [
|
|
'6bf56a2bca9dac9dbbf8e8d1036964a8', # gcc-7.1.0.tar.bz2
|
|
'8ddbb26dc3bd4e2302984debba1406a5', # gmp-6.1.2.tar.bz2
|
|
'b1d23a55588e3b2a13e3be66bc69fd8d', # mpfr-3.1.5.tar.gz
|
|
'd6a1d5f8ddea3abd2cc3e98f58352d26', # mpc-1.0.3.tar.gz
|
|
'ac1f25a0677912952718a51f5bc20f32', # isl-0.16.1.tar.bz2
|
|
]
|
|
|
|
languages = ['c', 'c++', 'fortran']
|
|
|
|
withisl = True
|
|
|
|
moduleclass = 'compiler'
|