Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What COFF (windows .obj object file) viewers are available?

I am only aware of 2:

  • dumpbin which is included with Visual Studio
  • PEView from http://wjradburn.com/software/
like image 271
wozname Avatar asked Feb 14 '10 21:02

wozname


1 Answers

There is DbgHelp, but it's geared more toward the PE file rather than the object file. And Its intended to be used as an API rather than a tool.

the COFF format itself originated on unix http://en.wikipedia.org/wiki/COFF although Microsoft has extended the format somewhat and the unix seems to have abandoned that format in favor of ELF. But you might find some useful tools in the Unix world, for instance this dump tool from SCO http://docsrv.sco.com:507/en/man/html.CP/dump.CP.html

like image 189
John Knoeller Avatar answered Sep 18 '22 05:09

John Knoeller