Intel® C++ Compiler 19.0 Developer Guide and Reference
The following topic applies to
Eclipse* for C/C++.
Eclipse* can build a makefile that includes Intel® C++ Compiler options for created Executables, Shared Libraries, or Static Library Projects. See Setting Options for a Project or File. When the project is complete, export the makefile and project source files to another directory, then build the project from the command line using make.
To export the makefile:
In a terminal window, change to the /cpp/hello_world/Release directory, then run make by typing: make clean all.
You should see the following output:
rm -rf ./new_source_file.o ./new_source_file.d hello_world 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
This generates the hello_world.exe executable in the same directory.