Displaying 2 results from an estimated 2 matches for "llibmylib".
Did you mean:
libmylib
2008 Oct 17
1
[LLVMdev] [Need your help]
...is Crystal. I have some questions about llvm-gcc. Could you please give me some advice? Thanks in advance.
Problem description:
Env:
llvm-gcc (GCC) 4.2.1
gcc (GCC) 4.1.2
OS:fedora7
I tried to compile a C programme test.c with llvm-gcc by task:
[root at localhost mylib]# llvm-gcc -emit-llvm test.c -Llibmylib.a -c -o test.bc
[root at localhost mylib]# lli test.bc
after running the command "lli test.bc",print the error info as follows:
ERROR: Program used external function 'gt' which could not be resolved!
lli[0x85c245f]
/lib/libc.so.6(abort+0x101)[0x6988b1]
lli(_ZN4llvm3JIT25getPointe...
2008 Oct 18
1
[LLVMdev] 回复:Re: [LLVMdev] [Need your help]
...sp;wrote:
> I tried to compile a C programme test.c with llvm-gcc by task:
> [root at localhost mylib]# llvm-gcc -emit-llvm test.c -Llibmylib.a -c -o
> test.bc
The -L flag doesn't do anything here.
> [root at localhost mylib]# lli test.bc
>
> after running the command&a...