This repository has been archived on 2025-12-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SystemC-Components-Test/.envrc

15 lines
371 B
Plaintext
Raw Normal View History

module load tools/utilities
module load tools/cmake/3.28
module load tools/clang/14.0
module load tools/vscode
2023-12-22 13:48:46 +01:00
distro=`/bin/lsb_release -i -s`
if [ $distro == "CentOS" ]; then
. /opt/rh/devtoolset-8/enable
. /opt/rh/rh-python38/enable
2024-06-04 10:09:24 +02:00
elif [ $distro == "Rocky" ]; then
. /opt/rh/gcc-toolset-11/enable
2023-12-22 13:48:46 +01:00
fi
layout python3
[ -f .envrc.$USER ] && . .envrc.$USER