Displaying 4 results from an estimated 4 matches for "jtfyi".
Did you mean:
jfyi
2010 May 02
2
[LLVMdev] Win32 COFF Support
...good to have this as a separate patch. This
will allow both COFFWriter and ELFWriter as well as the MachOWriter to
coexist and be selected by TargetTriple. BTW could you have your Writer and
Streamer in different source code files, and follow the MachO code format as
far as is possible/reasonable.
JTFYI The COFF code I have written consists of Reader and Writer of COFF
internal object modules to/from COFF format. I am looking at producing a
linker with the addition of a PE Writer class, and Library Reader class.
This should then make LLVM and CLANG more independant on the Windows
Platform. I have...
2010 May 02
0
[LLVMdev] Win32 COFF Support
Thanks for both of your feedback, I will attempt to make it fit LLVM coding
standards better before I resubmit my work.
As far as the hooks I put in, they are really only there so I could build
the object exporter outside of LLVM, I think having it built directly in
like others is preferable in the end. I do think it would be useful if
projects had the option of extending supported formats
2010 May 02
2
[LLVMdev] Win32 COFF Support
On 2 May 2010 10:53, Anton Korobeynikov <anton at korobeynikov.info> wrote:
> Hello, Nathan
> I'll let others comment on MC hooks, I just made a very brief look
> over the contents of the archive. You can find the comments below.
>
Yes I looked at this and there are several ways but TargetAsmBackend looked
the bast place to deal with the MCStreamer choice for different
2010 May 02
0
[LLVMdev] Win32 COFF Support
...as is possible/reasonable.
>
I have already re-factored the code a bit to better fit LLVM coding
standard. The writer & streamer are now two different source files, and code
for the coff::file class has been moved directly into the writer instead of
multiply inheriting from it.
>
> JTFYI The COFF code I have written consists of Reader and Writer of COFF
> internal object modules to/from COFF format. I am looking at producing a
> linker with the addition of a PE Writer class, and Library Reader class.
> This should then make LLVM and CLANG more independant on the Windows
&g...