Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
A compiler is a program that translates your C++ code to object code, after which it is linked (by the linker) to an executable.
A compiler might emit compile warnings and compile errors.
Compile cleanly at high warning levels [1,3]. Prefer compile errors to runtime errors [2].
In the project file, add the following lines:
QMAKE_CXX = gcc |
In the project file, add the following lines:
QMAKE_C = gcc |
Go back to Richel Bilderbeek's C++ page.
Go back to Richel Bilderbeek's homepage.