search for: mytransformlib

Displaying 1 result from an estimated 1 matches for "mytransformlib".

2008 Jun 24
2
[LLVMdev] undefined reference to .Llabel
...ined bc file llvm-link -o exe.comb.bc x.bc y.bc // Next we run several steps that involve: // - linking the combined bc file with support code // - running the combined bc file through a transform of mine // For example: 3: llvm-link -o exe.comb.support1.bc exe.comb.bc support1.bc 4: opt -load=mytransformlib.so -mytransform1 -o exe.comb.support1.transform1.bc exe.comb.support1.bc ... // After performing those steps, we link the result and form a // native executable 5: llvm-ld -native -o exe exe.comb.support1.transform1.bc ------------------------------ My problem is that if I use the -g option...