Skip to content

Commit 9cfd35d

Browse files
authoredJul 19, 2023
fix: reverting migration to electron-rebuild since Cxx flags were back-ported to latest versions of electron (#7668)
1 parent a86e189 commit 9cfd35d

File tree

10 files changed

+282
-622
lines changed

10 files changed

+282
-622
lines changed
 

‎.changeset/fast-plums-play.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"app-builder-lib": patch
3+
"electron-builder": patch
4+
---
5+
6+
fix: reverting migration to electron-rebuild to resolve native prebuilt modules issue

‎packages/app-builder-lib/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
"@develar/schema-utils": "~2.6.5",
5151
"@electron/notarize": "^1.2.3",
5252
"@electron/osx-sign": "^1.0.4",
53-
"@electron/rebuild": "3.2.13",
5453
"@electron/universal": "1.3.4",
5554
"@malept/flatpak-bundler": "^0.4.0",
5655
"@types/fs-extra": "9.0.13",

‎packages/app-builder-lib/src/electron/electronVersion.ts

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { getProjectRootPath } from "@electron/rebuild/lib/search-module"
21
import { InvalidConfigurationError, log } from "builder-util"
32
import { parseXml } from "builder-util-runtime"
43
import { httpExecutor } from "builder-util/out/nodeHttpExecutor"
@@ -57,15 +56,8 @@ export async function computeElectronVersion(projectDir: string): Promise<string
5756
return result
5857
}
5958

60-
const potentialRootDirs = [projectDir, await getProjectRootPath(projectDir)]
61-
let dependency: NameAndVersion | null = null
62-
for await (const dir of potentialRootDirs) {
63-
const metadata = await orNullIfFileNotExist(readJson(path.join(dir, "package.json")))
64-
dependency = metadata ? findFromPackageMetadata(metadata) : null
65-
if (dependency) {
66-
break
67-
}
68-
}
59+
const metadata = await orNullIfFileNotExist(readJson(path.join(projectDir, "package.json")))
60+
const dependency = metadata ? findFromPackageMetadata(metadata) : null
6961
if (dependency?.name === "electron-nightly") {
7062
log.info("You are using a nightly version of electron, be warned that those builds are highly unstable.")
7163
const feedXml = await httpExecutor.request({

‎packages/app-builder-lib/src/packager.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ export class Packager {
495495
const frameworkInfo = { version: this.framework.version, useCustomDist: true }
496496
const config = this.config
497497
if (config.nodeGypRebuild === true) {
498-
await nodeGypRebuild(frameworkInfo, arch, platform)
498+
await nodeGypRebuild(platform.nodeName, Arch[arch], frameworkInfo)
499499
}
500500

501501
if (config.npmRebuild === false) {
@@ -526,6 +526,7 @@ export class Packager {
526526
frameworkInfo,
527527
platform: platform.nodeName,
528528
arch: Arch[arch],
529+
productionDeps: this.getNodeDependencyInfo(null),
529530
})
530531
}
531532
}

‎packages/app-builder-lib/src/util/packageMetadata.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ export function checkMetadata(metadata: Metadata, devMetadata: any | null, appPa
6868
}
6969

7070
const devDependencies = (metadata as any).devDependencies
71-
if (devDependencies != null && "@electron/rebuild" in devDependencies) {
71+
if (devDependencies != null && ("electron-rebuild" in devDependencies || "@electron/rebuild" in devDependencies)) {
7272
log.info(
73-
'@electron/rebuild is already incorporated into electron-builder, please consider to remove excess dependency from devDependencies\n\nTo ensure your native dependencies are always matched electron version, simply add script `"postinstall": "electron-builder install-app-deps" to your `package.json`'
73+
'@electron/rebuild not required if you use electron-builder, please consider to remove excess dependency from devDependencies\n\nTo ensure your native dependencies are always matched electron version, simply add script `"postinstall": "electron-builder install-app-deps" to your `package.json`'
7474
)
7575
}
7676

@@ -110,7 +110,7 @@ function checkDependencies(dependencies: { [key: string]: string } | null | unde
110110
errors.push(`At least electron-builder-squirrel-windows 20.32.0 is required by current electron-builder version. Please set electron-builder-squirrel-windows to "^20.32.0"`)
111111
}
112112

113-
const deps = ["electron", "electron-prebuilt", "@electron/rebuild"]
113+
const deps = ["electron", "electron-prebuilt", "electron-rebuild"]
114114
if (process.env.ALLOW_ELECTRON_BUILDER_AS_PRODUCTION_DEPENDENCY !== "true") {
115115
deps.push("electron-builder")
116116
}

‎packages/app-builder-lib/src/util/yarn.ts

+42-31
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,32 @@
1-
import { Arch, archFromString, asArray, log, spawn } from "builder-util"
1+
import { asArray, log, spawn } from "builder-util"
22
import { pathExists } from "fs-extra"
3+
import { Lazy } from "lazy-val"
34
import { homedir } from "os"
45
import * as path from "path"
56
import { Configuration } from "../configuration"
6-
import * as electronRebuild from "@electron/rebuild/lib/rebuild"
7-
import * as searchModule from "@electron/rebuild/lib/search-module"
8-
import { EventEmitter } from "events"
9-
import { Platform } from "../core"
7+
import { executeAppBuilderAndWriteJson } from "./appBuilder"
8+
import { NodeModuleDirInfo } from "./packageDependencies"
109

1110
export async function installOrRebuild(config: Configuration, appDir: string, options: RebuildOptions, forceInstall = false) {
11+
const effectiveOptions = {
12+
buildFromSource: config.buildDependenciesFromSource === true,
13+
additionalArgs: asArray(config.npmArgs),
14+
...options,
15+
}
1216
let isDependenciesInstalled = false
17+
1318
for (const fileOrDir of ["node_modules", ".pnp.js"]) {
1419
if (await pathExists(path.join(appDir, fileOrDir))) {
1520
isDependenciesInstalled = true
21+
1622
break
1723
}
1824
}
1925

2026
if (forceInstall || !isDependenciesInstalled) {
21-
const effectiveOptions: RebuildOptions = {
22-
buildFromSource: config.buildDependenciesFromSource === true,
23-
additionalArgs: asArray(config.npmArgs),
24-
...options,
25-
}
2627
await installDependencies(appDir, effectiveOptions)
2728
} else {
28-
const arch = archFromString(options.arch || process.arch)
29-
const platform = Platform.fromString(options.platform || process.platform)
30-
await rebuild(appDir, config.buildDependenciesFromSource === true, options.frameworkInfo, arch, platform)
29+
await rebuild(appDir, effectiveOptions)
3130
}
3231
}
3332

@@ -120,8 +119,23 @@ function installDependencies(appDir: string, options: RebuildOptions): Promise<a
120119
})
121120
}
122121

123-
export async function nodeGypRebuild(frameworkInfo: DesktopFrameworkInfo, arch: Arch, platform: Platform) {
124-
return rebuild(process.cwd(), false, frameworkInfo, arch, platform)
122+
export async function nodeGypRebuild(platform: NodeJS.Platform, arch: string, frameworkInfo: DesktopFrameworkInfo) {
123+
log.info({ platform, arch }, "executing node-gyp rebuild")
124+
// this script must be used only for electron
125+
const nodeGyp = `node-gyp${process.platform === "win32" ? ".cmd" : ""}`
126+
const args = ["rebuild"]
127+
// headers of old Electron versions do not have a valid config.gypi file
128+
// and --force-process-config must be passed to node-gyp >= 8.4.0 to
129+
// correctly build modules for them.
130+
// see also https://github.com/nodejs/node-gyp/pull/2497
131+
const [major, minor] = frameworkInfo.version
132+
.split(".")
133+
.slice(0, 2)
134+
.map(n => parseInt(n, 10))
135+
if (major <= 13 || (major == 14 && minor <= 1) || (major == 15 && minor <= 2)) {
136+
args.push("--force-process-config")
137+
}
138+
await spawn(nodeGyp, args, { env: getGypEnv(frameworkInfo, platform, arch, true) })
125139
}
126140

127141
function getPackageToolPath() {
@@ -139,6 +153,7 @@ function isRunningYarn(execPath: string | null | undefined) {
139153

140154
export interface RebuildOptions {
141155
frameworkInfo: DesktopFrameworkInfo
156+
productionDeps?: Lazy<Array<NodeModuleDirInfo>>
142157

143158
platform?: NodeJS.Platform
144159
arch?: string
@@ -149,21 +164,17 @@ export interface RebuildOptions {
149164
}
150165

151166
/** @internal */
152-
export async function rebuild(appDir: string, buildFromSource: boolean, frameworkInfo: DesktopFrameworkInfo, arch: Arch, platform: Platform) {
153-
log.info({ arch: Arch[arch], platform: platform.name, version: frameworkInfo.version, appDir }, "executing @electron/rebuild")
154-
const rootPath = await searchModule.getProjectRootPath(appDir)
155-
const rebuilderOptions: electronRebuild.RebuilderOptions = {
156-
buildPath: appDir,
157-
electronVersion: frameworkInfo.version,
158-
arch: Arch[arch],
159-
projectRootPath: rootPath,
160-
disablePreGypCopy: true,
161-
lifecycle: new EventEmitter(),
162-
}
163-
if (buildFromSource) {
164-
rebuilderOptions.prebuildTagPrefix = "totally-not-a-real-prefix-to-force-rebuild"
167+
export async function rebuild(appDir: string, options: RebuildOptions) {
168+
const configuration: any = {
169+
dependencies: await options.productionDeps!.value,
170+
nodeExecPath: process.execPath,
171+
platform: options.platform || process.platform,
172+
arch: options.arch || process.arch,
173+
additionalArgs: options.additionalArgs,
174+
execPath: process.env.npm_execpath || process.env.NPM_CLI_JS,
175+
buildFromSource: options.buildFromSource === true,
165176
}
166-
const rebuilder = new electronRebuild.Rebuilder(rebuilderOptions)
167-
rebuilder.platform = platform.nodeName
168-
return rebuilder.rebuild()
177+
178+
const env = getGypEnv(options.frameworkInfo, configuration.platform, configuration.arch, options.buildFromSource === true)
179+
await executeAppBuilderAndWriteJson(["rebuild-node-modules"], configuration, { env, cwd: appDir })
169180
}

‎packages/electron-builder/src/cli/cli.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,5 @@ async function checkIsOutdated() {
7878
async function rebuildAppNativeCode(args: any) {
7979
const projectDir = process.cwd()
8080
// this script must be used only for electron
81-
return nodeGypRebuild({ version: await getElectronVersion(projectDir), useCustomDist: true }, args.arch, args.platform)
81+
return nodeGypRebuild(args.platform, args.arch, { version: await getElectronVersion(projectDir), useCustomDist: true })
8282
}

‎pnpm-lock.yaml

+16-573
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎test/snapshots/BuildTest.js.snap

+209
Original file line numberDiff line numberDiff line change
@@ -957,6 +957,130 @@ Object {
957957
},
958958
"unpacked": true,
959959
},
960+
"lzma-native": Object {
961+
"files": Object {
962+
"LICENSE": Object {
963+
"size": "<size>",
964+
},
965+
"bin": Object {
966+
"files": Object {
967+
"lzmajs": Object {
968+
"executable": true,
969+
"size": "<size>",
970+
},
971+
},
972+
},
973+
"index.js": Object {
974+
"size": "<size>",
975+
},
976+
"liblzma-build.sh": Object {
977+
"executable": true,
978+
"size": "<size>",
979+
},
980+
"liblzma-config.sh": Object {
981+
"executable": true,
982+
"size": "<size>",
983+
},
984+
"package.json": Object {
985+
"size": "<size>",
986+
},
987+
"prebuilds": Object {
988+
"files": Object {
989+
"darwin-arm64": Object {
990+
"files": Object {
991+
"electron.napi.node": Object {
992+
"size": "<size>",
993+
},
994+
"node.napi.node": Object {
995+
"size": "<size>",
996+
},
997+
},
998+
},
999+
"darwin-x64": Object {
1000+
"files": Object {
1001+
"electron.napi.node": Object {
1002+
"size": "<size>",
1003+
},
1004+
"node.napi.node": Object {
1005+
"size": "<size>",
1006+
},
1007+
},
1008+
},
1009+
"linux-arm64": Object {
1010+
"files": Object {
1011+
"electron.napi.node": Object {
1012+
"size": "<size>",
1013+
},
1014+
"node.napi.node": Object {
1015+
"size": "<size>",
1016+
},
1017+
},
1018+
},
1019+
"linux-x64": Object {
1020+
"files": Object {
1021+
"electron.napi.node": Object {
1022+
"size": "<size>",
1023+
},
1024+
"node.napi.node": Object {
1025+
"size": "<size>",
1026+
},
1027+
},
1028+
},
1029+
"win32-ia32": Object {
1030+
"files": Object {
1031+
"electron.napi.node": Object {
1032+
"size": "<size>",
1033+
},
1034+
"node.napi.node": Object {
1035+
"size": "<size>",
1036+
},
1037+
},
1038+
},
1039+
"win32-x64": Object {
1040+
"files": Object {
1041+
"electron.napi.node": Object {
1042+
"size": "<size>",
1043+
},
1044+
"node.napi.node": Object {
1045+
"size": "<size>",
1046+
},
1047+
},
1048+
},
1049+
},
1050+
},
1051+
"src": Object {
1052+
"files": Object {
1053+
"filter-array.cpp": Object {
1054+
"size": "<size>",
1055+
},
1056+
"index-parser.cpp": Object {
1057+
"size": "<size>",
1058+
},
1059+
"index-parser.h": Object {
1060+
"size": "<size>",
1061+
},
1062+
"liblzma-functions.cpp": Object {
1063+
"size": "<size>",
1064+
},
1065+
"liblzma-node.hpp": Object {
1066+
"size": "<size>",
1067+
},
1068+
"lzma-stream.cpp": Object {
1069+
"size": "<size>",
1070+
},
1071+
"module.cpp": Object {
1072+
"size": "<size>",
1073+
},
1074+
"mt-options.cpp": Object {
1075+
"size": "<size>",
1076+
},
1077+
"util.cpp": Object {
1078+
"size": "<size>",
1079+
},
1080+
},
1081+
},
1082+
},
1083+
},
9601084
"mimic-response": Object {
9611085
"files": Object {
9621086
"index.js": Object {
@@ -1197,6 +1321,91 @@ Object {
11971321
},
11981322
},
11991323
},
1324+
"node-addon-api": Object {
1325+
"files": Object {
1326+
"LICENSE.md": Object {
1327+
"size": "<size>",
1328+
},
1329+
"common.gypi": Object {
1330+
"size": "<size>",
1331+
},
1332+
"except.gypi": Object {
1333+
"size": "<size>",
1334+
},
1335+
"index.js": Object {
1336+
"size": "<size>",
1337+
},
1338+
"napi-inl.deprecated.h": Object {
1339+
"size": "<size>",
1340+
},
1341+
"napi-inl.h": Object {
1342+
"size": "<size>",
1343+
},
1344+
"napi.h": Object {
1345+
"size": "<size>",
1346+
},
1347+
"node_api.gyp": Object {
1348+
"size": "<size>",
1349+
},
1350+
"noexcept.gypi": Object {
1351+
"size": "<size>",
1352+
},
1353+
"nothing.c": Object {
1354+
"size": "<size>",
1355+
},
1356+
"package-support.json": Object {
1357+
"size": "<size>",
1358+
},
1359+
"package.json": Object {
1360+
"size": "<size>",
1361+
},
1362+
"tools": Object {
1363+
"files": Object {
1364+
"README.md": Object {
1365+
"size": "<size>",
1366+
},
1367+
"check-napi.js": Object {
1368+
"size": "<size>",
1369+
},
1370+
"clang-format.js": Object {
1371+
"size": "<size>",
1372+
},
1373+
"conversion.js": Object {
1374+
"executable": true,
1375+
"size": "<size>",
1376+
},
1377+
},
1378+
},
1379+
},
1380+
},
1381+
"node-gyp-build": Object {
1382+
"files": Object {
1383+
"LICENSE": Object {
1384+
"size": "<size>",
1385+
},
1386+
"bin.js": Object {
1387+
"executable": true,
1388+
"size": "<size>",
1389+
},
1390+
"build-test.js": Object {
1391+
"executable": true,
1392+
"size": "<size>",
1393+
},
1394+
"index.js": Object {
1395+
"size": "<size>",
1396+
},
1397+
"node-gyp-build.js": Object {
1398+
"size": "<size>",
1399+
},
1400+
"optional.js": Object {
1401+
"executable": true,
1402+
"size": "<size>",
1403+
},
1404+
"package.json": Object {
1405+
"size": "<size>",
1406+
},
1407+
},
1408+
},
12001409
"noop-logger": Object {
12011410
"files": Object {
12021411
"History.md": Object {

‎test/src/BuildTest.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,7 @@ test.ifDevOrLinuxCi(
345345
it.dependencies = {
346346
debug: "4.1.1",
347347
"edge-cs": "1.2.1",
348-
// no prebuilt for electron 3
349-
// "lzma-native": "3.0.10",
348+
"lzma-native": "8.0.6",
350349
keytar: "5.6.0",
351350
}
352351
}),

0 commit comments

Comments
 (0)
Please sign in to comment.