Displaying 1 result from an estimated 1 matches for "buildererr".
2011 Jun 21
1
[LLVMdev] Instantiating a JIT on win64
...e it to
execute efficiently. I've been following the tutorial, and have the
following code for instantiating an ExecutionEngine:
#include <LLVM\ExecutionEngine\JIT.h>
#include <LLVM\ExecutionEngine\Interpreter.h>
// ...
std::string builderErr;
llvm::EngineBuilder engineBuilder(&m_state.GetModule());
engineBuilder.setErrorStr(&builderErr);
m_engine = engineBuilder.create();
Unfortunately, i can't seem to instantiate a JIT. I can get into the
JIT::createJIT function, but i then fail to fin...