ifort-2017.4.196-GCC-6.4.0-2.28.eb 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild
  2. name = 'ifort'
  3. version = '2017.4.196'
  4. homepage = 'http://software.intel.com/en-us/intel-compilers/'
  5. description = "Intel Fortran compiler"
  6. toolchain = {'name': 'dummy', 'version': ''}
  7. sources = ['parallel_studio_xe_%(version_major)s_update%(version_minor)s_composer_edition_for_fortran.tgz']
  8. checksums = [
  9. # parallel_studio_xe_2017_update4_composer_edition_for_fortran.tgz
  10. '0b6a222e015f776600b12b17c19506249c9e7691a8d287f44cd40a66ca9ac749',
  11. # ifort_2017_no_mpi_mic_dependency.patch
  12. '7241e492a5f7ba4e62e8106c97f585c2fd931e32886d886f7bf0a9020e421325',
  13. ]
  14. # remove dependency on intel-mpi-rt-mic
  15. patches = ['ifort_2017_no_mpi_mic_dependency.patch']
  16. gccver = '6.4.0'
  17. binutilsver = '2.28'
  18. versionsuffix = '-GCC-%s-%s' % (gccver, binutilsver)
  19. dependencies = [
  20. ('GCCcore', gccver),
  21. ('binutils', binutilsver, '', ('GCCcore', gccver)),
  22. ]
  23. # list of regex for components to install
  24. # full list of components can be obtained from pset/mediaconfig.xml in unpacked sources
  25. # cfr. https://software.intel.com/en-us/articles/intel-composer-xe-2015-silent-installation-guide
  26. components = ['intel-comp', 'intel-fcomp', 'intel-ifort', 'intel-openmp', 'intel-ipsf?_', 'intel-gdb(?!.*mic)']
  27. dontcreateinstalldir = 'True'
  28. license_file = '/opt/easybuild/easyconfigs/utils/license_intel_all.lic'
  29. moduleclass = 'compiler'