mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-13 10:21:22 +01:00
31 lines
1.2 KiB
Plaintext
31 lines
1.2 KiB
Plaintext
# Built with EasyBuild version 2.2.0dev on 2015-06-29_10-00-45
|
|
name = 'impi'
|
|
version = '5.0.3.048'
|
|
|
|
homepage = 'http://software.intel.com/en-us/intel-mpi-library/'
|
|
description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message
|
|
passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for
|
|
Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification."""
|
|
|
|
toolchain = {'name': 'dummy', 'version': 'dummy'}
|
|
|
|
sources = ['l_mpi_p_%(version)s.tgz']
|
|
|
|
dontcreateinstalldir = 'True'
|
|
|
|
# license file
|
|
import os
|
|
license_file = os.path.join(os.getenv('HOME'), "licenses", "intel", "license.lic")
|
|
|
|
moduleclass = 'mpi'
|
|
|
|
# Salomon specific optimalization
|
|
postinstallcmds = [
|
|
'ln -s %(installdir)s/lib64/libmpi.so %(installdir)s/lib64/libmpich.so',
|
|
'ln -s %(installdir)s/lib64/libmpigc4.so %(installdir)s/lib64/libmpichcxx.so',
|
|
'ln -s %(installdir)s/lib64/libmpigf.so %(installdir)s/lib64/libfmpich.so',
|
|
'ln -s %(installdir)s/lib64/libmpigf.so %(installdir)s/lib64/libmpichf90.so',
|
|
'ln -s %(installdir)s/lib64/libmpi.so %(installdir)s/lib64/libmpl.so',
|
|
'ln -s %(installdir)s/lib64/libmpi.so %(installdir)s/lib64/libopa.so'
|
|
]
|