g++

Compiles C++ source files. Part of GCC (GNU Compiler Collection). More information: https://gcc.gnu.org.

g++ path/to/source.cpp -o path/to/output_executable

g++ path/to/source.cpp -Wall -o path/to/output_executable

g++ path/to/source.cpp -std=c++98|c++11|c++14|c++17 -o path/to/output_executable

g++ path/to/source.cpp -o path/to/output_executable -Ipath/to/header -Lpath/to/library -llibrary_name

g++ -c path/to/source1.cpp path/to/source2.cpp ... && g++ -o path/to/output_executable path/to/source1.o path/to/source2.o ...

g++ path/to/source.cpp -O1|2|3|fast -o path/to/output_executable

g++ --version