# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild easyblock = "Toolchain" name = 'iccifort' version = '2016.1.150' homepage = 'http://software.intel.com/en-us/intel-cluster-toolkit-compiler/' description = """Intel Cluster Toolkit Compiler Edition provides Intel C,C++ and fortran compilers, Intel MPI and Intel MKL""" toolchain = {'name': 'dummy', 'version': 'dummy'} dependencies = [ ('icc', version), ('ifort', version), ] moduleclass = 'toolchain' # Salomon specific optimalization modextravars = { 'CC': 'icc', 'CXX': 'icpc', 'F90': 'ifort', 'F77': 'ifort', 'FC': 'ifort', 'OPTFLAGS': '-O3 -xHost -ip', 'DEBUGFLAGS': '-O0 -g' }