search for: staticmodul

Displaying 3 results from an estimated 3 matches for "staticmodul".

Did you mean: staticmodule
2008 Feb 21
3
[LLVMdev] LLVM Win32 Issue
...Aaron > You'll need to link in x86.lib as generated from the VStudio project. > > I had trouble convincing VStudio's linker to keep the relevant code > around, so did this in the app I work on: > > void > LLVMCompiledProgram::linkerTrick() > { > llvm::Module staticModule("staticModule"); > std::string staticString; > llvm::X86_32TargetMachine staticMachine(staticModule, staticString); > } > > Which I called from somewhere real. > > Chuck.
2008 Feb 21
0
[LLVMdev] LLVM Win32 Issue
...Aaron > You'll need to link in x86.lib as generated from the VStudio project. > > I had trouble convincing VStudio's linker to keep the relevant code > around, so did this in the app I work on: > > void > LLVMCompiledProgram::linkerTrick() > { > llvm::Module staticModule("staticModule"); > std::string staticString; > llvm::X86_32TargetMachine staticMachine(staticModule, staticString); > } > > Which I called from somewhere real. > > Chuck. _______________________________________________ LLVM Developers mailing list LLVMdev at...
2008 Feb 21
3
[LLVMdev] LLVM Win32 Issue
Hello all, I'm trying to bring an LLVM-based project that is working on Linux up on Win32. I am having problems with llvm::ExecutionEngine::create returning a NULL. I traced it to these lines: // Unless the interpreter was explicitly selected, try making a JIT. if (!ForceInterpreter && JITCtor) EE = JITCtor(MP, ErrorStr); // If we can't make a JIT, make an