mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 02:26:23 +02:00
infra: Update to LLVM 17 (#519)
This fixes macos builds not building correctly because of a missing LLVM 14 package.
This commit is contained in:
parent
c2ae49eb47
commit
f1dee50275
7 changed files with 12 additions and 12 deletions
|
@ -19,7 +19,7 @@ if platform.system() == "Darwin":
|
|||
else:
|
||||
OTOOL = shutil.which("llvm-otool")
|
||||
if OTOOL is None:
|
||||
for llvm_ver in [15, 14, 13]:
|
||||
for llvm_ver in [17, 16, 15, 14, 13]:
|
||||
otool_path = shutil.which(f"llvm-otool-{llvm_ver}")
|
||||
if otool_path is not None:
|
||||
OTOOL = otool_path
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue