Skip to content

Commit cd3be8a

Browse files
committed
feat: support up to LLVM 15.0.6
1 parent 24f1544 commit cd3be8a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/llvm/llvm_url.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ export const VERSIONS: Set<string> = getVersions([
5757
"15.0.0",
5858
"15.0.1",
5959
"15.0.2",
60+
"15.0.3",
61+
"15.0.4",
62+
// missing binaries for Windows
63+
// "15.0.5",
64+
// "15.0.6",
6065
])
6166

6267
/** The LLVM versions that were never released for the Darwin platform. */
@@ -129,10 +134,12 @@ const UBUNTU_SUFFIX_MAP: { [key: string]: string } = {
129134
"14.0.0": "-ubuntu-18.04",
130135
// "14.0.1": "-ubuntu-18.04", // only available for powerpc64le
131136
"15.0.2": "-rhel86",
137+
"15.0.5": "-ubuntu-18.04",
138+
"15.0.6": "-ubuntu-18.04",
132139
}
133140

134141
/** The latest supported LLVM version for the Linux (Ubuntu) platform. */
135-
const MAX_UBUNTU: string = "15.0.2"
142+
const MAX_UBUNTU: string = "15.0.6"
136143

137144
//================================================
138145
// URL

0 commit comments

Comments
 (0)