dcrearer
dcrearer

Reputation: 2062

Eclipse IDE for C/C++ and Java

I am trying to set up a Java IDE on my Mac running El Capitan, however the installer that I have found requires me to install a separate IDE for C/C++ and Java (Eclipse Neon). What options does eclipse have that would me to have one IDE for multiple languages?

Upvotes: 17

Views: 40575

Answers (2)

Mickael
Mickael

Reputation: 3596

Just try to open a *.cpp file in your IDE, Eclipse will then prompt for possible plugins to install. This include the Eclipse C/C++ IDE plugins, that is the "official" one from Eclipse community.

Upvotes: 10

Elliott Frisch
Elliott Frisch

Reputation: 201439

Eclipse is a platform. Install either. Then run it. Click "Help > Install New Software ..." then in the "Work with" drop down select "Neon - http://download.eclipse.org/releases/neon/", then expand "Programming Languages" and select "C/C++" or "Java" as desired.

Programming Languages

And you can switch modes with "Window > Perspective > Open Perspective > Other"

Open Perspective

Upvotes: 31

Related Questions