Displaying 1 result from an estimated 1 matches for "libexecutionengin".
Did you mean:
  libexecutionengine
  
2008 Nov 20
2
[LLVMdev] compiling the tutorial
...8.
In particular, the problem is that in main() when this line is executed
>   // Create the JIT.
>   TheExecutionEngine = ExecutionEngine::create(TheModule);
create returns null, because both JITCtor and InterpCtor are null.
I found this comment in ExecutionEngine.h
>   // To avoid having libexecutionengine depend on the JIT and interpreter
>   // libraries, the JIT and Interpreter set these functions to ctor 
> pointers
>   // at startup time if they are linked in.
>   typedef ExecutionEngine *(*EECtorFn)(ModuleProvider*, std::string*,
>                                        bool Fas...