Hello,
I'm building an opensource project from source (CPP) in Linux. This is the order:
$CFLAGS="-g Wall" CXXFLAGS="-g Wall" ../trunk/configure --prefix=/somepath/ --host=i386-pc --target=i386-pc
$make
While compiling I'm getting lot of compiler warnings. I want to start fixing them. My question is how to capture all the compiler output to a file?
$make > file
is not doing the job. Its just saving the the compiler command like g++ -someoptions /asdf/xyz.cpp
I want the output of these command executions.