search for: m_engine

Displaying 1 result from an estimated 1 matches for "m_engine".

Did you mean: _engine
2011 Jun 21
1
[LLVMdev] Instantiating a JIT on win64
...de <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 find an appropriate JIT for my architecture (which is actually X86_64-win64, via visual c++ compilation. I also had to fiddle around to get LLVM 2.9 to c...