vote up 2 vote down star
1

I am redirecting the g++ compiler output(both stderr and stdout) to a file on linux. But it is creating an empty file.

I read in some other post that stdout is not flushed after every line. Thats ok, but what about stderr. In my case there are compilation errors running several screens. So, I am interested in stderr output. There is no stdout output created.

 g++ -c -I ~/cplusplus/boost_1_37_0/boost_1_37_0/ -I 
~/cplusplus/niVxWorksDeliver/TEES/ Algorithms.cpp 2> output

The above command creates an empty file named "output". The following command reports invalid null command.

 g++ -c -I ~/cplusplus/boost_1_37_0/boost_1_37_0/ -I    
~/cplusplus/niVxWorksDeliver/TEES/ Algorithms.cpp &> output
Invalid null command.
flag

What shell are you using? And is output generated when you don't do the redirection? – David Feb 23 at 17:08
i am using putty to connect to a linux box which uses a bash shell The main reason for redirection is to see the compilation errors which run across several screens. – rboorgapally Feb 23 at 17:24

4 Answers

vote up 4 vote down check

One of your comments betrays that you are not using bash. You're using csh or tcsh. In that case, you can redirect all output (including standard error) like this:

g++ -c Algorithms.cpp >& output

For more csh redirection syntax, I have a useful link bookmarked. Note that csh redirection syntax is not as fluent as bash syntax. You can do more in bash than you can in csh.

link|flag
i am sorry for misleading you. That was only due to my ignorance. Thank you very much. – rboorgapally Feb 23 at 22:12
vote up 0 vote down

Here.

link|flag
vote up 0 vote down

"No news is good news" -- does your command even produce any output? When there are no errors, g++ won't print out anything!

link|flag
i am concerned about stderr. i know that compilation of a file doesnt produce any output :) – rboorgapally Feb 23 at 17:12
Oh, you are right, I missed that. Sorry! – Ferdinand Beyer Feb 23 at 17:14
vote up 3 vote down

You might try this:

sh/bash/zsh version:

g++ -c -I ~/cplusplus/boost_1_37_0/boost_1_37_0/ \
       -I ~/cplusplus/niVxWorksDeliver/TEES/ \
       Algorithms.cpp > output 2>&1

csh or tcsh version:

g++ -c -I ~/cplusplus/boost_1_37_0/boost_1_37_0/ \
       -I ~/cplusplus/niVxWorksDeliver/TEES/ \
       Algorithms.cpp >& output
link|flag
g++ -c -I ~/cplusplus/boost_1_37_0/boost_1_37_0/ -I ~/cplusplus/niVxWorksDeliver/TEES/ Algorithms.cpp > output 2>&1 Ambiguous output redirect. – rboorgapally Feb 23 at 17:14
Your shell is not bash. That is a csh error message. – Rob Kennedy Feb 23 at 18:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.