*Hi,*

*I rebuild other samples today and I have an new error *

*LLVM ERROR: cannot find global address _ZN11ApplicationD1Ev*

*Seems cannot find Application, my class is a kind of singleton may be it's 
the problem :*

*(inside .h)*
static Application *get();

(inside .cpp)
static Application *instance = nullptr;

Application *Application::get()
{
    if(!instance)
    {
        instance = new Application();
        instance->init();
    }

    return instance;
}

Any idea ?

Tony

-- 
You received this message because you are subscribed to the Google Groups 
"emscripten-discuss" 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/groups/opt_out.

Reply via email to