1234567891011121314151617181920212223242526272829303132333435363738394041 |
- # This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild
- name = 'ifort'
- version = '2017.4.196'
- homepage = 'http://software.intel.com/en-us/intel-compilers/'
- description = "Intel Fortran compiler"
- toolchain = {'name': 'dummy', 'version': ''}
- sources = ['parallel_studio_xe_%(version_major)s_update%(version_minor)s_composer_edition_for_fortran.tgz']
- checksums = [
- # parallel_studio_xe_2017_update4_composer_edition_for_fortran.tgz
- '0b6a222e015f776600b12b17c19506249c9e7691a8d287f44cd40a66ca9ac749',
- # ifort_2017_no_mpi_mic_dependency.patch
- '7241e492a5f7ba4e62e8106c97f585c2fd931e32886d886f7bf0a9020e421325',
- ]
- # remove dependency on intel-mpi-rt-mic
- patches = ['ifort_2017_no_mpi_mic_dependency.patch']
- gccver = '6.4.0'
- binutilsver = '2.28'
- versionsuffix = '-GCC-%s-%s' % (gccver, binutilsver)
- dependencies = [
- ('GCCcore', gccver),
- ('binutils', binutilsver, '', ('GCCcore', 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-fcomp', 'intel-ifort', 'intel-openmp', 'intel-ipsf?_', 'intel-gdb(?!.*mic)']
- dontcreateinstalldir = 'True'
- license_file = '/opt/easybuild/easyconfigs/utils/license_intel_all.lic'
- moduleclass = 'compiler'
|