Displaying 2 results from an estimated 2 matches for "a66af5e4".
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
2008 Dec 01
3
[LLVMdev] Multiple directories in a single library
Hi all,
I've previously posted this patch on llvm-commits, but due to a lack of
replies, and the fact that this patch is more something to discuss than
something to apply, I'm posting this again here.
While working on my own backend, I found that things got really messy real
quickly, partly caused by the fact that all .cpp files must be in the same
directory (lib/Target/TargetName).