Settings in Codeblocks

I'm an absolute beginner, so bear with me. BTW, I'm running Linux Mint Cinnamon 17.3 and Codeblocks 16.1. Following the C++ tutorial, I try to build and run the "Hello World" script. I get the following:


-------------- Build: Debug in HW (compiler: GNU GCC Compiler)---------------

g++ -Wall -fexceptions -g -std=c++11 -c /home/dave/CPP/HW/main.cpp -o obj/Debug/main.o
/bin/sh: 1: g++: not found
Process terminated with status 127 (0 minute(s), 0 second(s))
0 error(s), 0 warning(s) (0 minute(s), 0 second(s))

I figured a setting's not right. Any and all help is greatly appreciated.
Hi,

looks like you have not installed the g++ compiler on your linux....
Press
 Alt-Ctrl-T 
to open the terminal.
Type in
sudo apt-get install g++

This command installs g++. You may be prompted for your password(if you have one) while installing g++.
Did my solution work?
Topic archived. No new replies allowed.