2018-10-24 18:24:11 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2019-04-20 17:20:37 +00:00
|
|
|
From: Jeremy Apthorp <nornagon@nornagon.net>
|
|
|
|
Date: Tue, 16 Apr 2019 10:43:04 -0700
|
2018-10-24 18:24:11 +00:00
|
|
|
Subject: build_gn.patch
|
|
|
|
|
2019-12-13 17:18:45 +00:00
|
|
|
We force V8 into 'shared library' mode so that it exports its symbols, which is
|
|
|
|
necessary for native modules to load.
|
|
|
|
|
|
|
|
Also, some fixes relating to mksnapshot on ARM.
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-09-14 05:02:16 +00:00
|
|
|
diff --git a/BUILD.gn b/BUILD.gn
|
2021-07-06 12:17:13 +00:00
|
|
|
index 6189f4e0105c381df05856ceedc6d036baf470a7..4d76cf090c3f3c9add0f1104833642963d4ddbc2 100644
|
2018-09-14 05:02:16 +00:00
|
|
|
--- a/BUILD.gn
|
|
|
|
+++ b/BUILD.gn
|
2021-07-06 12:17:13 +00:00
|
|
|
@@ -545,7 +545,7 @@ config("internal_config") {
|
2020-12-14 18:57:36 +00:00
|
|
|
":cppgc_header_features",
|
2019-02-14 16:32:03 +00:00
|
|
|
]
|
2018-09-14 05:02:16 +00:00
|
|
|
|
|
|
|
- if (is_component_build) {
|
|
|
|
+ if (is_component_build || is_electron_build) {
|
2019-02-14 16:32:03 +00:00
|
|
|
defines += [ "BUILDING_V8_SHARED" ]
|
2018-09-14 05:02:16 +00:00
|
|
|
}
|
|
|
|
}
|
2021-07-06 12:17:13 +00:00
|
|
|
@@ -5292,7 +5292,7 @@ if (current_toolchain == v8_generator_toolchain) {
|
2019-04-20 17:20:37 +00:00
|
|
|
"src/interpreter/bytecodes.h",
|
|
|
|
]
|
|
|
|
|
|
|
|
- configs = [ ":internal_config" ]
|
|
|
|
+ configs = [ ":internal_config_base" ]
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
":v8_libbase",
|
2021-07-06 12:17:13 +00:00
|
|
|
@@ -5330,6 +5330,8 @@ if (current_toolchain == v8_snapshot_toolchain) {
|
2018-09-14 05:02:16 +00:00
|
|
|
|
|
|
|
configs = [ ":internal_config" ]
|
|
|
|
|
|
|
|
+ configs += [ "//electron/build/config:build_time_executable" ]
|
|
|
|
+
|
|
|
|
deps = [
|
2019-04-20 17:20:37 +00:00
|
|
|
":v8_base_without_compiler",
|
|
|
|
":v8_compiler_for_mksnapshot",
|