Skip to content

Commit

Permalink
Add support for 11.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleMayes committed Apr 6, 2021
1 parent ca5dc89 commit 0d0423f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4861,7 +4861,7 @@ var VERSIONS = getVersions([
"8.0.0", "8.0.1",
"9.0.0", "9.0.1",
"10.0.0", "10.0.1",
"11.0.0", "11.0.1",
"11.0.0", "11.0.1", "11.1.0",
]);
/** Gets the ordering of two (specific or minimum) LLVM versions. */
function compareVersions(left, right) {
Expand Down Expand Up @@ -4917,6 +4917,7 @@ var DARWIN_MISSING = new Set([
"7.1.0",
"8.0.1",
"11.0.1",
"11.1.0",
]);
/** Gets an LLVM download URL for the Darwin platform. */
function getDarwinUrl(version, options) {
Expand Down Expand Up @@ -4963,6 +4964,7 @@ var UBUNTU = {
"10.0.1": "-ubuntu-16.04",
"11.0.0": "-ubuntu-20.04",
"11.0.1": "-ubuntu-16.04",
"11.1.0": "-ubuntu-16.04",
};
/** The latest supported LLVM version for the Linux (Ubuntu) platform. */
var MAX_UBUNTU = "11.0.0";
Expand Down
4 changes: 3 additions & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const VERSIONS: Set<string> = getVersions([
"8.0.0", "8.0.1",
"9.0.0", "9.0.1",
"10.0.0", "10.0.1",
"11.0.0", "11.0.1",
"11.0.0", "11.0.1", "11.1.0",
]);

/** Gets the ordering of two (specific or minimum) LLVM versions. */
Expand Down Expand Up @@ -110,6 +110,7 @@ const DARWIN_MISSING: Set<string> = new Set([
"7.1.0",
"8.0.1",
"11.0.1",
"11.1.0",
]);

/** Gets an LLVM download URL for the Darwin platform. */
Expand Down Expand Up @@ -158,6 +159,7 @@ const UBUNTU: { [key: string]: string } = {
"10.0.1": "-ubuntu-16.04",
"11.0.0": "-ubuntu-20.04",
"11.0.1": "-ubuntu-16.04",
"11.1.0": "-ubuntu-16.04",
};

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

0 comments on commit 0d0423f

Please sign in to comment.