1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
Upstream-Status: Inappropriate [embedder specific]
The patch below makes the V8 binaries run during the build be invoked through
QEMU, as they are built for the target.
Signed-off-by: Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
Signed-off-by: Maksim Sisov <msisov@igalia.com>
Index: git/src/tools/v8_context_snapshot/BUILD.gn
===================================================================
--- git.orig/src/tools/v8_context_snapshot/BUILD.gn
+++ git/src/tools/v8_context_snapshot/BUILD.gn
@@ -62,6 +62,7 @@ if (use_v8_context_snapshot) {
output_path = rebase_path(output_file, root_build_dir)
args = [
+ "./v8-qemu-wrapper.sh",
"./" + rebase_path(
get_label_info(
":v8_context_snapshot_generator($v8_snapshot_toolchain)",
Index: git/src/v8/BUILD.gn
===================================================================
--- git.orig/src/v8/BUILD.gn
+++ git/src/v8/BUILD.gn
@@ -900,6 +900,7 @@ action("run_torque") {
}
args = [
+ "./v8-qemu-wrapper.sh",
"./" + rebase_path(get_label_info(":torque($v8_torque_toolchain)",
"root_out_dir") + "/torque",
root_build_dir),
@@ -977,6 +978,7 @@ template("run_mksnapshot") {
data = []
args = [
+ "./v8-qemu-wrapper.sh",
"./" + rebase_path(get_label_info(":mksnapshot($v8_snapshot_toolchain)",
"root_out_dir") + "/mksnapshot",
root_build_dir),
|