initial commit

This commit is contained in:
2026-01-27 20:45:47 +01:00
commit 1e5eb44ca9
53 changed files with 11048 additions and 0 deletions

15
.envrc Normal file
View File

@@ -0,0 +1,15 @@
distro=`/bin/lsb_release -i -s`
if [ $distro == "CentOS" ]; then
. /opt/rh/devtoolset-8/enable
. /opt/rh/llvm-toolset-7/enable
. /opt/rh/rh-python38/enable
elif [ $distro == "Rocky" ]; then
. /opt/rh/gcc-toolset-11/enable
elif [ $distro == "RockyLinux" ]; then
. /opt/rh/gcc-toolset-14/enable
fi
if has module; then
module load tools/gcc-riscv64-unknown-elf/15 tools/cmake/3.28 tools/utilities tools/vscode
fi
layout python3
[ -f .envrc.$USER ] && . .envrc.$USER