Guest User

Untitled

a guest
Jul 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. When running objdump command and got error like this:
  2.  
  3. '''
  4. $ objdump -D out
  5. objdump: out: File format not recognized
  6. '''
  7.  
  8. Use -b option with value "binary"
  9.  
  10. '''
  11. $ objdump -b binary -D out
  12.  
  13. out: file format binary
  14.  
  15. objdump: can't disassemble for architecture UNKNOWN!
  16. '''
  17.  
  18. If you get an error "objdump: can't disassemble for architecture UNKNOWN!" use -m option to specify the architecture
  19.  
  20. '''
  21. $ objdump -b binary -m i386 -D out
  22. '''
Add Comment
Please, Sign In to add comment