mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-13 10:21:22 +01:00
39 lines
858 B
Plaintext
39 lines
858 B
Plaintext
# Built with EasyBuild version 2.2.0dev on 2015-06-29_10-00-02
|
|
name = 'icc'
|
|
version = '2015.3.187'
|
|
|
|
homepage = 'http://software.intel.com/en-us/intel-compilers/'
|
|
description = "C and C++ compiler from Intel"
|
|
|
|
toolchain = {'name': 'dummy', 'version': 'dummy'}
|
|
|
|
sources = ['l_ccompxe_%(version)s.tgz']
|
|
|
|
gnu = 'GNU'
|
|
gnuver = '5.1.0-2.25'
|
|
versionsuffix = '-%s-%s' % (gnu, gnuver)
|
|
|
|
dependencies = [(gnu, gnuver)]
|
|
|
|
dontcreateinstalldir = 'True'
|
|
|
|
# license file
|
|
import os
|
|
license_file = os.path.join(os.getenv('HOME'), "licenses", "intel", "license.lic")
|
|
|
|
moduleclass = 'compiler'
|
|
|
|
# MIC paths
|
|
micldpath = 'composer_xe_%s/compiler/lib/mic/' % version
|
|
modextrapaths = {
|
|
'MIC_LD_LIBRARY_PATH' : [ micldpath ],
|
|
}
|
|
|
|
# Salomon specific optimalization
|
|
modextravars = {
|
|
'CC': 'icc',
|
|
'CXX': 'icpc',
|
|
'OPTFLAGS': '-O3 -xHost -ip',
|
|
'DEBUGFLAGS': '-O0 -g'
|
|
}
|