icc-2016.1.150-GCC-4.9.3-2.25.eb 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. # This is an easyconfig file for EasyBuild, see https://easybuilders.github.io/easybuild/
  2. name = 'icc'
  3. version = '2016.1.150'
  4. homepage = 'https://software.intel.com/en-us/intel-compilers/'
  5. description = "C and C++ compiler from Intel"
  6. toolchain = SYSTEM
  7. sources = ['parallel_studio_xe_%(version_major)s_composer_edition_for_cpp_update%(version_minor)s.tgz']
  8. checksums = ['8b6d11e7c31399ad48f24d08428b8b02a5f9cab20826cc03c2ea7425b54b716e']
  9. local_gccver = '4.9.3'
  10. local_binutilsver = '2.25'
  11. versionsuffix = '-GCC-%s-%s' % (local_gccver, local_binutilsver)
  12. dependencies = [
  13. ('GCCcore', local_gccver),
  14. ('binutils', local_binutilsver, '', ('GCCcore', local_gccver)),
  15. ]
  16. # list of regex for components to install
  17. # full list of components can be obtained from pset/mediaconfig.xml in unpacked sources
  18. # cfr. https://software.intel.com/en-us/articles/intel-composer-xe-2015-silent-installation-guide
  19. components = ['intel-comp', 'intel-ccomp', 'intel-icc', 'intel-openmp', 'intel-ipsc?_']
  20. dontcreateinstalldir = True
  21. license_file = '/opt/easybuild/configs/utils/license_intel_all.lic'
  22. moduleclass = 'compiler'