Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install NetBeans C/C++ compiler?

Tags:

netbeans

What tools do I need instaled in NetBeans to build C++ programs? I don't have anything in "Tool Collections" in Options>C/C++. How can I add this tools in the most simple way? What is the standard tools for C++ programm execution, debug, syntaxis

like image 885
J.Olufsen Avatar asked Feb 26 '23 01:02

J.Olufsen


1 Answers

In Linux you have to install gcc and g++. In windows you can use cygwin. Download and install by choosing appropriate options.

enter image description here

In the search box search for gcc, gdb and make. Mark Install for all three in the "Devel" development tools category.

Then, go to netbeans, Tools -> Options -> C/C++

Click Restore defaults.

like image 71
Anantha Krishnan Avatar answered Apr 29 '23 01:04

Anantha Krishnan