Results 1 to 3 of 3
How do i copy the contents of the errors and other details which i get while compilation into a file?
for example: gcc abc.c
will generate some errors how will ...
- 05-31-2007 #1Just Joined!
- Join Date
- May 2007
- Posts
- 5
How to copy the contents which we get on compilation into a file?
How do i copy the contents of the errors and other details which i get while compilation into a file?
for example: gcc abc.c
will generate some errors how will i copy the contents? I have tried piping but every time i get an empty file
- 05-31-2007 #2
Do
# make 2>make.log 1>&2
This shud redirect all stderr and stdout to make.log file.---------------------------------
Registered Linux User #440311
HI2ARUN _AT_ GMAIL _DOT_ COM
---------------------------------
- 05-31-2007 #3Just Joined!
- Join Date
- May 2007
- Posts
- 5
Thanks man


Reply With Quote
