update package name in OPTIONAL_DEPS

The pkgbase was renamed from mingw-w64-clang to mingw-w64-llvm, but this still had the old name, requiring manual specification of breaking the cycle with libc++
This commit is contained in:
jeremyd2019 2024-11-12 14:25:17 -08:00 committed by GitHub
parent acafab9b5f
commit 5f54714429
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -84,6 +84,6 @@ class Config:
OPTIONAL_DEPS: Dict[str, List[str]] = {
"mingw-w64-headers-git": ["mingw-w64-winpthreads-git", "mingw-w64-tools-git"],
"mingw-w64-crt-git": ["mingw-w64-winpthreads-git"],
"mingw-w64-clang": ["mingw-w64-libc++"],
"mingw-w64-llvm": ["mingw-w64-libc++"],
}
"""XXX: In case of cycles we mark these deps as optional"""