mirror of https://github.com/electron/electron
39 lines
1.2 KiB
Diff
39 lines
1.2 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Shelley Vohr <shelley.vohr@gmail.com>
|
|
Date: Thu, 13 Sep 2018 08:56:07 -0700
|
|
Subject: feat: initialize asar support
|
|
|
|
This patch initializes asar support in Node.js.
|
|
|
|
diff --git a/lib/internal/process/pre_execution.js b/lib/internal/process/pre_execution.js
|
|
index 1f4a08515b5ae9e15ee987d9287f71b0fed3cb30..0dc769846b4e6fe84438cd6d8024c4a89eb90a9b 100644
|
|
--- a/lib/internal/process/pre_execution.js
|
|
+++ b/lib/internal/process/pre_execution.js
|
|
@@ -67,6 +67,8 @@ function prepareWorkerThreadExecution() {
|
|
});
|
|
}
|
|
|
|
+
|
|
+let processLinkedBinding = process._linkedBinding;
|
|
function prepareExecution(options) {
|
|
const { expandArgv1, initializeModules, isMainThread } = options;
|
|
|
|
@@ -170,12 +172,17 @@ function setupUserModules(isLoaderWorker = false) {
|
|
loadPreloadModules();
|
|
// Need to be done after --require setup.
|
|
initializeFrozenIntrinsics();
|
|
+ setupAsarSupport();
|
|
}
|
|
|
|
function refreshRuntimeOptions() {
|
|
refreshOptions();
|
|
}
|
|
|
|
+function setupAsarSupport() {
|
|
+ processLinkedBinding('electron_common_asar').initAsarSupport(require);
|
|
+}
|
|
+
|
|
function patchProcessObject(expandArgv1) {
|
|
const binding = internalBinding('process_methods');
|
|
binding.patchProcessObject(process);
|