Skip to content

Commit b532e97

Browse files
committed
fix: update llvm to 17.0.5
1 parent 0f59570 commit b532e97

File tree

8 files changed

+21
-15
lines changed

8 files changed

+21
-15
lines changed

dist/actions/setup-cpp.js

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

dist/actions/setup-cpp.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.

dist/legacy/setup-cpp.js

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

dist/legacy/setup-cpp.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.

dist/modern/setup-cpp.js

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

dist/modern/setup-cpp.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.

src/llvm/llvm_url.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ export const VERSIONS: Set<string> = getVersions([
7272
"17.0.1",
7373
"17.0.2",
7474
"17.0.3",
75+
"17.0.4",
76+
"17.0.5",
7577
])
7678

7779
/** The LLVM versions that were never released for the Windows platform. */
@@ -107,6 +109,8 @@ const DARWIN_MISSING = new Set([
107109
"17.0.1",
108110
"17.0.2",
109111
"17.0.3",
112+
"17.0.4",
113+
"17.0.5",
110114
])
111115

112116
/**
@@ -169,10 +173,12 @@ const UBUNTU_SUFFIX_MAP: { [key: string]: string } = {
169173
"16.0.3": "-ubuntu-22.04",
170174
"16.0.4": "-ubuntu-22.04",
171175
"17.0.2": "-ubuntu-22.04",
176+
"17.0.4": "-ubuntu-22.04",
177+
"17.0.5": "-ubuntu-22.04",
172178
}
173179

174180
/** The latest supported LLVM version for the Linux (Ubuntu) platform. */
175-
const MAX_UBUNTU: string = "17.0.2"
181+
const MAX_UBUNTU: string = "17.0.5"
176182

177183
//================================================
178184
// URL

src/versions/default_versions.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ import { isArch } from "../utils/env/isArch"
66
function getLLVMDefault() {
77
switch (process.platform) {
88
case "win32":
9-
return "17.0.3"
9+
return "17.0.5"
1010
case "linux":
1111
// used for non-ubuntu (Fedora, Arch)
12-
return "17.0.2-ubuntu-22.04"
12+
return "17.0.5-ubuntu-22.04"
1313
case "darwin":
1414
return "15.0.3"
1515
default:
16-
return "17.0.3"
16+
return "17.0.5"
1717
}
1818
}
1919

@@ -54,8 +54,8 @@ export const DefaultLinuxVersion: Record<string, Record<number, string> | undefi
5454
20: "7.0.0-2",
5555
},
5656
llvm: {
57-
22: "17.0.2-ubuntu-22.04",
58-
20: "17.0.2-ubuntu-22.04",
57+
22: "17.0.5-ubuntu-22.04",
58+
20: "17.0.5-ubuntu-22.04",
5959
18: "15.0.6-ubuntu-18.04",
6060
16: "15.0.6-ubuntu-18.04",
6161
14: "13.0.0-ubuntu-16.04",

0 commit comments

Comments
 (0)