Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: caneta on March 25, 2011, 03:06:16 pm

Title: See compilation command performed by codeblocks [Solved]
Post by: caneta on March 25, 2011, 03:06:16 pm
Hi everyone.
I'm dealing with a huge project on linux.
The compilation works fine but I' would like to see the compilation command performed by codeblocks, something like

Code
g++ -o myExecutable myFile.cpp

If possible, how can I do that?
Title: Re: See compilation command performed by codeblocks
Post by: oBFusCATed on March 25, 2011, 03:42:33 pm
Read here: http://wiki.codeblocks.org/index.php?title=FAQ#Q:_How_do_I_troubleshoot_an_compiler_problem.3F
Title: Re: See compilation command performed by codeblocks
Post by: caneta on March 25, 2011, 03:55:05 pm
It was exactly what I was searching for:

Quote from: link above
This is done by selecting the "Full command line" option Under menu "Settings" -> "Compiler and Debugger" -> Global compiler settings -> [the compiler you use] -> "Other Setting" tab, "Compiler logging"

Thank you very much!