mirror of https://github.com/aminya/setup-cpp
feat: directly download mingw binaries on Windows
This commit is contained in:
parent
bdff7f7943
commit
d24850cd0e
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@ const DefaultVersions: Record<string, string> = {
|
||||||
kcov: "40", // https://github.com/SimonKagstrom/kcov/releases
|
kcov: "40", // https://github.com/SimonKagstrom/kcov/releases
|
||||||
task: "3.12.1", // https://github.com/go-task/task/releases
|
task: "3.12.1", // https://github.com/go-task/task/releases
|
||||||
doxygen: process.platform === "darwin" ? "1.9.3" : "1.9.4", // https://www.doxygen.nl/download.html // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=doxygen
|
doxygen: process.platform === "darwin" ? "1.9.3" : "1.9.4", // https://www.doxygen.nl/download.html // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=doxygen
|
||||||
gcc: process.platform === "win32" ? "11.2.0.07112021" : "11", // https://community.chocolatey.org/packages/mingw#versionhistory and // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=gcc
|
gcc: "11", // https://github.com/brechtsanders/winlibs_mingw/releases and // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=gcc
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Get the default version if passed true or undefined, otherwise return the version itself */
|
/** Get the default version if passed true or undefined, otherwise return the version itself */
|
||||||
|
|
|
@ -7,33 +7,79 @@ import semverMajor from "semver/functions/major"
|
||||||
import semverCoerce from "semver/functions/coerce"
|
import semverCoerce from "semver/functions/coerce"
|
||||||
import { setupMacOSSDK } from "../macos-sdk/macos-sdk"
|
import { setupMacOSSDK } from "../macos-sdk/macos-sdk"
|
||||||
import path from "path"
|
import path from "path"
|
||||||
import { warning, info } from "../utils/io/io"
|
import { warning, info, notice } from "../utils/io/io"
|
||||||
import { isGitHubCI } from "../utils/env/isci"
|
import { isGitHubCI } from "../utils/env/isci"
|
||||||
import { addBinExtension } from "../utils/extension/extension"
|
import { addBinExtension } from "../utils/extension/extension"
|
||||||
|
import { InstallationInfo, PackageInfo, setupBin } from "../utils/setup/setupBin"
|
||||||
|
import { extract7Zip } from "../utils/setup/extract"
|
||||||
|
|
||||||
|
interface MingwInfo {
|
||||||
|
mingwVersion: string
|
||||||
|
llvmVersion?: string
|
||||||
|
number: string
|
||||||
|
runtime: "ucrt" | "msvcrt" // ucrt is the modern runtime and should be preferred
|
||||||
|
}
|
||||||
|
|
||||||
|
const GccToMingwInfo = {
|
||||||
|
"12": { mingwVersion: "10.0.0", number: "r1", runtime: "msvcrt" },
|
||||||
|
"12.1.0-msvcrt": { mingwVersion: "10.0.0", number: "r1", runtime: "msvcrt" },
|
||||||
|
"11": { mingwVersion: "10.0.0", llvmVersion: "14.0.3", number: "r3", runtime: "ucrt" },
|
||||||
|
"11.3.0-ucrt": { mingwVersion: "10.0.0", llvmVersion: "14.0.3", number: "r3", runtime: "ucrt" },
|
||||||
|
"11.3.0-msvcrt": { mingwVersion: "10.0.0", llvmVersion: "14.0.3", number: "r3", runtime: "msvcrt" },
|
||||||
|
"11.2.0-ucrt": { mingwVersion: "9.0.0", number: "r5", runtime: "ucrt" },
|
||||||
|
"11.2.0-msvcrt": { mingwVersion: "9.0.0", number: "r6", runtime: "msvcrt" }, // TODO -w64-
|
||||||
|
} as Record<string, MingwInfo | undefined>
|
||||||
|
|
||||||
|
function getGccPackageInfo(version: string, platform: NodeJS.Platform, arch: string): PackageInfo {
|
||||||
|
switch (platform) {
|
||||||
|
case "win32": {
|
||||||
|
const mingwInfo = GccToMingwInfo[version]
|
||||||
|
if (mingwInfo === undefined) {
|
||||||
|
throw new Error(`mingw version ${version} is not supported`)
|
||||||
|
}
|
||||||
|
const mingwArch = arch === "ia32" ? "i686" : "x86_64"
|
||||||
|
const llvmVersionString = mingwInfo.llvmVersion !== undefined ? `${mingwInfo.llvmVersion}-` : ""
|
||||||
|
return {
|
||||||
|
binRelativeDir: "./bin",
|
||||||
|
binFileName: addBinExtension("g++"),
|
||||||
|
extractedFolderName: "mingw64",
|
||||||
|
extractFunction: extract7Zip,
|
||||||
|
url: `https://github.com/brechtsanders/winlibs_mingw/releases/download/${version}-${llvmVersionString}${mingwInfo.mingwVersion}-${mingwInfo.runtime}-${mingwInfo.number}/winlibs-${mingwArch}-posix-seh-gcc-${version}-mingw-w64${mingwInfo.runtime}-${mingwInfo.mingwVersion}-${mingwInfo.number}.7z`,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
throw new Error(`Unsupported platform '${platform}'`)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
export async function setupGcc(version: string, _setupDir: string, arch: string) {
|
export async function setupGcc(version: string, setupDir: string, arch: string) {
|
||||||
let binDir: string | undefined
|
let installationInfo: InstallationInfo | undefined
|
||||||
switch (process.platform) {
|
switch (process.platform) {
|
||||||
case "win32": {
|
case "win32": {
|
||||||
if (arch === "arm" || arch === "arm64") {
|
if (arch === "arm" || arch === "arm64") {
|
||||||
await setupChocoPack("gcc-arm-embedded", version)
|
await setupChocoPack("gcc-arm-embedded", version)
|
||||||
}
|
}
|
||||||
binDir = await setupChocoMingw(version, arch)
|
try {
|
||||||
|
installationInfo = await setupBin("g++", version, getGccPackageInfo, setupDir, arch)
|
||||||
|
} catch (err) {
|
||||||
|
notice(`Failed to download g++ binary. ${err}. Falling back to chocolatey.`)
|
||||||
|
installationInfo = await setupChocoMingw(version, arch)
|
||||||
|
}
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
case "darwin": {
|
case "darwin": {
|
||||||
binDir = setupBrewPack("gcc", version).binDir
|
installationInfo = setupBrewPack("gcc", version)
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
case "linux": {
|
case "linux": {
|
||||||
if (arch === "x64") {
|
if (arch === "x64") {
|
||||||
setupAptPack("gcc", version, ["ppa:ubuntu-toolchain-r/test"])
|
setupAptPack("gcc", version, ["ppa:ubuntu-toolchain-r/test"])
|
||||||
binDir = setupAptPack("g++", version, []).binDir
|
installationInfo = setupAptPack("g++", version, [])
|
||||||
} else {
|
} else {
|
||||||
info(`Install g++-multilib because gcc for ${arch} was requested`)
|
info(`Install g++-multilib because gcc for ${arch} was requested`)
|
||||||
setupAptPack("gcc-multilib", version, ["ppa:ubuntu-toolchain-r/test"])
|
setupAptPack("gcc-multilib", version, ["ppa:ubuntu-toolchain-r/test"])
|
||||||
binDir = setupAptPack("g++-multilib", version, []).binDir
|
installationInfo = setupAptPack("g++-multilib", version, [])
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
@ -52,14 +98,14 @@ export async function setupGcc(version: string, _setupDir: string, arch: string)
|
||||||
throw new Error(`Unsupported platform for ${arch}`)
|
throw new Error(`Unsupported platform for ${arch}`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (binDir !== undefined) {
|
if (installationInfo !== undefined) {
|
||||||
await activateGcc(version, binDir)
|
await activateGcc(version, installationInfo.binDir)
|
||||||
return { binDir }
|
return installationInfo
|
||||||
}
|
}
|
||||||
return undefined
|
return undefined
|
||||||
}
|
}
|
||||||
|
|
||||||
async function setupChocoMingw(version: string, arch: string) {
|
async function setupChocoMingw(version: string, arch: string): Promise<InstallationInfo | undefined> {
|
||||||
await setupChocoPack("mingw", version)
|
await setupChocoPack("mingw", version)
|
||||||
let binDir: string | undefined
|
let binDir: string | undefined
|
||||||
if (arch === "x64" && existsSync("C:/tools/mingw64/bin")) {
|
if (arch === "x64" && existsSync("C:/tools/mingw64/bin")) {
|
||||||
|
@ -71,7 +117,10 @@ async function setupChocoMingw(version: string, arch: string) {
|
||||||
} else if (existsSync(`${process.env.ChocolateyInstall ?? "C:/ProgramData/chocolatey"}/bin/g++.exe`)) {
|
} else if (existsSync(`${process.env.ChocolateyInstall ?? "C:/ProgramData/chocolatey"}/bin/g++.exe`)) {
|
||||||
binDir = `${process.env.ChocolateyInstall ?? "C:/ProgramData/chocolatey"}/bin`
|
binDir = `${process.env.ChocolateyInstall ?? "C:/ProgramData/chocolatey"}/bin`
|
||||||
}
|
}
|
||||||
return binDir
|
if (binDir !== undefined) {
|
||||||
|
return { binDir }
|
||||||
|
}
|
||||||
|
return undefined
|
||||||
}
|
}
|
||||||
|
|
||||||
async function activateGcc(version: string, binDir: string) {
|
async function activateGcc(version: string, binDir: string) {
|
||||||
|
|
Loading…
Reference in New Issue