Files
.dotfiles/zsh/config.d/10-llvm_clang.zsh
2023-08-22 12:07:26 -04:00

6 lines
145 B
Bash

if [[ -d /opt/llvm ]]; then
export PATH=/opt/llvm/bin:$PATH
elif [[ -d /opt/clang+llvm ]]; then
export PATH=/opt/clang+llvm/bin:$PATH
fi