Skip to content

Commit

Permalink
Update default on Windows to 17.0.3, Linux to 17.0.2, and the "defaul…
Browse files Browse the repository at this point in the history
…t" to 17.0.3.
  • Loading branch information
iainchesworth committed Oct 21, 2023
1 parent 0af408a commit f1914d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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

0 comments on commit f1914d3

Please sign in to comment.