Building a Project

The following topic applies to Eclipse* for C/C++.

To build your project:

  1. Select the hello_world project in the Project Explorer view.
  2. Select Project > Build Project.

See the Build results in the Console view.

**** Incremental Build of configuration Release for project hello_world ****
make all 
Building file: ../new_source_file.c
Invoking: Intel C Compiler
icc -O2 -MMD -MP -MF"new_source_file.d" -MT"new_source_file.d" -c -o "new_source_file.o" "../new_source_file.c"
Finished building: ../new_source_file.c
 
Building target: hello_world
Invoking: Intel C Linker
icc  -o "hello_world"  ./new_source_file.o   
Finished building target: hello_world

Build Finished

Detailed descriptions of errors, warnings, and other output can be viewed by selecting the Problems tab.