20 lines
1001 B
Fish
20 lines
1001 B
Fish
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
|