summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-05 15:03:29 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-05 15:03:29 +0200
commitda228cf9d71b747f1824e85127039e5afc7effd8 (patch)
treea19ec2f68fc377b18617d04903af729e50f5b4f2 /deps
parentaf62dfc6f3312c628bf851b7724c5925c1e839e9 (diff)
downloadakono-da228cf9d71b747f1824e85127039e5afc7effd8.tar.gz
akono-da228cf9d71b747f1824e85127039e5afc7effd8.tar.bz2
akono-da228cf9d71b747f1824e85127039e5afc7effd8.zip
WIP
Diffstat (limited to 'deps')
-rwxr-xr-xdeps/build_v83
-rw-r--r--deps/node/deps/v8/src/snapshot/mksnapshot.cc2
-rwxr-xr-xdeps/node/deps/v8/third_party/eu-strip/bin/eu-stripbin73 -> 105120 bytes
3 files changed, 4 insertions, 1 deletions
diff --git a/deps/build_v8 b/deps/build_v8
index 30343e36..2c8b780b 100755
--- a/deps/build_v8
+++ b/deps/build_v8
@@ -34,6 +34,9 @@ mode=debug
'is_component_build=true' \
'v8_android_log_stdout=true' \
'v8_use_external_startup_data=false' \
+ 'v8_use_snapshot=true' \
+ 'v8_enable_debugging_features=true' \
+ 'v8_enable_embedded_builtins=true' \
'is_clang=true'
./_depot_tools/ninja -C out.gn/arm.$mode v8 d8
diff --git a/deps/node/deps/v8/src/snapshot/mksnapshot.cc b/deps/node/deps/v8/src/snapshot/mksnapshot.cc
index a2303613..9aa6cc05 100644
--- a/deps/node/deps/v8/src/snapshot/mksnapshot.cc
+++ b/deps/node/deps/v8/src/snapshot/mksnapshot.cc
@@ -98,7 +98,7 @@ class SnapshotWriter {
static void WriteSnapshotFileData(FILE* fp,
const i::Vector<const i::byte>& blob) {
- fprintf(fp, "static const byte blob_data[] = {\n");
+ fprintf(fp, "static const byte blob_data alignas(8) [] = {\n");
WriteBinaryContentsAsCArray(fp, blob);
fprintf(fp, "};\n");
fprintf(fp, "static const int blob_size = %d;\n", blob.length());
diff --git a/deps/node/deps/v8/third_party/eu-strip/bin/eu-strip b/deps/node/deps/v8/third_party/eu-strip/bin/eu-strip
index f67df8ed..994e2263 100755
--- a/deps/node/deps/v8/third_party/eu-strip/bin/eu-strip
+++ b/deps/node/deps/v8/third_party/eu-strip/bin/eu-strip
Binary files differ