ifort-2016.1.150-GCC-4.9.3-2.25.eb 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/
  2. name = 'ifort'
  3. version = '2016.1.150'
  4. homepage = 'https://software.intel.com/en-us/intel-compilers/'
  5. description = "Fortran compiler from Intel"
  6. toolchain = SYSTEM
  7. sources = ['parallel_studio_xe_%(version_major)s_composer_edition_for_fortran_update%(version_minor)s.tgz']
  8. # remove dependency on intel-mpi-rt-mic
  9. patches = ['ifort_2016_no_mpi_mic_dependency.patch']
  10. checksums = [
  11. # parallel_studio_xe_2016_composer_edition_for_fortran_update1.tgz
  12. 'f3a2903779b80c0e43e3da869c826587dcbae68749ba67d8ff73da3cffcbe992',
  13. '8f2ad5aa9036fc152438e977fe98d943965ff72bf0a5f88f65276f40f106064f', # ifort_2016_no_mpi_mic_dependency.patch
  14. ]
  15. local_gccver = '4.9.3'
  16. local_binutilsver = '2.25'
  17. versionsuffix = '-GCC-%s-%s' % (local_gccver, local_binutilsver)
  18. dependencies = [
  19. ('GCCcore', local_gccver),
  20. ('binutils', local_binutilsver, '', ('GCCcore', local_gccver)),
  21. ]
  22. # list of regex for components to install
  23. # full list of components can be obtained from pset/mediaconfig.xml in unpacked sources
  24. # cfr. https://software.intel.com/en-us/articles/intel-composer-xe-2015-silent-installation-guide
  25. components = ['intel-comp', 'intel-fcomp', 'intel-ifort', 'intel-openmp', 'intel-ipsf?_']
  26. dontcreateinstalldir = True
  27. license_file = '/opt/easybuild/configs/utils/license_intel_all.lic'
  28. moduleclass = 'compiler'