search for: notimemachin

Displaying 5 results from an estimated 5 matches for "notimemachin".

Did you mean: notimemachine
2010 Jan 23
2
[LLVMdev] Kaleidoscope-tutorial: Fails to create the JIT
...vm source root>/examples/Kaleidoscope/toy.cpp. > This is the final version of the tutorial and worked the last time I > played with 2.6. Tried, that code ... And got a error (which I not really understand, yet) || > g++ -g -O0 toy-example26.cpp -o toy-example26 \ || `/Users/albert/NoTimeMachine/LLCM_Clang/llvm-trunk/BUILD/Debug/bin/ llvm-config --cppflags --ldflags --libs core jit native` || Undefined symbols: || "_LLVMLinkInInterpreter", referenced from: || (anonymous namespace)::ForceInterpreterLinking::ForceInterpreterLinking() in ccXf1BAH.o || ld: symbol(...
2010 Jan 24
0
[LLVMdev] Kaleidoscope-tutorial: Fails to create the JIT
Change your g++ build to: g++ -g -O0 toy-example26.cpp -o toy-example26 `/Users/albert/NoTimeMachine/LLCM_Clang/llvm-trunk/BUILD/Debug/bin/llvm-config --cppflags --ldflags --libs core jit interpreter native` After you get this working, try it with the source interpreter include removed, and minus the above interpreter llvm-config addition. Garrison On Jan 23, 2010, at 18:55, ALbert Mietus wrot...
2010 Jan 23
0
[LLVMdev] Kaleidoscope-tutorial: Fails to create the JIT
Look at what is in <llvm source root>/examples/Kaleidoscope/toy.cpp. This is the final version of the tutorial and worked the last time I played with 2.6. Garrison On Jan 23, 2010, at 12:21, ALbert Mietus wrote: > I ask for advice, for TheExecutionEngine === NULL, > >>> Which result's in a null-pointer for "TheExecutionEngine"; which >>> explains
2010 Jan 23
2
[LLVMdev] Kaleidoscope-tutorial: Fails to create the JIT
I ask for advice, for TheExecutionEngine === NULL, >> Which result's in a null-pointer for "TheExecutionEngine"; which >> explains the bus-errror .. Reid Kleckner wrote: > Try changing the above line to: > std::string str; > TheExecutionEngine = > EngineBuilder(OurModuleProvider).setErrorStr(str).create(); > cout << str << '\n';
2010 Jan 22
3
[LLVMdev] Kaleidoscope-tutorial: Fails to create the JIT
...e respond with a fix, workaround,. or when needed details Some details: Version is 2.6, PreBuild Apple OS-X download (from llvm- website). But the same happens with build form 2.6 sources. Apple (Laptop) , intel; Leopard OS (No Snow), with all updates Placed the bin/libs in a custom dir: $HOME/NoTimeMachine/LLCM/ PreBuild/ is LLVM home [or: .../<OwnBuidl>/Release/] Build the Kaleidoscope tool, as mentioned in the docs: g++ -g -O3 $< -o $@ `${LLVM}/bin/llvm-config --cppflags --ldflags -- libs core jit native` Also tried with -rdynamic option; same result Please send me instruction for...