Added many different things

This commit is contained in:
Hannes
2026-04-20 22:08:48 +02:00
parent f4ab71c1fc
commit 95cf86ae5f
7 changed files with 111 additions and 33 deletions
+19
View File
@@ -0,0 +1,19 @@
if test -x /usr/bin/pacman
if test -d ~/Nextcloud/UNI/26_TI/RISC-V
set -U fish_user_paths ~/mount/Storage/Nextcloud/UNI/26_TI/RISC-V/xpack-riscv-none-elf-gcc-15.2.0-1-linux-x64/xpack-riscv-none-elf-gcc-15.2.0-1/bin $fish_user_paths
set -U fish_user_paths ~/mount/Storage/Nextcloud/UNI/26_TI/RISC-V/verible-v0.0-4053-g89d4d98a-linux-static-x86_64/verible-v0.0-4053-g89d4d98a/bin $fish_user_paths
end
if test -d ~/projects/RISC-V
set -gx XILINX_VIVADO ~/projects/RISC-V/vivado/Vivado/2022.2
set -U fish_user_paths ~/projects/RISC-V/vivado/Vivado/2022.2/bin $fish_user_paths
set -gx LM_LICENSE_FILE ~/projects/RISC-V/intel/LR-160568_License.dat
set -gx SALT_LICENSE_SERVER $LM_LICENSE_FILE
set -U fish_user_paths ~/projects/RISC-V/intel/questa_fse/bin $fish_user_paths
end
end
set in_container (test -f /.dockerenv; or test -f /run/.containerenv; and echo yes; or echo no)
if test "in_container" = yes
echo "In Container"
end