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.
|
|
|
|
|
2023-05-17 11:17:52 +00:00
|
|
|
Also change visibility on mksnapshot in order to target mksnapshot for mksnapshot zip.
|
2018-10-24 18:24:11 +00:00
|
|
|
|
2018-09-14 05:02:16 +00:00
|
|
|
diff --git a/BUILD.gn b/BUILD.gn
|
2023-05-17 11:17:52 +00:00
|
|
|
index d75f44b55a89828845f69f148da147ea29d523e2..3140abb0868eb81976edacafc625bc80159b5aea 100644
|
2018-09-14 05:02:16 +00:00
|
|
|
--- a/BUILD.gn
|
|
|
|
+++ b/BUILD.gn
|
2023-05-10 14:47:48 +00:00
|
|
|
@@ -714,7 +714,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-08-11 21:04:56 +00:00
|
|
|
|
2023-05-10 14:47:48 +00:00
|
|
|
@@ -6463,7 +6463,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",
|
2023-05-17 11:17:52 +00:00
|
|
|
@@ -6475,7 +6475,6 @@ if (current_toolchain == v8_generator_toolchain) {
|
|
|
|
|
|
|
|
if (current_toolchain == v8_snapshot_toolchain) {
|
|
|
|
v8_executable("mksnapshot") {
|
|
|
|
- visibility = [ ":*" ] # Only targets in this file can depend on this.
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
"src/snapshot/embedded/embedded-empty.cc",
|