mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00

new file: e/EasyBuild/EasyBuild-4.1.0.eb new file: i/iccifort/iccifort-2020.0.166.eb new file: i/iccifort/iccifort-2020.0.166_no_mpi_rt_dependency.patch modified: i/iimpi/iimpi-2020a.eb modified: i/imkl/imkl-2020.0.166-iimpi-2020a.eb new file: i/impi/impi-2019.6.166-iccifort-2020.0.166-test.eb new file: i/impi/impi-2019.6.166-iccifort-2020.0.166.eb modified: i/intel/intel-2020a.eb deleted: i/icc/icc-2020.0.166-GCC-8.3.0-2.32.eb deleted: i/iccifort/iccifort-2020.0.166-GCC-8.3.0-2.32.eb deleted: i/ifort/ifort-2020.0.166-GCC-8.3.0-2.32.eb deleted: i/impi/impi-2019.6.154-iccifort-2020.0.166-GCC-8.3.0-2.32.eb
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
# IT4Innovations 2020
|
|
|
|
name = 'iccifort'
|
|
version = '2020.0.166'
|
|
|
|
homepage = 'https://software.intel.com/en-us/intel-compilers/'
|
|
description = "Intel C, C++ & Fortran compilers"
|
|
|
|
toolchain = SYSTEM
|
|
|
|
sources = ['parallel_studio_xe_%(version_major)s_composer_edition.tgz']
|
|
patches = ['iccifort-%(version)s_no_mpi_rt_dependency.patch']
|
|
|
|
local_gccver = '8.3.0'
|
|
|
|
dependencies = [
|
|
('GCCcore', local_gccver),
|
|
('binutils', '2.32', '', ('GCCcore', local_gccver)),
|
|
]
|
|
|
|
# list of regex for components to install
|
|
# full list of components can be obtained from pset/mediaconfig.xml in unpacked sources
|
|
# cfr. https://software.intel.com/en-us/articles/intel-composer-xe-2015-silent-installation-guide
|
|
components = [
|
|
'intel-comp', 'intel-ccomp', 'intel-fcomp', 'intel-icc', 'intel-ifort',
|
|
'intel-openmp', 'intel-ipsc?_', 'intel-gdb(?!.*mic)'
|
|
]
|
|
|
|
dontcreateinstalldir = 'True'
|
|
|
|
license_file = '/apps/licenses/intel/license.lic'
|
|
|
|
modextravars = {
|
|
'CC': 'icc',
|
|
'CXX': 'icpc',
|
|
'F90': 'ifort',
|
|
'F77': 'ifort',
|
|
'FC': 'ifort',
|
|
'OPTFLAGS': '-O3 -xHost -ip',
|
|
'DEBUGFLAGS': '-O0 -g'
|
|
}
|
|
|
|
moduleclass = 'compiler'
|