aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/Object/yaml2obj-elf-bits-endian.test
AgeCommit message (Collapse)AuthorFilesLines
2016-06-27[yaml2obj] Remove --format option in favor of YAML tagsChris Bieneman1-4/+4
Summary: Our YAML library's handling of tags isn't perfect, but it is good enough to get rid of the need for the --format argument to yaml2obj. This patch does exactly that. Instead of requiring --format, it infers the format based on the tags found in the object file. The supported tags are: !ELF !COFF !mach-o !fat-mach-o I have a corresponding patch that is quite large that fixes up all the in-tree test cases. Reviewers: rafael, Bigcheese, compnerd, silvas Subscribers: compnerd, llvm-commits Differential Revision: http://reviews.llvm.org/D21711 llvm-svn: 273915
2013-06-10[yaml2obj] Initial ELF support.Sean Silva1-0/+16
Currently, only emitting the ELF header is supported (no sections or segments). The ELFYAML code organization is broadly similar to the COFFYAML code. llvm-svn: 183711