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