0
How can I match an IDE to g++ compiler?
For instance I can not use my VS code because it has some probelms with using the g++ compiler
1 ответ
+ 1
For using g++ I recommend Linux. (Coding on Linux is generally much easier in my opinion.) On Linux you just need to type e.g
sudo apt install g++
and you're ready to code. Also you can use many different IDEs like QT creator or Gnome builder with g++ out of the box.
On Windows you can use g++ too (I think e.g. code::blocks supports it) but it might require some work to get it running.