easyconfigs-it4i/g/GCCcore/GCCcore-6.3.0.eb
Lukáš Krupčík 49a3c38b20 new file: b/binutils/binutils-2.30-GCCcore-7.3.0.eb
new file:   b/binutils/binutils-2.31.1-GCCcore-8.2.0.eb
	new file:   c/CMake/CMake-3.13.1.eb
	new file:   e/ed/ed-1.9.eb
	modified:   f/flex/flex-2.6.4.eb
	new file:   g/GCC/GCC-7.3.0-2.30.eb
	modified:   g/GCCcore/GCCcore-6.3.0.eb
	new file:   g/GCCcore/GCCcore-8.2.0.eb
	new file:   g/GMP/GMP-6.0.0a.eb
	new file:   l/libtool/libtool-2.4.6.eb
	new file:   l/libzip/libzip-1.2.0.eb
	modified:   r/RapidJSON/RapidJSON-1.1.0-GCC-6.3.0-2.27.eb
	modified:   s/Szip/Szip-2.1.eb
2018-12-05 14:56:11 +01:00

75 lines
2.1 KiB
Plaintext

easyblock = 'EB_GCC'
name = 'GCCcore'
version = '6.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 = {'name': 'dummy', 'version': ''}
mpfr_version = '3.1.5'
source_urls = [
# GCC auto-resolving HTTP mirror
# 'https://ftp.gnu.org/gnu/gcc/gcc-%(version)/',
'http://ftpmirror.gnu.org/gcc/gcc-%(version)s',
# 'https://ftp.gnu.org/gnu/gmp/',
'http://ftpmirror.gnu.org/gmp', # idem for GMP
# 'https://ftp.gnu.org/gnu/mpfr/',
'http://ftpmirror.gnu.org/mpfr', # idem for MPFR
# 'https://ftp.gnu.org/gnu/mpc/',
'http://www.multiprecision.org/mpc/download', # MPC official
'http://ftp.nluug.nl/languages/gcc/infrastructure/',
# '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.1.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'),
('binutils', '2.27'),
]
patches = [
('mpfr-%s-allpatches-20161215.patch' %
mpfr_version,
'../mpfr-%s' %
mpfr_version),
'GCCcore-6.2.0-fix-find-isl.patch',
]
checksums = [
'677a7623c7ef6ab99881bc4e048debb6', # gcc-6.3.0.tar.bz2
'4c175f86e11eb32d8bf9872ca3a8e11d', # gmp-6.1.1.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']
modextravars = {
'CC': '%(installdir)s/bin/gcc',
'CXX': '%(installdir)s/bin/g++',
'F90': '%(installdir)s/bin/gfortran',
'F77': '%(installdir)s/bin/gfortran',
'FC': '%(installdir)s/bin/gfortran',
'F9X': '%(installdir)s/bin/gfortran',
'OPTFLAGS': '-O3 -march=native',
'DEBUGFLAGS': '-O0 -g'
}
withisl = True
moduleclass = 'compiler'