'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/
Solution 1:[1]
Just convert the COFF format to ELF and use some ELF viewer:
objcopy.exe --input-target=pe-i386 --output-target=elf32-i386 somefile.o somefile.elf
For example in Python you can then use this one-file-implementation, which only depends on the struct module: http://www.tinyos.net/tinyos-2.1.0/tools/platforms/msp430/pybsl/elf.py
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | kungfooman |
