search for: stkr_runtime

Displaying 4 results from an estimated 4 matches for "stkr_runtime".

2004 Aug 30
1
[LLVMdev] llvmc - Compiler Driver - Status Update & Issues
...onacci.st -o fibo -f -v stkrc -s 2048 fibonacci.st -o /tmp/llvm_1zyB4x/fibonacci.st.trans -f opt /tmp/llvm_1zyB4x/fibonacci.st.trans -o /tmp/llvm_1zyB4x/fibonacci.st.opt -simplifycfg -instcombine -mem2reg -f llvm-link /tmp/llvm_1zyB4x/fibonacci.st.opt /proj/work/llvm/cfrontend/install/bytecode-libs/stkr_runtime.bc -v -f -o fibo Loading '/tmp/llvm_1zyB4x/fibonacci.st.opt' Loading '/proj/work/llvm/cfrontend/install/bytecode-libs/stkr_runtime.bc' Linking in '/proj/work/llvm/cfrontend/install/bytecode-libs/stkr_runtime.bc' Writing bytecode... Note that without any -L option to llvmc o...
2006 Feb 28
1
[LLVMdev] Using llvm-gcc with a simple program and the '-c' option
...cts/Stacker/lib/compiler' make[4]: Entering directory `/home/wink/prgs/llvm-cvs/llvm/projects/Stacker/lib/runtime' llvm[4]: Compiling stacker_rt.c for Debug build (bytecode) llvm[4]: Compiling stacker_rt.ll to stacker_rt.bc for Debug build (bytecode) llvm[4]: Building Debug Bytecode Module stkr_runtime.bc gccld: warning: Cannot find library 'crtend' make[4]: Leaving directory `/home/wink/prgs/llvm-cvs/llvm/projects/Stacker/lib/runtime' make[3]: Leaving directory `/home/wink/prgs/llvm-cvs/llvm/projects/Stacker/lib' make[3]: Entering directory `/home/wink/prgs/llvm-cvs/llvm/proje...
2006 Feb 28
0
[LLVMdev] Using llvm-gcc with a simple program and the '-c' option
On Mon, 2006-02-27 at 20:43 -0800, Wink Saville wrote: > > Try passing "-L/opt/llvm-1.6/llvm-gcc/lib/ -lcrtend" to llvm-ld. > This didn't work for me: > llvm-ld -o t1.app t1.bc t1.a -L/opt/llvm-1.6/llvm-gcc/lib/ -lcrtend.a > > I get two warning's about library 'crtend' missing > You didn't get the instructions quite right. The option is
2006 Feb 28
3
[LLVMdev] Using llvm-gcc with a simple program and the '-c' option
Chris Lattner wrote: > On Sun, 26 Feb 2006, Wink Saville wrote: >> I then do the following in my makefile: >> >> llvm-gcc -c t1.c -o t1.bc >> llvm-gcc -c t1sub1.c -o t1sub1.bc >> llvm-gcc -c t1sub2.c -o t1sub2.bc >> llvm-ar r t1.a t1sub1.bc t1sub2.bc >> llvm-ar: creating t1.a >> llvm-ld -o t1.app t1.bc t1.a /opt/llvm-1.6/llvm-gcc/lib/libcrtend.a