Hi,

I'm getting errors when creating a new context, and it crashes with an 
access violation here on api.cc:

  // Sanity-check that the isolate is initialized and usable.

  CHECK(isolate->builtins()->builtin(i::Builtins::kIllegal)->IsCode());

Which eventually calls line 142 of builtins.cc:

Code* Builtins::builtin(int index) { return 
isolate_->heap()->builtin(index); }

I'm building with MSVC on windows 10 x64, with the following build flags

is_debug = true 
target_cpu = "x64"
is_component_build = false
v8_static_library = true
v8_enable_i18n_support=false
is_clang=false
use_lld = false
v8_use_snapshot=false

At first, I thought that somehow its not finding my snapshots even though 
its in the correct location, but this occurs even when compiling without 
snapshot support.

I've also done all initialization as per the hello world example, and am 
building against v7.1.0 (pulled from git a few days ago).

Appreciate any help - 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].
For more options, visit https://groups.google.com/d/optout.

Reply via email to