Author Topic: How to see full build commands?  (Read 3799 times)

Offline tasdev

  • Multiple posting newcomer
  • *
  • Posts: 10
How to see full build commands?
« on: September 18, 2006, 05:37:07 am »
Hi Everyone

Is there a way to see the full build commands being generated in the "Build Log"? For example:

gcc -pthread blah.c
etc

I am having trouble with pthreads and need to add the -pthread option to GCC, but even after doing it I still get weird pthread issues in the latest nightly. (Worked fine previously).

Cheers

tasdev

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7591
    • My Best Post
Re: How to see full build commands?
« Reply #1 on: September 18, 2006, 05:59:44 am »
"Settings" -> "Compiler and Debugger"

Select the compiler to change.

Select Tab "Other"
Change "Compiler Logging" to "Full Command Line"

Tim S
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline tasdev

  • Multiple posting newcomer
  • *
  • Posts: 10
Re: How to see full build commands?
« Reply #2 on: September 18, 2006, 06:50:05 am »
Thanks Tim, works great!