Skip to content

Commit

Permalink
Add support for LLVM 17
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleMayes committed Oct 10, 2023
1 parent a54e767 commit 54595e5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
11 changes: 8 additions & 3 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ const VERSIONS: Set<string> = getVersions([
"14.0.0", "14.0.1", "14.0.2", "14.0.3", "14.0.4", "14.0.5", "14.0.6",
"15.0.0", "15.0.1", "15.0.2", "15.0.3", "15.0.4", "15.0.5", "15.0.6", "15.0.7",
"16.0.0", "16.0.1", "16.0.2", "16.0.3", "16.0.4", "16.0.5", "16.0.6",
"17.0.1", "17.0.2",
]);

/** Gets the ordering of two (specific or minimum) LLVM versions. */
Expand Down Expand Up @@ -148,6 +149,8 @@ const DARWIN_MISSING: Set<string> = new Set([
"16.0.4",
"16.0.5",
"16.0.6",
"17.0.1",
"17.0.2",
]);

/** The Darwin version suffixes which are applied for some releases. */
Expand Down Expand Up @@ -242,6 +245,7 @@ const UBUNTU: { [key: string]: string } = {
"16.0.2": "-ubuntu-22.04",
"16.0.3": "-ubuntu-22.04",
"16.0.4": "-ubuntu-22.04",
"17.0.2": "-ubuntu-22.04",
};

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

0 comments on commit 54595e5

Please sign in to comment.