Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/add support for llvm 17 #209

Merged
merged 3 commits into from
Oct 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/llvm/llvm_url.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ export const VERSIONS: Set<string> = getVersions([
"16.0.4",
"16.0.5",
"16.0.6",
"17.0.1",
"17.0.2",
"17.0.3",
])

/** The LLVM versions that were never released for the Windows platform. */
Expand Down Expand Up @@ -101,6 +104,9 @@ const DARWIN_MISSING = new Set([
"16.0.4",
"16.0.5",
"16.0.6",
"17.0.1",
"17.0.2",
"17.0.3",
])

/**
Expand Down Expand Up @@ -162,10 +168,11 @@ const UBUNTU_SUFFIX_MAP: { [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. */
const MAX_UBUNTU: string = "16.0.4"
const MAX_UBUNTU: string = "17.0.2"

//================================================
// URL
Expand Down
18 changes: 9 additions & 9 deletions src/versions/default_versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ import { isArch } from "../utils/env/isArch"
function getLLVMDefault() {
switch (process.platform) {
case "win32":
return "16.0.6"
return "17.0.3"
case "linux":
// used for non-ubuntu (Fedora, Arch)
return "16.0.4-ubuntu-22.04"
return "17.0.2-ubuntu-22.04"
case "darwin":
return "15.0.3"
default:
return "16.0.6"
return "17.0.3"
}
}

Expand Down Expand Up @@ -54,22 +54,22 @@ export const DefaultLinuxVersion: Record<string, Record<number, string> | undefi
20: "7.0.0-2",
},
llvm: {
22: "16.0.4-ubuntu-22.04",
20: "16.0.4-ubuntu-22.04",
22: "17.0.2-ubuntu-22.04",
20: "17.0.2-ubuntu-22.04",
18: "15.0.6-ubuntu-18.04",
16: "15.0.6-ubuntu-18.04",
14: "13.0.0-ubuntu-16.04",
},
clangtidy: {
22: "16.0.4-ubuntu-22.04",
20: "16.0.4-ubuntu-22.04",
22: "17.0.2-ubuntu-22.04",
20: "17.0.2-ubuntu-22.04",
18: "15.0.6-ubuntu-18.04",
16: "15.0.6-ubuntu-18.04",
14: "13.0.0-ubuntu-16.04",
},
clangformat: {
22: "16.0.4-ubuntu-22.04",
20: "16.0.4-ubuntu-22.04",
22: "17.0.2-ubuntu-22.04",
20: "17.0.2-ubuntu-22.04",
18: "15.0.6-ubuntu-18.04",
16: "15.0.6-ubuntu-18.04",
14: "13.0.0-ubuntu-16.04",
Expand Down