Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't find C/C++ IntelliJ IDEA Plugin

I'm trying to add a c/c++ plugin to IntelliJ IDEA, so I went to plugins and searched for it but couldn't find it. Did they remove it and replace it with their new IDE cLion? Is it no longer supported or what?

enter image description here

like image 318
humazed Avatar asked Jan 20 '16 12:01

humazed


People also ask

How do I get C in IntelliJ?

If you are in linux system, try to get gcc for C and g++ for C++. If you are in windows system, you can try to get mingw or other compilers for C/C++. After getting the compiler, you could simply type commands in the terminal inside intelliJ to compile C/C++ and run it.

Can you code C in IntelliJ?

C/C++ are not officially supported in IntelliJ IDEA, but you can use CLion. You can browse the JetBrains Marketplace to find an official plugin that adds support for almost any language, framework or technology used today, or for third-party plugins.

Where are plugins installed in IntelliJ?

Press Ctrl+Alt+S to open the IDE settings and select Plugins. Open the Installed tab, find and select the plugin that you want to disable.

Where does IntelliJ store cache?

path): ~/Library/Caches/JetBrains/IntelliJIdea2020. 3.


1 Answers

Looks like the version of your IntelliJ IDEA is newer than what the C/C++ plugin supports. If you look at the plugin page you can see that builds from 139.1 until 142 are compatible. And if you look here you can see that build 141 is IntelliJ 14.1 and IntelliJ IDEA 15 is numbered 143. So my guess is you are using IntelliJ IDEA 15 or 16 EAP and therefore the plugin is not shown when you search for it.

like image 117
Bas Leijdekkers Avatar answered Sep 28 '22 06:09

Bas Leijdekkers