News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

Post operation pipe to file not working

Started by BrianSidebotham, May 22, 2007, 04:38:01 PM

Previous topic - Next topic

BrianSidebotham

Hi guys,

If I execute

arm-elf-objdump -h -S test.elf >> test.lss


in a normal shell, I end up with the output of objdump as a file. Yet, if I add this as a post operation in codeblocks, the output of objdump goes to the build-log window instead. I then get a message at the end which says:

Warning >> is not an ordinary file

in the build messages window. I don't have the codeblocks source at the moment, so can't go an investigate. But is there a workaround, or a known way to pipe to a file under codeblocks?

Sorry, I meant to say:

Working on Windows XP, c::b SVN 3970

Biplab

Issue the following command.
cmd.exe /C "arm-elf-objdump -h -S test.elf >> test.lss"

Regards,

Biplab
Be a part of the solution, not a part of the problem.

BrianSidebotham