search for: yourarch

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

2005 Jan 25
2
[LLVMdev] llc -load....
hello... I have finish my backend. But I dont know how to install my backend... llc -load=???Load what?? Can anyone teach me? thanx.
2005 Jan 25
0
[LLVMdev] llc -load....
...amically load the back end, add these two lines to your target makefile: SHARED_LIBRARY = 1 LOADABLE_MODULE = 1 This should build a DSO for your target (which will end with .so if you're on most unixy platforms). You can load this with: llc --load ~/llvm/Debug/lib/yourlibrary.so -march=yourarch in.bc -o out.s BTW, what architecture are you working with? -Chris -- http://nondot.org/sabre/ http://llvm.cs.uiuc.edu/
2005 Jan 25
2
[LLVMdev] llc -load....
...ines to your target > makefile: > > SHARED_LIBRARY = 1 > LOADABLE_MODULE = 1 > > This should build a DSO for your target (which will end with .so if you're > on most unixy platforms). You can load this with: > > llc --load ~/llvm/Debug/lib/yourlibrary.so -march=yourarch in.bc -o out.s > > BTW, what architecture are you working with? > > -Chris > > -- > http://nondot.org/sabre/ > http://llvm.cs.uiuc.edu/ >
2005 Jan 25
0
[LLVMdev] llc -load....
...file: >> >> SHARED_LIBRARY = 1 >> LOADABLE_MODULE = 1 >> >> This should build a DSO for your target (which will end with .so if you're >> on most unixy platforms). You can load this with: >> >> llc --load ~/llvm/Debug/lib/yourlibrary.so -march=yourarch in.bc -o out.s >> >> BTW, what architecture are you working with? >> >> -Chris >> >> -- >> http://nondot.org/sabre/ >> http://llvm.cs.uiuc.edu/ >> > > _______________________________________________ > LLVM Developers mailing list > L...