mirror of
https://github.com/Minres/RISCV-VP.git
synced 2025-12-17 00:41:35 +00:00
15 lines
588 B
Puppet
15 lines
588 B
Puppet
#%Module######################################################################
|
|
##
|
|
## Project Module
|
|
##
|
|
proc ModulesHelp { } {
|
|
puts stderr "\tThe TGC verification project Module\n"
|
|
puts stderr "\tThis module loads PATHs and variables for running TGC verification."
|
|
}
|
|
|
|
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/gcc-riscv64-unknown-elf/13 tools/cmake/3.28 tools/utilities |