mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-13 10:21:22 +01:00
28 lines
602 B
Plaintext
28 lines
602 B
Plaintext
easyblock = "Toolchain"
|
|
|
|
name = 'iimpi'
|
|
version = '5.5.0'
|
|
|
|
homepage = 'http://software.intel.com/en-us/intel-cluster-toolkit-compiler/'
|
|
description = """Intel C/C++ and Fortran compilers, alongside Intel MPI."""
|
|
|
|
toolchain = {'name': 'dummy', 'version': 'dummy'}
|
|
|
|
compsuffix = '.5.192'
|
|
compver = '2013' + compsuffix
|
|
dependencies = [
|
|
('icc', compver),
|
|
('ifort', compver),
|
|
('impi', '4.1.1.036', '', ('iccifort', compver)),
|
|
]
|
|
|
|
moduleclass = 'toolchain'
|
|
|
|
modextravars = {
|
|
'CC': 'icc',
|
|
'CXX': 'icpc',
|
|
'F90': 'ifort',
|
|
'F77': 'ifort',
|
|
'FC': 'ifort',
|
|
}
|