mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-10 17:02:11 +01:00
32 lines
956 B
Plaintext
32 lines
956 B
Plaintext
easyblock = "Toolchain"
|
|
|
|
name = 'ictce'
|
|
version = '7.3.5'
|
|
|
|
homepage = 'http://software.intel.com/en-us/intel-cluster-toolkit-compiler/'
|
|
description = """Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL."""
|
|
|
|
toolchain = SYSTEM
|
|
|
|
suff = '3.187'
|
|
local_compver = '2015.%s' % suff
|
|
|
|
dependencies = [ # version/released
|
|
('icc', local_compver), # Apr 13th 2015
|
|
('ifort', local_compver), # Apr 13th 2015
|
|
('impi', '5.0.3.048', '', ('iccifort', local_compver)), # Feb 10th 2015
|
|
('imkl', '11.2.%s' % suff, '', ('iimpi', version)), # Apr 13th 2015
|
|
]
|
|
|
|
moduleclass = 'toolchain'
|
|
# Salomon specific optimalization
|
|
modextravars = {
|
|
'CC': 'icc',
|
|
'CXX': 'icpc',
|
|
'F90': 'ifort',
|
|
'F77': 'ifort',
|
|
'FC': 'ifort',
|
|
'OPTFLAGS': '-O3 -xHost -ip',
|
|
'DEBUGFLAGS': '-O0 -g'
|
|
}
|