Subject:
|
Re: BrickOS installation with WinME and Cygnus problems
|
Newsgroups:
|
lugnet.robotics.rcx.legos
|
Date:
|
Wed, 6 Aug 2003 12:16:27 GMT
|
Viewed:
|
3372 times
|
| |
| |
In lugnet.robotics.rcx.legos, Tom Pugsley wrote:
> Thanks, Max, John, and Ed for your help. I will try some of the suggestions
> this afternoon after work. I will also post some more helpful output if someone
> will remind me how to port Cygwin output to a text file (and DOS output?) I
> read the command somewhere on this newsgroup, but didn't write it down.
>
> Tom
Tom,
You can always use the classic pipe to command, >. For example
$ make strip > output.txt
But I don't think this dumps any error messages to the file; only to the screen.
So I would try something similar to the commands in buildgcc.sh, like
$ make strip 2>&1 | tee --append output.txt
Double check this with what is in buildgcc.sh since I don't have it in front of
me. Also note that this will append the output to file each time. At this point
you would probably NOT want to do this because it might be tough to find where
the old output ends and the new begins. So just try something like
$ make strip 2>&1 | tee output.txt
Ed
|
|
Message has 1 Reply:
Message is in Reply To:
18 Messages in This Thread:
- Entire Thread on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
This Message and its Replies on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
|
|
|
|