Examples and tests for the SystemC-Components
https://www.minres.com/#opensource
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
514 B
16 lines
514 B
#%Module######################################################################
|
|
##
|
|
## Project Module
|
|
##
|
|
proc ModulesHelp { } {
|
|
puts stderr "\tThe SCC Tests Project Module\n"
|
|
puts stderr "\tThis module loads PATHs and variables for SCC tests."
|
|
}
|
|
|
|
set distro [exec /usr/bin/lsb_release -i -s]
|
|
if { $distro == "CentOS" && ![info exists ::env(PROJECT)] && ![info exists ::env(PCP_DIR)] } {
|
|
puts stderr "Don't forget to execute 'scl enable devtoolset-7 llvm-toolset-7 bash'"
|
|
}
|
|
|
|
module load tools/cmake
|
|
|
|
|