search for: libaux

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

Did you mean: libata
2008 May 10
2
[LLVMdev] trouble finding symbols
I am trying to upgrade to the latest version of LLVM from svn. My transformations compile correctly, but when I go to run them I get a symbol lookup error. In particular, I have 2 libraries that I compile for use with opt called libaux.so and libmyxform.so. libaux.so implements functions that are used by libmyxform.so. When I run: ------- /llvm/bin/opt -load=/work/src/compiler/Debug/lib/libaux.so -load=/work/compiler/Debug/lib/libmyxform.so -myxform -f -o x.bc y.bc ------- I get: ------ /llvm/bin/opt: symbol lookup error:...
2008 May 10
0
[LLVMdev] trouble finding symbols
.... Lefever <lefever at crhc.uiuc.edu> wrote: > I am trying to upgrade to the latest version of LLVM from svn. My > transformations compile correctly, but when I go to run them I get a > symbol lookup error. In particular, I have 2 libraries that I compile > for use with opt called libaux.so and libmyxform.so. libaux.so > implements functions that are used by libmyxform.so. > > When I run: > > ------- > /llvm/bin/opt -load=/work/src/compiler/Debug/lib/libaux.so > -load=/work/compiler/Debug/lib/libmyxform.so -myxform -f -o x.bc y.bc > ------- > > I get:...