This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# creates a symbolic link from bin-x.x to bin | |
# This just strips off last 3 characters when creating a link | |
LLVMFILES=/usr/bin/llvm* | |
CLANGFILES=/usr/bin/clang* | |
LLC=/usr/bin/llc-17 | |
OPT=/usr/bin/opt-17 | |
LLD=/usr/bin/lld-17 |