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

Intellij Idea

Intellij Idea Problem Overview


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

Intellij Idea Solutions


Solution 1 - Intellij Idea

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.

Solution 2 - Intellij Idea

Simply download the cpp plugin of the old 14 version located here: https://plugins.jetbrains.com/plugin/1373-c-c-

Then edit the file CppTools/META-INF/plugin.xml and replace the "until-build" value in line 5 to something like until-build="170.0"

And this works perfectly :)

Solution 3 - Intellij Idea

One should really note that the "C/C++" plugin available in the IntelliJ Plugin Repository is actually not developed by Jetbrains, but by a third party called AdvancedTools, and has long not been updated. I'm not sure if that is related to the release of CLion, e.g. IntelliJ bought out the plugin to serve as the foundation of CLion or whatnot.

As listed in the CLion FAQ page, there is currently no official standalone plugin for C/C++ editing available for IntelliJ IDEA. Just as with some other products such as Jetbrains AppCode, Jetbrains are currently keeping CLion as an exclusively paid product, without a free community edition, as indicated in this forum post.

The post also confirmed that a plugin for IntelliJ IDEA might be coming in the future, but is currently (Jan 2018) not a priority for JetBrains.

So yeah for now the only way to get decent C/C++ support within the IntelliJ ecosystem is to use/buy JetBrains CLion.

Solution 4 - Intellij Idea

Download latest version of c/c++ extension from link: https://plugins.jetbrains.com/plugin/1373-c-c-

then open that CppTools.zip inside META-INF folder open file plugin.xml modify line five until-build="" from your own intellij idea build. Go to Help --> About in Your Intellij idea.

Go to Help --> About

plugin.xml file screenshot:

Plugin.xml

Now Go to File --> Settings --> Plugins --> Install plugins from Disk, browse ypur edited/ modified CppTools.zip.

Solution 5 - Intellij Idea

I faced this problem before and i figure out that the software i install it was old and not update, so try to see the plugin version and see is that plugin version compatible with your intellij-idea, if not check update for the intelli-idea ,the developers fix many problems in every update ,then download it. you can check compatibility from this page. Here

Solution 6 - Intellij Idea

Click on Preferences -> Plugins -> Browse Repositories and search for it

http://i.stack.imgur.com/lUEds.png" alt="Browse repositories">

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionhumazedView Question on Stackoverflow
Solution 1 - Intellij IdeaBas LeijdekkersView Answer on Stackoverflow
Solution 2 - Intellij IdeameirsView Answer on Stackoverflow
Solution 3 - Intellij IdeaxjiView Answer on Stackoverflow
Solution 4 - Intellij IdeaRahul KhatriView Answer on Stackoverflow
Solution 5 - Intellij IdeaN.ElsayedView Answer on Stackoverflow
Solution 6 - Intellij IdeaahammarView Answer on Stackoverflow