Files
modules/doc/example/compiler-etc-dependencies/modulerc4/intel/common
Xavier Delaruelle 410bd79d5e doc: normalize code of modulefile of compiler-etc-depend recipe
And include these modulefile examples as Tcl code in recipe document to
get their content highlighted.
2020-02-21 22:41:46 +01:00

39 lines
846 B
Plaintext

# Example modulefiles for compiler-etc-dependency cookbook
#
# Common stuff for intel
#
# Expects version to have been previously set
proc ModulesHelp { } {
global version
puts stderr "
This is the dummy Intel compiler suite modulefile for the cookbook
Handling Compiler and other Package Dependencies
It does not actually do anything
Version: $version
"
}
module-whatis "Dummy Intel $version for cookbook"
# Find the software root. In production, you should
# hardcode to your real software root
set gitroot $::env(MOD_GIT_ROOTDIR)
set swroot $gitroot/doc/example/compiler-etc-dependencies/dummy-sw-root
set pkgroot $swroot/intel
set vroot $pkgroot/$version
set bindir $vroot/bin
prepend-path PATH $bindir
# don't load multiple versions of this module (or other compilers)
conflict gcc
conflict gnu
conflict pgi
conflict intel