Skip to content

Commit

Permalink
build(clang): update clang to version 19.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Silverlan committed Oct 10, 2024
1 parent cc397b2 commit 2d32f9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build_scripts/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,10 @@
if platform == "linux":
curDir = os.getcwd()
os.chdir(deps_dir)
clang19_root = os.getcwd() +"/LLVM-19.1.0-Linux-X64"
clang19_root = os.getcwd() +"/LLVM-19.1.1-Linux-X64"
if not Path(clang19_root).is_dir():
print_msg("Downloading clang-19...")
http_extract("https://github.com/llvm/llvm-project/releases/download/llvmorg-19.1.0/LLVM-19.1.0-Linux-X64.tar.xz",format="tar.xz")
http_extract("https://github.com/llvm/llvm-project/releases/download/llvmorg-19.1.1/LLVM-19.1.1-Linux-X64.tar.xz",format="tar.xz")
c_compiler = clang19_root +"/bin/clang"
cxx_compiler = clang19_root +"/bin/clang++"
print_msg("Setting c_compiler override to '" +c_compiler +"'")
Expand Down

0 comments on commit 2d32f9d

Please sign in to comment.