How can I view the command line invocations of all executed tools during a build?

23-Sep-2024

To view all tool invocations during a build in the Console view of Eclipse:

1. Select Project | Properties | C/C++ Build | Settings | Global Options

2. Enable the option Verbose mode of control program and rebuild your application or file.

From the command line, you can use the control program option --verbose (or simply -v) as shown below:

cctc --verbose test.c

Was this answer helpful?