search for: llablex

Displaying 2 results from an estimated 2 matches for "llablex".

Did you mean: liable
2008 Jun 24
2
[LLVMdev] undefined reference to .Llabel
...ication using my compilation process without debugging, (i.e., "llvm-gcc -g"), everything works fine. However, when I compile an application using my compilation process with debugging, (i.e., "llvm-gcc -g"), I get linking errors that complain about undefined references to .LlableX, where X is some number. Let me explain how my compilation process works. Let's say that an application is made of x.c and y.c and that the application is normally compiled as follows: ------------------------------ gcc -c -o x.o x.c gcc -c -o y.o y.c gcc -o exe x.o y.o -------------------...
2008 Jun 24
0
[LLVMdev] undefined reference to .Llabel
On Tue, Jun 24, 2008 at 2:03 AM, Ryan M. Lefever <lefever at crhc.uiuc.edu> wrote: > My problem is that if I use the -g option in lines 1 and 2, then when I > run llvm-ld in line 5, it complains that there are undefined references > to .LlableX. -g + optimization is unsupported at the moment. Off the top of my head, I know that global DCE and inlining break debug info; probably other also cause issues. -Eli