summaryrefslogtreecommitdiff
path: root/misc/omfdump.c
Commit message (Collapse)AuthorAgeFilesLines
* Move <string.h> inclusion to compiler.hH. Peter Anvin2018-12-261-1/+0
| | | | | | | There is absolutely no reason not to include <string.h> globally, and with the inline function for mempcpy() we need it there anyway. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* misc/omfdump.c: expand dDEPFILE COMENT recordsH. Peter Anvin2017-08-161-1/+29
| | | | | | Expand dDEPFILE COMENT records. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* outobj: emit file dependency informationH. Peter Anvin2017-08-161-12/+278
| | | | | | | | | Some OMF toolchain can make use of file dependency information embedded in the object files. As implemented here, we don't try to absolutize the filenames, as that prevents moving around trees and is OS-dependent. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* Beginnings of a crude utility to dump the contents of an OMF fileH. Peter Anvin2009-07-011-0/+223
Beginnings of a crude utility to dump the contents of an OMF (obj) file. At this point all it does it breaks it down into the individual records and dumps those, but it is still easier to read than a pure hexdump. See http://www.azillionmonkeys.com/qed/Omfg.pdf for the format spec. Signed-off-by: H. Peter Anvin <hpa@zytor.com>