feat: support up to LLVM 15.0.6

This commit is contained in:
Amin Yahyaabadi 2022-12-06 20:46:52 -08:00
parent 24f1544102
commit cd3be8a4d2
1 changed files with 8 additions and 1 deletions

View File

@ -57,6 +57,11 @@ export const VERSIONS: Set<string> = getVersions([
"15.0.0",
"15.0.1",
"15.0.2",
"15.0.3",
"15.0.4",
// missing binaries for Windows
// "15.0.5",
// "15.0.6",
])
/** The LLVM versions that were never released for the Darwin platform. */
@ -129,10 +134,12 @@ const UBUNTU_SUFFIX_MAP: { [key: string]: string } = {
"14.0.0": "-ubuntu-18.04",
// "14.0.1": "-ubuntu-18.04", // only available for powerpc64le
"15.0.2": "-rhel86",
"15.0.5": "-ubuntu-18.04",
"15.0.6": "-ubuntu-18.04",
}
/** The latest supported LLVM version for the Linux (Ubuntu) platform. */
const MAX_UBUNTU: string = "15.0.2"
const MAX_UBUNTU: string = "15.0.6"
//================================================
// URL