News:

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

Main Menu

redirect standard output in pre/post build steps

Started by squirrel, April 11, 2007, 09:30:29 AM

Previous topic - Next topic

squirrel

I want to redirect standard out in post build steps.
e.g.

objdump -dSt target.elf > target.lst

This works under linux, under windows the part of command line after ".elf" is omitted.

So I tried to def a custom variable like

ARGS=-dSt target.elf > target.lst

in order to do

objdump $(ARGS)

but C::B inserts quotes around ARGS and that approach does not work either.

Can you give ma a hint on how to define such a post build step?

mandrav

Try this:


cmd /c objdump -dSt target.elf > target.lst
Be patient!
This bug will be fixed soon...

aozima

Thanks!!!
I'm OK! (windows,WINAVR)


[attachment deleted by admin]
Sorry for my poor english.