File: common_utilities.tcl

package info (click to toggle)
modules 4.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 19,932 kB
  • sloc: exp: 35,889; ansic: 10,653; sh: 3,920; makefile: 1,316; tcl: 612; csh: 178; python: 169; perl: 118; ruby: 44
file content (28 lines) | stat: -rw-r--r-- 1,042 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# =========================================================
# Author: Tom Payerle <payerle@umd.edu>

# This file is a collection of common utilities (Tcl Procedures)
# used by the the cookbook "Compiler, etc. Dependencies"
# Particularly for the homebrewed flavors and modulerc flavors strategy

# In production, all of these utilities would likely be best put in
# a site configuration file and registered, as per the cookbook
# "Expose procedures and variables to modulefiles"
#
# In lieu of that (e.g. modulecmd version < 4.2.4), at least put in
# a single file.
#
# We only split up the files to make for better displaying in the
# cookbook.
#
# This file assumes the Tcl variable $tcllibdir has been set and
# points to the location of this directory.

source $tcllibdir/WarningUtils.tcl
source $tcllibdir/LoadedModules.tcl
source $tcllibdir/CompilerUtils.tcl
source $tcllibdir/MpiUtils.tcl
source $tcllibdir/ChildModules.tcl
source $tcllibdir/GetFamVer.tcl
source $tcllibdir/LoadedCompMatches.tcl
source $tcllibdir/LoadedMpiMatches.tcl