search for: pecoffstreamers

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

2010 Mar 29
0
[LLVMdev] Static code generation - is it gone from LLVM 2.7?
...nter) > paired with either AsmStreamer, MachOStreamer or NullStreamer. I cannot > pass my own descendant of MCStreamer class. Now we've got predefined set > of final passes instead of free choice. LLVM 2.7 doesn't have final support for this. The idea is that we'd add ELF and PECOFFStreamers as well, or parameterize it a different way. > AFAIK to get object code file I have to feed emitted code through my own > MyMCStreamer class. The only sane option I see is to take assembly > output from AsmStreamer (.s file) then feed it to AsmParser passing > MyMCStreamer in AsmParser...
2010 Mar 27
2
[LLVMdev] Static code generation - is it gone from LLVM 2.7?
Chris Lattner wrote: > On Mar 27, 2010, at 12:49 PM, Peter Shugalev wrote: > >>>> New method of emitting object code is ok for me. But it is still >>>> experimental, isn't it? >>> Yes. >> Thank you for answers! >> >> Now there is a way to implement what I'd like to. But it would be MUCH >> better if