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.