2020-12-29 09:49:38 +01:00
|
|
|
#%Module######################################################################
|
|
|
|
##
|
|
|
|
## Project Module
|
|
|
|
##
|
|
|
|
proc ModulesHelp { } {
|
|
|
|
puts stderr "\tThe TGFS-ISS Project Module\n"
|
|
|
|
puts stderr "\tThis module loads PATHs and variables for accessing Verilator."
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
set distro [exec /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 bash'"
|
|
|
|
}
|
|
|
|
|
2023-09-30 22:11:48 +02:00
|
|
|
#module load tools/utilities
|
2023-05-02 08:04:28 +02:00
|
|
|
module load tools/cmake
|
|
|
|
#module load tools/gcc-riscv64/9.2.0
|
|
|
|
module load tools/gcc-riscv32-unknown-elf/11
|
2020-12-29 09:49:38 +01:00
|
|
|
|
|
|
|
setenv PROJECT TGFS-ISS
|
|
|
|
|