In V8 why does Isolate::GetCurrent() return NULL?

☆樱花仙子☆ 提交于 2019-12-09 21:14:56

问题


I have compiled V8 on Ubuntu and have a very simple V8 program called isolate_test.cc. It is based on the Hello World example from Google:

#include <v8.h> 
using namespace v8;

int main(int argc, char* argv[]) {

    V8::initialize();
    Isolate* isolate = Isolate::GetCurrent(); //Always returns NULL

    return 0; 
}

The command I use to compile this program is:

g++ -Iinclude -g isolate_test.cc -o isolate_test -Wl,--start-group out/x64.debug/obj.target/{tools/gyp/libv8_{base,snapshot},third_party/icu/libicu{uc,i18n,data}}.a -Wl,--end-group -lrt -lpthread

Problem is Isolate::GetCurrent() always returns NULL. Why does this happen and what is the correct way of getting the current Isolate?

I could be way off track but my first thought is that this relates to Isolate::GetCurrent() being unable to get the current thread from libpthread.

Update: As per this question I have added V8::initialize() as the first call in the program, however this does not solve the problem.


回答1:


I have the same issue. I don't really know the underlying reason, but NULL here means default isolate was not created and entered. The obvious workaround is to do it manually

Isolate* isolate = Isolate::GetCurrent(); // returns NULL
if (!isolate) {
    isolate = Isolate::New();
    isolate->Enter();
}



回答2:


The default isolate has been removed from v8. As a result, GetCurrent() is no longer initialized by default.

Here's the issue for the change: https://code.google.com/p/chromium/issues/detail?id=359977



来源:https://stackoverflow.com/questions/23825034/in-v8-why-does-isolategetcurrent-return-null

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!