iccifort-2020.4.304.eb 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # This is an easyconfig file for EasyBuild, see http://easybuilders.github.io/easybuild
  2. name = 'iccifort'
  3. version = '2020.4.304'
  4. homepage = 'https://software.intel.com/en-us/intel-compilers/'
  5. description = "Intel C, C++ & Fortran compilers"
  6. toolchain = SYSTEM
  7. source_urls = ['https://registrationcenter-download.intel.com/akdlm/irc_nas/tec/17117/']
  8. sources = ['parallel_studio_xe_%(version_major)s_update%(version_minor)s_composer_edition.tgz']
  9. patches = ['iccifort-%(version)s_no_mpi_rt_dependency.patch']
  10. checksums = [
  11. # parallel_studio_xe_2020_update3_composer_edition.tgz
  12. 'ac1efeff608a8c3a416e6dfe20364061e8abf62d35fbaacdffe3fc9676fc1aa3',
  13. # iccifort-2020.4.304_no_mpi_rt_dependency.patch
  14. 'c330473fc452214b5fffafc5dc962e99fd369582ff9efeda6548b5895a67abb1',
  15. ]
  16. local_gccver = '10.2.0'
  17. dependencies = [
  18. ('GCCcore', local_gccver),
  19. ('binutils', '2.35', '', ('GCCcore', local_gccver)),
  20. ]
  21. # list of regex for components to install
  22. # full list of components can be obtained from pset/mediaconfig.xml in unpacked sources
  23. # cfr. https://software.intel.com/en-us/articles/intel-composer-xe-2015-silent-installation-guide
  24. components = [
  25. 'intel-comp', 'intel-ccomp', 'intel-fcomp', 'intel-icc', 'intel-ifort',
  26. 'intel-openmp', 'intel-ipsc?_', 'intel-gdb(?!.*mic)'
  27. ]
  28. dontcreateinstalldir = True
  29. license_file = '/opt/easybuild/configs/utils/license_intel_all.lic'
  30. moduleclass = 'compiler'