Skip to content

Commit 54595e5

Browse files
committed
Add support for LLVM 17
1 parent a54e767 commit 54595e5

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

dist/index.js

Lines changed: 8 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ const VERSIONS: Set<string> = getVersions([
6868
"14.0.0", "14.0.1", "14.0.2", "14.0.3", "14.0.4", "14.0.5", "14.0.6",
6969
"15.0.0", "15.0.1", "15.0.2", "15.0.3", "15.0.4", "15.0.5", "15.0.6", "15.0.7",
7070
"16.0.0", "16.0.1", "16.0.2", "16.0.3", "16.0.4", "16.0.5", "16.0.6",
71+
"17.0.1", "17.0.2",
7172
]);
7273

7374
/** Gets the ordering of two (specific or minimum) LLVM versions. */
@@ -148,6 +149,8 @@ const DARWIN_MISSING: Set<string> = new Set([
148149
"16.0.4",
149150
"16.0.5",
150151
"16.0.6",
152+
"17.0.1",
153+
"17.0.2",
151154
]);
152155

153156
/** The Darwin version suffixes which are applied for some releases. */
@@ -242,6 +245,7 @@ const UBUNTU: { [key: string]: string } = {
242245
"16.0.2": "-ubuntu-22.04",
243246
"16.0.3": "-ubuntu-22.04",
244247
"16.0.4": "-ubuntu-22.04",
248+
"17.0.2": "-ubuntu-22.04",
245249
};
246250

247251
/** The latest supported LLVM version for the Linux (Ubuntu) platform. */

0 commit comments

Comments
 (0)