setup-cpp/src/gcc/gcc.ts

132 lines
4.7 KiB
TypeScript
Raw Normal View History

2021-09-18 10:17:21 +08:00
import { addPath } from "../utils/path/addPath"
2021-09-17 04:13:55 +08:00
import { existsSync } from "fs"
2021-09-16 22:03:54 +08:00
import { setupAptPack } from "../utils/setup/setupAptPack"
import { setupBrewPack } from "../utils/setup/setupBrewPack"
import { setupChocoPack } from "../utils/setup/setupChocoPack"
import semverMajor from "semver/functions/major"
import semverCoerce from "semver/functions/coerce"
2021-11-22 01:06:16 +08:00
import { setupMacOSSDK } from "../macos-sdk/macos-sdk"
import { addEnv } from "../utils/env/addEnv"
import path from "path"
import { warning } from "../utils/io/io"
import { isGitHubCI } from "../utils/env/isci"
import { info } from "@actions/core"
2021-09-16 22:03:54 +08:00
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export async function setupGcc(version: string, _setupDir: string, arch: string) {
let binDir: string | undefined
2021-09-16 22:03:54 +08:00
switch (process.platform) {
case "win32": {
if (arch === "arm" || arch === "arm64") {
await setupChocoPack("gcc-arm-embedded", version)
2021-09-16 22:03:54 +08:00
}
await setupChocoPack("mingw", version)
2021-09-17 07:26:57 +08:00
if (arch === "x64" && existsSync("C:/tools/mingw64/bin")) {
binDir = "C:/tools/mingw64/bin"
2021-09-19 16:49:42 +08:00
addPath(binDir)
2021-09-17 07:26:57 +08:00
} else if (arch === "ia32" && existsSync("C:/tools/mingw32/bin")) {
binDir = "C:/tools/mingw32/bin"
2021-09-19 16:49:42 +08:00
addPath(binDir)
} else if (existsSync(`${process.env.ChocolateyInstall ?? "C:/ProgramData/chocolatey"}/bin/g++.exe`)) {
binDir = `${process.env.ChocolateyInstall ?? "C:/ProgramData/chocolatey"}/bin`
}
break
2021-09-16 22:03:54 +08:00
}
case "darwin": {
binDir = setupBrewPack("gcc", version).binDir
break
2021-09-16 22:03:54 +08:00
}
case "linux": {
if (arch === "x64") {
2021-12-07 20:16:31 +08:00
await setupAptPack("gcc", version, [
2021-12-08 04:16:22 +08:00
"deb http://dk.archive.ubuntu.com/ubuntu/ xenial main",
2021-12-08 03:37:01 +08:00
"deb http://dk.archive.ubuntu.com/ubuntu/ xenial universe",
2021-12-07 20:16:31 +08:00
"ppa:ubuntu-toolchain-r/test",
])
binDir = (
await setupAptPack("g++", version, [
2021-12-08 04:16:22 +08:00
"deb http://dk.archive.ubuntu.com/ubuntu/ xenial main",
2021-12-08 03:37:01 +08:00
"deb http://dk.archive.ubuntu.com/ubuntu/ xenial universe",
2021-12-07 20:16:31 +08:00
"ppa:ubuntu-toolchain-r/test",
])
).binDir
2021-09-17 06:00:14 +08:00
} else {
2021-09-17 06:17:32 +08:00
info(`Install g++-multilib because gcc for ${arch} was requested`)
2021-12-07 20:16:31 +08:00
await setupAptPack("gcc-multilib", version, [
2021-12-08 04:16:22 +08:00
"deb http://dk.archive.ubuntu.com/ubuntu/ xenial main",
2021-12-08 03:37:01 +08:00
"deb http://dk.archive.ubuntu.com/ubuntu/ xenial universe",
2021-12-07 20:16:31 +08:00
"ppa:ubuntu-toolchain-r/test",
])
binDir = (
await setupAptPack("g++-multilib", version, [
2021-12-08 04:16:22 +08:00
"deb http://dk.archive.ubuntu.com/ubuntu/ xenial main",
2021-12-08 03:37:01 +08:00
"deb http://dk.archive.ubuntu.com/ubuntu/ xenial universe",
2021-12-07 20:16:31 +08:00
"ppa:ubuntu-toolchain-r/test",
])
).binDir
2021-09-16 22:03:54 +08:00
}
break
2021-09-16 22:03:54 +08:00
}
// TODO support bare-metal (need to support passing it as the input)
2021-09-16 22:03:54 +08:00
// TODO support abi
// case "none": {
// if (arch === "arm" || arch === "arm64") {
// return setupAptPack("gcc-arm-none-eabi", version, [
2021-12-08 04:16:22 +08:00
// "deb http://dk.archive.ubuntu.com/ubuntu/ xenial main",
2021-12-08 03:37:01 +08:00
// "deb http://dk.archive.ubuntu.com/ubuntu/ xenial universe",
2021-12-07 20:16:31 +08:00
// "ppa:ubuntu-toolchain-r/test",
// ])
2021-09-16 22:03:54 +08:00
// } else {
// throw new Error(`Unsupported platform for ${arch}`)
// }
// }
default: {
throw new Error(`Unsupported platform for ${arch}`)
}
}
if (binDir !== undefined) {
2021-11-22 01:06:16 +08:00
await activateGcc(version, binDir)
return { binDir }
}
return undefined
2021-09-16 22:03:54 +08:00
}
2021-09-20 20:25:41 +08:00
2021-11-22 01:06:16 +08:00
async function activateGcc(version: string, binDir: string) {
2021-09-20 20:25:41 +08:00
// TODO
// const ld = process.env.LD_LIBRARY_PATH ?? ""
// const dyld = process.env.DYLD_LIBRARY_PATH ?? ""
// // Setup gcc as the compiler
// 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`)
2021-09-20 20:25:41 +08:00
if (process.platform === "win32") {
addEnv("CC", `${binDir}/gcc`)
addEnv("CXX", `${binDir}/g++`)
2021-09-20 20:25:41 +08:00
} else {
2021-12-07 20:16:31 +08:00
const majorVersion = semverMajor(semverCoerce(version) ?? version)
if (majorVersion >= 5) {
addEnv("CC", `${binDir}/gcc-${majorVersion}`)
addEnv("CXX", `${binDir}/g++-${majorVersion}`)
2021-12-07 20:16:31 +08:00
} else {
addEnv("CC", `${binDir}/gcc-${version}`)
addEnv("CXX", `${binDir}/g++-${version}`)
2021-12-07 20:16:31 +08:00
}
2021-09-20 20:25:41 +08:00
}
2021-11-22 01:06:16 +08:00
await setupMacOSSDK()
if (isGitHubCI()) {
addGccLoggingMatcher()
}
}
function addGccLoggingMatcher() {
const matcherPath = path.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}`)
2021-09-20 20:25:41 +08:00
}