mirror of https://github.com/aminya/setup-cpp
207 lines
8.6 KiB
TypeScript
207 lines
8.6 KiB
TypeScript
import { addPath, addEnv } from "../utils/env/addEnv"
|
|
import { existsSync } from "fs"
|
|
import { setupAptPack, updateAptAlternatives } from "../utils/setup/setupAptPack"
|
|
import { setupPacmanPack } from "../utils/setup/setupPacmanPack"
|
|
import { setupBrewPack } from "../utils/setup/setupBrewPack"
|
|
import { setupChocoPack } from "../utils/setup/setupChocoPack"
|
|
import semverMajor from "semver/functions/major"
|
|
import semverCoerce from "semver/functions/coerce"
|
|
import { setupMacOSSDK } from "../macos-sdk/macos-sdk"
|
|
import { join, addExeExt } from "patha"
|
|
import { warning, info } from "ci-log"
|
|
import ciDetect from "@npmcli/ci-detect"
|
|
import { InstallationInfo, PackageInfo, setupBin } from "../utils/setup/setupBin"
|
|
import { extract7Zip } from "../utils/setup/extract"
|
|
import { isArch } from "../utils/env/isArch"
|
|
import { isUbuntu } from "../utils/env/isUbuntu"
|
|
import { hasDnf } from "../utils/env/hasDnf"
|
|
import { setupDnfPack } from "../utils/setup/setupDnfPack"
|
|
|
|
interface MingwInfo {
|
|
releaseName: string
|
|
fileSuffix: string
|
|
}
|
|
|
|
// https://github.com/brechtsanders/winlibs_mingw/releases
|
|
const GccToMingwInfo = {
|
|
"12": { releaseName: "12.2.0-14.0.6-10.0.0-ucrt-r2", fileSuffix: "12.2.0-mingw-w64ucrt-10.0.0-r2" },
|
|
"12.2.0-ucrt": { releaseName: "12.2.0-14.0.6-10.0.0-ucrt-r2", fileSuffix: "12.2.0-mingw-w64ucrt-10.0.0-r2" },
|
|
"12.2.0-msvcrt": { releaseName: "12.2.0-14.0.6-10.0.0-msvcrt-r2", fileSuffix: "12.2.0-mingw-w64msvcrt-10.0.0-r2" },
|
|
"12.1.0-ucrt": { releaseName: "12.1.0-14.0.4-10.0.0-ucrt-r2", fileSuffix: "12.1.0-mingw-w64ucrt-10.0.0-r2" },
|
|
"12.1.0-msvcrt": {
|
|
releaseName: "12.1.0-14.0.6-10.0.0-msvcrt-r3",
|
|
fileSuffix: "12.1.0-llvm-14.0.6-mingw-w64msvcrt-10.0.0-r3",
|
|
},
|
|
"11": { releaseName: "11.3.0-14.0.3-10.0.0-ucrt-r3", fileSuffix: "11.3.0-mingw-w64ucrt-10.0.0-r3" },
|
|
"11.3.0-ucrt": { releaseName: "11.3.0-14.0.3-10.0.0-ucrt-r3", fileSuffix: "11.3.0-mingw-w64ucrt-10.0.0-r3" },
|
|
"11.3.0-msvcrt": { releaseName: "11.3.0-14.0.3-10.0.0-msvcrt-r3", fileSuffix: "11.3.0-mingw-w64msvcrt-10.0.0-r3" },
|
|
"11.2.0-ucrt": { releaseName: "11.2.0-9.0.0-ucrt-r5", fileSuffix: "11.2.0-mingw-w64ucrt-9.0.0-r5" },
|
|
"11.2.0-msvcrt": { releaseName: "11.2.0-9.0.0-msvcrt-r5", fileSuffix: "11.2.0-mingw-w64msvcrt-9.0.0-r5" },
|
|
"10": { releaseName: "10.3.0-12.0.0-9.0.0-r2", fileSuffix: "10.3.0-llvm-12.0.0-mingw-w64-9.0.0-r2" },
|
|
"10.3.0": { releaseName: "10.3.0-12.0.0-9.0.0-r2", fileSuffix: "10.3.0-llvm-12.0.0-mingw-w64-9.0.0-r2" },
|
|
"10.2.0": { releaseName: "10.2.0-7.0.0-r4", fileSuffix: "10.2.0-llvm-10.0.1-mingw-w64-7.0.0-r4" },
|
|
"9": { releaseName: "9.4.0-9.0.0-r1", fileSuffix: "9.4.0-mingw-w64-9.0.0-r1" },
|
|
"9.4.0": { releaseName: "9.4.0-9.0.0-r1", fileSuffix: "9.4.0-mingw-w64-9.0.0-r1" },
|
|
} 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 exceptionModel: "seh" | "dwarf" = "seh" // SEH is native windows exception model https://github.com/brechtsanders/winlibs_mingw/issues/4#issuecomment-599296483
|
|
return {
|
|
binRelativeDir: "bin/",
|
|
binFileName: addExeExt("g++"),
|
|
extractedFolderName: "mingw64",
|
|
extractFunction: extract7Zip,
|
|
url: `https://github.com/brechtsanders/winlibs_mingw/releases/download/${mingwInfo.releaseName}/winlibs-${mingwArch}-posix-${exceptionModel}-gcc-${mingwInfo.fileSuffix}.7z`,
|
|
}
|
|
}
|
|
default:
|
|
throw new Error(`Unsupported platform '${platform}'`)
|
|
}
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
export async function setupGcc(version: string, setupDir: string, arch: string) {
|
|
let installationInfo: InstallationInfo | undefined
|
|
switch (process.platform) {
|
|
case "win32": {
|
|
if (arch === "arm" || arch === "arm64") {
|
|
await setupChocoPack("gcc-arm-embedded", version)
|
|
}
|
|
try {
|
|
installationInfo = await setupBin("g++", version, getGccPackageInfo, setupDir, arch)
|
|
} catch (err) {
|
|
info(`Failed to download g++ binary. ${err}. Falling back to chocolatey.`)
|
|
installationInfo = await setupChocoMingw(version, arch)
|
|
}
|
|
break
|
|
}
|
|
case "darwin": {
|
|
installationInfo = await setupBrewPack("gcc", version)
|
|
break
|
|
}
|
|
case "linux": {
|
|
if (arch === "x64") {
|
|
if (isArch()) {
|
|
installationInfo = setupPacmanPack("gcc", version)
|
|
} else if (hasDnf()) {
|
|
installationInfo = setupDnfPack("gcc", version)
|
|
setupDnfPack("gcc-c++", version)
|
|
setupDnfPack("libstdc++-devel", undefined)
|
|
} else if (isUbuntu()) {
|
|
await setupAptPack("gcc", version, ["ppa:ubuntu-toolchain-r/test"])
|
|
installationInfo = await setupAptPack("g++", version, [])
|
|
}
|
|
} else {
|
|
info(`Install g++-multilib because gcc for ${arch} was requested`)
|
|
if (isArch()) {
|
|
setupPacmanPack("gcc-multilib", version)
|
|
} else if (isUbuntu()) {
|
|
await setupAptPack("gcc-multilib", version, ["ppa:ubuntu-toolchain-r/test"])
|
|
}
|
|
}
|
|
break
|
|
}
|
|
// TODO support bare-metal (need to support passing it as the input)
|
|
// TODO support abi
|
|
// case "none": {
|
|
// if (arch === "arm" || arch === "arm64") {
|
|
// return setupAptPack("gcc-arm-none-eabi", version, [
|
|
// "ppa:ubuntu-toolchain-r/test",
|
|
// ])
|
|
// } else {
|
|
// throw new Error(`Unsupported platform for ${arch}`)
|
|
// }
|
|
// }
|
|
default: {
|
|
throw new Error(`Unsupported platform for ${arch}`)
|
|
}
|
|
}
|
|
if (installationInfo !== undefined) {
|
|
await activateGcc(version, installationInfo.binDir)
|
|
return installationInfo
|
|
}
|
|
return undefined
|
|
}
|
|
|
|
async function setupChocoMingw(version: string, arch: string): Promise<InstallationInfo | undefined> {
|
|
await setupChocoPack("mingw", version)
|
|
let binDir: string | undefined
|
|
if (arch === "x64" && existsSync("C:/tools/mingw64/bin")) {
|
|
binDir = "C:/tools/mingw64/bin"
|
|
await addPath(binDir)
|
|
} else if (arch === "ia32" && existsSync("C:/tools/mingw32/bin")) {
|
|
binDir = "C:/tools/mingw32/bin"
|
|
await addPath(binDir)
|
|
} else if (existsSync(`${process.env.ChocolateyInstall ?? "C:/ProgramData/chocolatey"}/bin/g++.exe`)) {
|
|
binDir = `${process.env.ChocolateyInstall ?? "C:/ProgramData/chocolatey"}/bin`
|
|
}
|
|
if (binDir !== undefined) {
|
|
return { binDir }
|
|
}
|
|
return undefined
|
|
}
|
|
|
|
async function activateGcc(version: string, binDir: string) {
|
|
const promises: Promise<void>[] = []
|
|
// Setup gcc as the compiler
|
|
|
|
// TODO
|
|
// const ld = process.env.LD_LIBRARY_PATH ?? ""
|
|
// const dyld = process.env.DYLD_LIBRARY_PATH ?? ""
|
|
// promises.push(
|
|
// addEnv("LD_LIBRARY_PATH", `${installDir}/lib${path.delimiter}${ld}`),
|
|
// addEnv("DYLD_LIBRARY_PATH", `${installDir}/lib${path.delimiter}${dyld}`),
|
|
// addEnv("CPATH", `${installDir}/lib/gcc/${majorVersion}/include`),
|
|
// addEnv("LDFLAGS", `-L${installDir}/lib`),
|
|
// addEnv("CPPFLAGS", `-I${installDir}/include`)
|
|
// )
|
|
|
|
if (process.platform === "win32") {
|
|
promises.push(addEnv("CC", addExeExt(`${binDir}/gcc`)), addEnv("CXX", addExeExt(`${binDir}/g++`)))
|
|
} else {
|
|
const majorVersion = semverMajor(semverCoerce(version) ?? version)
|
|
if (majorVersion >= 5) {
|
|
promises.push(addEnv("CC", `${binDir}/gcc-${majorVersion}`), addEnv("CXX", `${binDir}/g++-${majorVersion}`))
|
|
|
|
if (isUbuntu()) {
|
|
updateAptAlternatives("cc", `${binDir}/gcc-${majorVersion}`)
|
|
updateAptAlternatives("cxx", `${binDir}/g++-${majorVersion}`)
|
|
updateAptAlternatives("gcc", `${binDir}/gcc-${majorVersion}`)
|
|
updateAptAlternatives("g++", `${binDir}/g++-${majorVersion}`)
|
|
}
|
|
} else {
|
|
promises.push(addEnv("CC", `${binDir}/gcc-${version}`), addEnv("CXX", `${binDir}/g++-${version}`))
|
|
|
|
if (isUbuntu()) {
|
|
updateAptAlternatives("cc", `${binDir}/gcc-${version}`)
|
|
updateAptAlternatives("cxx", `${binDir}/g++-${version}`)
|
|
updateAptAlternatives("gcc", `${binDir}/gcc-${version}`)
|
|
updateAptAlternatives("g++", `${binDir}/g++-${version}`)
|
|
}
|
|
}
|
|
}
|
|
|
|
promises.push(setupMacOSSDK())
|
|
|
|
if (ciDetect() === "github-actions") {
|
|
addGccLoggingMatcher()
|
|
}
|
|
|
|
await Promise.all(promises)
|
|
}
|
|
|
|
function addGccLoggingMatcher() {
|
|
const matcherPath = join(__dirname, "gcc_matcher.json")
|
|
if (!existsSync(matcherPath)) {
|
|
return warning("the gcc_matcher.json file does not exist in the same folder as setup_cpp.js")
|
|
}
|
|
info(`::add-matcher::${matcherPath}`)
|
|
}
|