Displaying 2 results from an estimated 2 matches for "targetnameasmprint".
Did you mean:
targetnameasmprinter
2008 Dec 01
3
[LLVMdev] Multiple directories in a single library
...Name). Simply putting code in different
directories and using DIRS in the Makefile doesn't cut it, since that produces
different libraries for each directory, which don't get linked in by the
programs that need them.
There is some code in llvm-config which fixes the library problem for the
TargetNameAsmPrinter library, but that isn't really the clean way IMHO. Is
this also meant for cleanup, or is there another reason why the AsmPrinter
should be in a seperate library?
Anyway, I thought it would be good if one could simply compile .cpp files in
subdirectories as if they are in the current director...
2008 Dec 01
0
[LLVMdev] Multiple directories in a single library
Hello, Matthijs
> There is some code in llvm-config which fixes the library problem for the
> TargetNameAsmPrinter library, but that isn't really the clean way IMHO. Is
> this also meant for cleanup, or is there another reason why the AsmPrinter
> should be in a seperate library?
The main reason of such split was codesize concerns for JIT users:
they don't need asmprinting at all. The ugly inclu...