You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a linker command which outputs map data to stdout.
I tried using "> output.map" which failed because it is passed as an argument
to the command itself and not to the shell.
In the original makefile, i have the following to capture the map file:
link options -o output objects > output.map
Is there a way to capture the stdout and let stderr to go to screen ?
Probably tee.exe may help to redirect the output to a file but the issue is to
redirect output of a command to its own output file.
version: 1.26
OS: Windows7 64-bit
Original issue reported on code.google.com by satis...@gmail.com on 5 Jan 2014 at 8:40
The text was updated successfully, but these errors were encountered:
bump! I tried `shell(..., stderr=subprocess.PIPE)` but it raises
TypeError: type object got multiple values for keyword argument 'stderr'
May be there is a way to allow this simply? Of course it's possible to directly
use subprocess.
Original comment by wer...@beroux.com on 11 Aug 2014 at 2:34
Original issue reported on code.google.com by
satis...@gmail.com
on 5 Jan 2014 at 8:40The text was updated successfully, but these errors were encountered: