Skip to content

Commit 0af408a

Browse files
committed
Add support for LLVM 17 on Windows, Linux.
1 parent a296e2c commit 0af408a

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
@@ -69,6 +69,9 @@ export const VERSIONS: Set<string> = getVersions([
6969
"16.0.4",
7070
"16.0.5",
7171
"16.0.6",
72+
"17.0.1",
73+
"17.0.2",
74+
"17.0.3",
7275
])
7376

7477
/** The LLVM versions that were never released for the Windows platform. */
@@ -101,6 +104,9 @@ const DARWIN_MISSING = new Set([
101104
"16.0.4",
102105
"16.0.5",
103106
"16.0.6",
107+
"17.0.1",
108+
"17.0.2",
109+
"17.0.3",
104110
])
105111

106112
/**
@@ -162,10 +168,11 @@ const UBUNTU_SUFFIX_MAP: { [key: string]: string } = {
162168
"16.0.2": "-ubuntu-22.04",
163169
"16.0.3": "-ubuntu-22.04",
164170
"16.0.4": "-ubuntu-22.04",
171+
"17.0.2": "-ubuntu-22.04",
165172
}
166173

167174
/** The latest supported LLVM version for the Linux (Ubuntu) platform. */
168-
const MAX_UBUNTU: string = "16.0.4"
175+
const MAX_UBUNTU: string = "17.0.2"
169176

170177
//================================================
171178
// URL

0 commit comments

Comments
 (0)