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 Signed-off-by: Maksim Sisov 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),