util: Added disassembler using objdump tool.

The disassembler disassembles an elf file with
an external objdump tool.
The architecture specific objdump must be configured
via cmake (ARCH_TOOL_PREFIX), e.g. arm-none-eabi- for
arm-none-eabi-objdump.
This commit is contained in:
Martin Hoffmann
2013-03-05 21:14:16 +01:00
parent 010137cf54
commit 1fe1dbb3ed
10 changed files with 2340 additions and 49 deletions

View File

@ -11,4 +11,6 @@
#cmakedefine BUILD_X86
#cmakedefine BUILD_ARM
#define ARCH_TOOL_PREFIX "@ARCH_TOOL_PREFIX@"
#endif // __VARIANT_CONFIG_HPP__