mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-15 03:11:22 +01:00
25 lines
781 B
Plaintext
25 lines
781 B
Plaintext
easyblock = 'Toolchain'
|
|
|
|
name = 'intel'
|
|
version = '2017b'
|
|
|
|
homepage = 'http://software.intel.com/en-us/intel-cluster-toolkit-compiler/'
|
|
description = "Compiler toolchain including Intel compilers, Intel MPI and Intel Math Kernel Library (MKL)."
|
|
|
|
toolchain = SYSTEM
|
|
|
|
local_compver = '2017.5.239'
|
|
local_gccver = '6.3.0'
|
|
local_local_binutilsver = '2.27'
|
|
gccsuff = '-GCC-%s-%s' % (local_gccver, local_local_binutilsver)
|
|
dependencies = [
|
|
('GCCcore', local_gccver),
|
|
('local_binutils', local_local_binutilsver, '-GCCcore-%s' % local_gccver),
|
|
('icc', local_compver, gccsuff),
|
|
('ifort', local_compver, gccsuff),
|
|
('impi', '2017.4.239', '', ('iccifort', '%s%s' % (local_compver, gccsuff))),
|
|
('imkl', '2017.4.239', '', ('iimpi', version)),
|
|
]
|
|
|
|
moduleclass = 'toolchain'
|