How to send objdump result to file?

I want to run objdump in an execuatble file in Windows XP and want to know the details. However, I cannot find a way to output the result in a text file - since the output to the console is chopped off (I also tried using the -o or / out options to specify ooutfilename, but it does not seem to exist)

+8
c ++ c windows objdump
source share
1 answer

Does redirection of normal shell operation work for you? Example:

objdump -d file.o > file.txt 
+16
source share

All Articles