infra: Update to LLVM 17 #519

Merged
GabCoolDude merged 6 commits from fixmacosbuilds into master 2025-01-12 20:57:57 +00:00
Showing only changes of commit 0e763de334 - Show all commits

View File

@ -26,7 +26,7 @@ else:
LIPO = shutil.which("llvm-lipo")
if LIPO is None:
for llvm_ver in [15, 14, 13]:
for llvm_ver in [17, 16, 15, 14, 13]:
lipo_path = shutil.which(f"llvm-lipo-{llvm_ver}")
if lipo_path is not None:
LIPO = lipo_path