intel-compilers-2021.4.0.eb 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. name = 'intel-compilers'
  2. version = '2021.4.0'
  3. homepage = 'https://software.intel.com/content/www/us/en/develop/tools/oneapi/hpc-toolkit.html'
  4. description = "Intel C, C++ & Fortran compilers (classic and oneAPI)"
  5. toolchain = SYSTEM
  6. # see https://software.intel.com/content/www/us/en/develop/articles/oneapi-standalone-components.html
  7. sources = [
  8. {
  9. 'source_urls': ['https://registrationcenter-download.intel.com/akdlm/irc_nas/17928/'],
  10. 'filename': 'l_dpcpp-cpp-compiler_p_%(version)s.3168_offline.sh',
  11. },
  12. {
  13. 'source_urls': ['https://registrationcenter-download.intel.com/akdlm/irc_nas/17959/'],
  14. 'filename': 'l_fortran-compiler_p_%(version)s.3168_offline.sh',
  15. },
  16. ]
  17. checksums = [
  18. # l_dpcpp-cpp-compiler_p_2021.3.0.3168_offline.sh
  19. 'f848d81b7cabc76c2841c9757abb2290921efd7b82491d830605f5785600e7a1',
  20. 'c4553f7e707be8e8e196f625e4e7fbc8eff5474f64ab85fc7146b5ed53ebc87c', # l_fortran-compiler_p_2021.3.0.3168_offline.sh
  21. ]
  22. local_gccver = '11.2.0'
  23. dependencies = [
  24. ('GCCcore', local_gccver),
  25. ('binutils', '2.37', '', ('GCCcore', local_gccver)),
  26. ]
  27. moduleclass = 'compiler'