On Linux, setting your preferred directories
first in the PATH variable might work.
export PATH="/home/$USER/bin:$PATH" Then use which to confirm that the correct files are being found. which file The export command will only be effective for the terminal window in which it was executed. You can see how to make the exportedPATH permanent, system-wide by searching the Internet. But then you have to think about when to change the permanent PATH back. Neil Nelson
_______________________________________________ LLVM Developers mailing list llvm...@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev