mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-16 03:38:05 +01:00
28 lines
895 B
Plaintext
28 lines
895 B
Plaintext
easyblock = 'Bundle'
|
|
|
|
name = 'GCC'
|
|
version = '5.3.1'
|
|
snapshot = '20160419'
|
|
local_local_binutilsver = '2.25'
|
|
versionsuffix = '-snapshot-%s-%s' % (snapshot, local_local_binutilsver)
|
|
|
|
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
|
|
|
|
dependencies = [
|
|
('GCCcore', version, '-snapshot-%s' % snapshot),
|
|
# local_binutils built on top of GCCcore, which was built on top of
|
|
# (dummy-built) local_binutils
|
|
('binutils', local_local_binutilsver, '', ('GCCcore', '%s-snapshot-%s' % (version, snapshot))),
|
|
]
|
|
|
|
altroot = 'GCCcore'
|
|
altversion = 'GCCcore'
|
|
|
|
# this bundle serves as a local_compiler-only toolchain, so it should be marked
|
|
# as local_compiler (important for HMNS)
|
|
moduleclass = 'local_compiler'
|