mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 15:32:11 +01:00
21 lines
561 B
Plaintext
21 lines
561 B
Plaintext
easyblock = 'Toolchain'
|
|
|
|
name = 'GNU'
|
|
gccver = '6.3.0'
|
|
binutilsver = '2.27'
|
|
version = '%s-%s' % (gccver, binutilsver)
|
|
|
|
homepage = 'http://www.gnu.org/software/'
|
|
description = "Compiler-only toolchain with GCC and binutils."
|
|
|
|
toolchain = {'name': 'dummy', 'version': 'dummy'}
|
|
|
|
dependencies = [
|
|
# GCC built on top of (dummy-built) binutils
|
|
('GCC', gccver, '-%s' % binutilsver),
|
|
# binutils built on top of GCC, which was built on top of (dummy-built) binutils
|
|
('binutils', binutilsver, '', ('GCCcore', '%s' % gccver)),
|
|
]
|
|
|
|
moduleclass = 'toolchain'
|