[PATCH] D54939: [llvm-objcopy] Initial COFF support

Jake Ehrlich via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 18 15:54:09 PST 2018


jakehehrlich accepted this revision.
jakehehrlich added a comment.

High level structure/interface looks good to me. I don't see in obvious code level issues. I'll trust @rnk's assessment of the COFF specific parts of this. I haven't reviewed the testing inputs but it looks like you're able to copy some substantial object files which looks like a solid start. I'll trust that James and Alex have looked at enough of this to fill in the gaps that I might have missed. We can start iterating now if there are any issues. Land it.



================
Comment at: tools/llvm-objcopy/COFF/Writer.cpp:18
+#include "llvm/Support/ErrorHandling.h"
+#include "llvm/Support/FileOutputBuffer.h"
+#include <cstddef>
----------------
Why do you need this?


================
Comment at: tools/llvm-objcopy/COFF/Writer.h:15
+#include "llvm/MC/StringTableBuilder.h"
+#include "llvm/Support/FileOutputBuffer.h"
+#include <cstddef>
----------------
Why do you need this?


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D54939/new/

https://reviews.llvm.org/D54939





More information about the llvm-commits mailing list