-
Notifications
You must be signed in to change notification settings - Fork 440
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump LLVM to Version 16 #1357
Bump LLVM to Version 16 #1357
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #1357 +/- ##
==========================================
- Coverage 66.27% 66.13% -0.15%
==========================================
Files 227 227
Lines 24653 24648 -5
==========================================
- Hits 16340 16302 -38
- Misses 8313 8346 +33
|
if [ $? -eq 0 ]; then | ||
echo "Homebrew installation completed." | ||
else | ||
echo "Homebrew installation failed." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
terminate once failed.
build.sh
Outdated
build_llvm_from_source | ||
if [[ "$sysOS" = "Darwin" ]]; then | ||
echo "Installing LLVM binary for $OSDisplayName" | ||
brew install llvm@16 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
try to use macro rather than llvm@16
build.sh
Outdated
echo "LLVM binary installation failed." | ||
exit 1 | ||
fi | ||
export LLVM_DIR="$(brew --prefix llvm@16)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replace llvm@16 with a macro
@@ -15,18 +15,16 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) | |||
SVFHOME="${SCRIPT_DIR}" | |||
sysOS=$(uname -s) | |||
arch=$(uname -m) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
majorLLVMVer=16
LLVMVer=$(majorLLVMVer).0.0
No description provided.