Update default on Windows to 17.0.3, Linux to 17.0.2, and the "default" to 17.0.3.

This commit is contained in:
Iain Chesworth 2023-10-21 23:31:38 +11:00
parent 0af408ae6a
commit f1914d3936
1 changed files with 3 additions and 3 deletions

View File

@ -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"
}
}