mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00
30 lines
680 B
Plaintext
30 lines
680 B
Plaintext
# Built with EasyBuild version 2.2.0dev on 2015-06-29_10-00-03
|
|
easyblock = "Toolchain"
|
|
|
|
name = 'iccifort'
|
|
version = '2015.3.187'
|
|
versionsuffix = '-GNU-5.1.0-2.25'
|
|
|
|
homepage = 'http://software.intel.com/en-us/intel-cluster-toolkit-compiler/'
|
|
description = """Intel C, C++ and Fortran compilers"""
|
|
|
|
toolchain = {'name': 'dummy', 'version': 'dummy'}
|
|
|
|
dependencies = [
|
|
('icc', version, versionsuffix),
|
|
('ifort', version, versionsuffix),
|
|
]
|
|
|
|
moduleclass = 'toolchain'
|
|
|
|
# Salomon specific optimalization
|
|
modextravars = {
|
|
'CC': 'icc',
|
|
'CXX': 'icpc',
|
|
'F90': 'ifort',
|
|
'F77': 'ifort',
|
|
'FC': 'ifort',
|
|
'OPTFLAGS': '-O3 -xHost -ip',
|
|
'DEBUGFLAGS': '-O0 -g'
|
|
}
|