Hey, I managed to get my builds.
Now, when I run the app on Android it crashes here when trying to
initialize v8:
const bool kEmbedderSandbox = (build_config & kSandbox) != 0;
if (kEmbedderSandbox != V8_ENABLE_SANDBOX_BOOL) {
FATAL(
"Embedder-vs-V8 build configuration mismatch. On embedder side "
"sandbox is %s while on V8 side it's %s.",
kEmbedderSandbox ? "ENABLED" : "DISABLED",
V8_ENABLE_SANDBOX_BOOL ? "ENABLED" : "DISABLED");
}
As far as I could see *v8_enable_sandbox* is true by default (and I am not
overwriting it). Is there any reason why these vars don't match? I can't
see their values on the debugger.
I am using the default *default_min_sdk_version* (v21), so maybe sandbox
was not supported yet on that version?
I guess another option is to set *v8_enable_sandbox=false*, but I'd like to
take advantage of sandbox if that's an option.
Thanks!
--
--
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users
---
You received this message because you are subscribed to the Google Groups
"v8-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion visit
https://groups.google.com/d/msgid/v8-users/4141834b-903c-45cb-b698-a8cfb783464en%40googlegroups.com.