Hi Franky,
On 03/06/15 14:18, Backeljauw Franky wrote:
Hello,
We have a new EasyConfig file SOBAcl-r18.eb which has this in it:
easyblock = "Tarball"
name = 'SOBAcl'
version = 'r18'
toolchain = {'name': 'dummy', 'version': 'dummy'}
dependencies = [('GraphViz', '2.18-intel-2014b-Perl-5.20.0')]
if you set the toolchain to intel-2015a change this to
dependencies = [('GraphViz', '2.18', '-Perl-5.20.0', True)]
True means, use the toolchain that's used for this easyconfig.
or if you keep dummy dummy you can specify:
dependencies = [('GraphViz', '2.18', 'Perl-5.20.0'', ('intel', '2015a')]
see
http://easybuild.readthedocs.org/en/latest/Writing_easyconfig_files.html#dependencies
and possibly make this perl version a variable somewhere
Regards,
Jens Timmerman
— Many thanks for your reply,
Franky