- Download Eclipse Technology that is right for you
- Tool Platforms
- Get Eclipse IDE 2021‑09
- Eclipse Che
- Orion
- Runtime Platforms
- GlassFish
- Jetty
- Equinox
- Concierge
- Write C/C++ on Mac with Eclipse, no Xcode
- 5 Steps to Install Eclipse
- 1. Download the Eclipse Installer
- 2. Start the Eclipse Installer executable
- 3. Select the package to install
- 4. Select your installation folder
- 5. Launch Eclipse
- Установка eclipse для c mac os
- Eclipse IDE for C/C++ Developers
- Package Description
- This package includes:
- Download Links
- Bugzilla
Download Eclipse Technology
that is right for you
Tool Platforms
The Eclipse Installer 2021‑09 R now includes a JRE for macOS, Windows and Linux.
Get Eclipse IDE 2021‑09
Install your favorite desktop IDE packages.
Eclipse Che is a developer workspace server and cloud IDE.
Eclipse Che
Eclipse Che is a developer workspace server and cloud IDE.
A modern, open source software development environment that runs in the cloud.
Orion
A modern, open source software development environment that runs in the cloud.
Runtime Platforms
Eclipse GlassFish provides a complete application server which serves as a compatible implementation for the Jakarta EE specification.
GlassFish
Eclipse GlassFish provides a complete application server which serves as a compatible implementation for the Jakarta EE specification.
Eclipse Jetty provides a web server and javax.servlet container.
Jetty
Eclipse Jetty provides a web server and javax.servlet container.
Eclipse Equinox is an implementation of the OSGi core framework specification.
Equinox
Eclipse Equinox is an implementation of the OSGi core framework specification.
Eclipse Concierge is a small footprint implementation of the OSGi specification.
Concierge
Eclipse Concierge is a small footprint implementation of the OSGi specification.
Enabling modular business apps for desktop, browser and mobile.
Enabling modular business apps for desktop, browser and mobile.
Источник
Write C/C++ on Mac with Eclipse, no Xcode
Apple’s Xcode development system is superb for developing applications, but sometimes you just want to write C or C++ code for research or school. Composing a serious chunk of code with vi is no longer acceptable,* so users in this frame of mind are now using Eclipse, a modern IDE, that’s also free. Here’s how to get gcc without installing Apple’s Xcode and then install Eclipse for C/C++ programming.
What’s the Motivation?
At work recently, my wife was chatting with a colleague who was taking his first C++ class. She taught him how to use Eclipse on a Mac, even though he resisted at first. However, later, he came back and commented that the other students were trying to manage ever increasingly complex projects with the vi editor. It was taking them four, six, or even 20 hours in some cases to complete their homework each week. He finished his, typically, in 30 minutes. That’s the power of an IDE with a modern debugger. That last item, the debugger, can’t be emphasized enough. Print statements in your code are oh, so yesteryear with a tool like this. Time is money, and efficiency reflects on you as a programmer.
So if you’re a scientist, researcher or engineer who wants to write some research code, not intended as a GUI app, in Java, C, C++ or Fortran, you need to dump vi as an editor* (or Emacs or Nedit or whatever) immediately and get with this kind of IDE. Things are moving far too fast nowadays not to make this important move. (Clearly, I’m speaking to an older crowd here.**)
To be perfectly clear, Apple’s Xcode is a fabulous development system for C, C++, Objective-C and even Fortran 77***. You can build native OS X and iOS apps. But many researchers and scientists aren’t interested in Xcode. They’ve come from a Linux or other UNIX platform, like IBM’s AIX, and they just want to carry on their research in Eclipse on a Mac. This how-to is primarily for them. But, as I mentioned above, students who are taking their first programming class and own a Mac will also find this discussion useful — indeed mandatory. Remember, this is an introduction to whet your appetite and get you launched, not a complete Eclipse tutorial.
Also, this how-to for the sake of simplicity focuses on C/C++, but Eclipse can handle a myriad of languages, including, but not limited to, Java and Fortran. Let’s start with C/C++.
Getting the gcc Compiler
As an aside, when you install Apple’s Xcode (free from the Mac App Store only in Lion), gcc is automatically installed in /usr/bin. But if you have a mind to work with just Eclipse and gcc, you’ll need a way to install gcc without, if it pleases you, installing Apple’s Xcode first. (For reference, here’s a how-to on installing Xcode and gcc.)
There are at least two places I know of where you can get a gcc installer package for OS X:
- Developer Tools 4.0 Source
- The OS X High Performance Computing page at Sourceforge managed by Dr. Gaurav Khanna at the University of Mass.
If you find other sources, let us know.
Installing Eclipse
Here’s a handy reference on where to get Eclipse for the Mac. Version 3.7 (“Indigo”) installs nicely in Lion and seems to work okay, but our household hasn’t put it to a grueling acid test with OS X 10.7.1.
Eclipse Download for CC++, 64-bit
The download is a …tar.gz file, so move it where you want the Eclipse directory to be because when you double click it, the package will be unzipped and untared right there. After Eclipse is installed, you’ll see it as an app, just like any other, with this icon.
It’s easy to create an alias to eclipse.app, if you wish, and place it in your /Application directory. Because the Eclipse IDE itself is written in Java, if you’re running a clean copy of Lion, you’ll need to download the Java runtime before the Eclipse app will launch. Just double-click on Eclipse, and it’ll trigger the required Java runtime download. Nothing else to do. If you’re in Snow Leopard, the Java runtime is already there.
Java runtime download
This first thing you’ll see when you run Eclipse is that it asks for the location of your workspace. I typically create a directory in /Users/john called Programming where I do any code development. (Which is not much these days.)
Workspace Selection
After you select your workspace, you’ll be confronted with an Eclipse peculiarity. A welcome page will be launched that brings a real feeling of WTF to many users. Here it is.
Welcome screen
The trick is to realize that the icon on the far right, circled in red above, takes you into the workbench. For that named workspace, this one time is the only time you’ll see that screen.
Once the IDE is launched, there are just a few details before you can build a project. Again, for simplicity, lets stay with C/C++. From the Eclipse File menu, select “New” and then C++ Project.
Eclipse — New Project
Experienced Eclipse users know the drill. Name the project, make sure you’ve identified the location of your compiler in the Toolchain, and so on. (It may be different than the default install by Apple’s Xcode. The screen shot below shows Apple’s install of gcc, marked as MacOSX GCC, because I’d previously installed Xcode on that Mac.)
Configuration
Newbies may want to select the Hello World project just to see how things get set up. Make sure you work your way through the setup with Next > at the bottom and don’t click the Finish button too soon. A more detailed examination of this set up and the ins-and-outs of Eclipse are beyond the scope of this getting started article. The goal here is simply an introduction for Mac users. And you’re not alone. There’s a huge body of knowledge on the Internet about Eclipse. Here’s a start.
If all went well, you’ll be in the Eclipse IDE with the Hello World program in the editor and a Make file already created. This environment is called the Eclipse workbench.
Eclipse Workbench w/ default “Hello World” code
It may take you some start-up time to learn Eclipse, but trust me, coding the old way will soon bog you down. The Xcode and Eclipse developers learn from each other, so if you ever decide to get into OS X or iOS development, having earned your wings in Eclipse will pay huge dividends later.
* I’m qualified to say this because I’ve lived and breathed vi for a living in the past.
** Remember, a lot of people are going back to school, learning or refreshing their programming skills.
*** You can write and compile Fortran 77 in Xcode with standard output, but you can’t access the Cocoa APIs and build native apps in F77.
Источник
5 Steps to Install Eclipse
We’ve recently introduced the Eclipse Installer, a new and more efficient way to install Eclipse. It is a proper installer (no zip files), with a self-extracting download that leads you through the installation process. For those who prefer not to use the Installer, the packages and zip files are still available on our package download page.
1. Download the Eclipse Installer
Eclipse is hosted on many mirrors around the world. Please select the one closest to you and start to download the Installer
2. Start the Eclipse Installer executable
For Windows users, after the Eclipse Installer executable has finished downloading it should be available in your download directory. Start the Eclipse Installer executable. You may get a security warning to run this file. If the Eclipse Foundation is the Publisher, you are good to select Run.
For Mac and Linux users, you will still need to unzip the download to create the Installer. Start the Installer once it is available.
3. Select the package to install
The new Eclipse Installer shows the packages available to Eclipse users. You can search for the package you want to install or scroll through the list.
Select and click on the package you want to install.
4. Select your installation folder
Specify the folder where you want Eclipse to be installed. The default folder will be in your User directory.
Select the ‘Install’ button to begin the installation.
5. Launch Eclipse
Once the installation is complete you can now launch Eclipse. The Eclipse Installer has done it’s work. Happy coding.
Источник
Установка eclipse для c mac os
Community
Participate
Eclipse IDE
Eclipse IDE for C/C++ Developers
Package Description
An IDE for C/C++ developers with Mylyn integration.
This package includes:
- org.eclipse.cvs
- org.eclipse.equinox.p2.user.ui
- org.eclipse.help
- org.eclipse.platform
- org.eclipse.rcp
- org.eclipse.cdt.platform
- org.eclipse.cdt
- org.eclipse.mylyn_feature
- org.eclipse.mylyn.context_feature
- org.eclipse.mylyn.team_feature
- org.eclipse.mylyn.ide_feature
- org.eclipse.mylyn.bugzilla_feature
- org.eclipse.mylyn.wikitext_feature
- org.eclipse.cdt.mylyn
- org.eclipse.cdt.p2
- org.eclipse.cdt.debug.ui.memory
- org.eclipse.epp.package.common.feature
Maintained by: Eclipse Packaging Project
Download Links
Bugzilla
Bug ID | Title | Status |
496240 | Opening «Help Contents» prints some warning messages about log4j | NEW |
496363 | Cursor down at bottom of edit box only scrolls last two lines of text. | NEW |
490235 | Where can I add the lib files of C like include stdio.h in my project? | NEW |
480141 | C++ package should include the XML editor | NEW |
451930 | Create a debian package for EPP CPP | NEW |
455050 | Use Tycho 0.23.0-SNAPSHOT to leverage ability to express native dependencies | NEW |
506244 | Include a runtime (OpenJDK 11+) in some EPPs | NEW |
512302 | Crash on Customize Perspective | NEW |
534619 | [Photon] [cpp] Include Tip of the Day | NEW |
542755 | CPP and Parallel packages require Java 11 support to build | NEW |
534592 | Error create interactive console | NEW |
522015 | Response of: Value must be an existing directory, when using $ | NEW |
521784 | Bug 446072 | NEW |
238857 | Deadlock opening dialogs on EPP C++ | NEW |
449530 | This app can’t run on your pc To find a version for your PC, please check with the software provider | NEW |
316452 | Run and Debug time termination (eclipse-cpp-helios-RC3-win32-x86_64) | NEW |
319647 | MCS51 family SDCC not compatible with build id 20100218-1602? | NEW |
316437 | Error and termination while Run or Debug is executed (eclipse-cpp-helios-RC3-win32-x86_64) | NEW |
281052 | «Binary not found» when launching application after switching perspective | NEW |
250367 | Crashed after updating process | NEW |
321677 | CDT Helios impossible to install new software via GUI | NEW |
336456 | Showing the actual (int) value of an enum variable in CDT editor on hover | NEW |
442975 | Can’t create a new Project | NEW |
444682 | The EPP C/C++ Package «Samples» are empty on the Welcome page | NEW |
444683 | The EPP C/C++ Package docs mix «user docs» with «developer docs» | NEW |
422424 | Bug «Restore Defaults» on CVS Repositories | NEW |
375866 | The CPP package content description (feature list) is outdated since Juno | NEW |
338462 | Cannot complete the install because of a conflicting dependency. Software being installed: Eclipse Java Development Tools 3.6.2 | NEW |
535781 | [EPP Photon RC3] java.lang.NoClassDefFoundError: org/eclipse/linuxtools/docker/core/IDockerConnection | ASSIGNED |
Bugs listed in italics indicate the bug has been moved to another project.
Bug ID | Title | Status |
441906 | java 1.7 not found | RESOLVED |
443474 | Crashes in 64 bit, advises need for 1.7 in 32 bit | RESOLVED |
450389 | cant install the download I made on my Pc | RESOLVED |
404686 | Download and Detail Checksums Don’t Match | RESOLVED |
396874 | Wrong Download! | RESOLVED |
230318 | Add Mylyn support to C/C++ IDE | RESOLVED |
382264 | The «Eclipse IDE for C/C++ Developers» builds are missing from the developer downloads page | RESOLVED |
460821 | MARS: No ability to add Java | RESOLVED |
478463 | Add multi-core visualizer and hardware debugging features | RESOLVED |
516675 | Add Terminal to CPP Package | RESOLVED |
520285 | lots of errors | RESOLVED |
549433 | Launchbar cannot be updated with Check for Updates | RESOLVED |
493861 | Never ever run in Dell Inspiron | RESOLVED |
490552 | Some features are not at the top-level in the new layout | RESOLVED |
480536 | Eclipse IDE for C++ fails to launch. Cannot find shared libraries. | RESOLVED |
490046 | [Welcome] Adopt Solstice theme for CPP package | RESOLVED |
340070 | Add features to CPP package | RESOLVED |
347860 | Add egit to cpp package | RESOLVED |
302165 | Move CDT version up to 7.0 for Helios | RESOLVED |
324865 | GDB / MI not available in eclipse Helios | RESOLVED |
251315 | Eclipse C++ Error /mingw/lib/libmingw32.a(main.o):main.c: undefined reference to `WinMain@16′ | RESOLVED |
261138 | Installation of XML editor fails on eclipse linux 64 Bit c++ edition | RESOLVED |
250368 | the Format is wrong | RESOLVED |
238201 | sometimes can’t start package on Linux 32 | RESOLVED |
236699 | SWT missing from CDT RC3 package for Linux64 | RESOLVED |
275213 | New feature for C/C++ Package | RESOLVED |
286944 | Eclipse IDE for C/C++ Developers — Mac OSX — does not include symbolic link to executable | RESOLVED |
278310 | Can’t update with P2 (but then again, what’s new . ) | RESOLVED |
466568 | eclipse-cpp-luna-SR2-linux-gtk-x86_64.tar.gz appears to be incomplete | CLOSED |
503020 | New eclipse not coming up — Giving java error | CLOSED |
535309 | EPP builds failing | CLOSED |
521395 | Ctrl+Click Indexing doesn’t work in C++ modules | CLOSED |
520286 | lots of errors | CLOSED |
304607 | New feature for CPP package | CLOSED |
346223 | Add CDT update site to discovery | CLOSED |
333068 | Link to CDT New and Noteworthy is outdated | CLOSED |
345190 | Cannot configure CDT Indexer for Microsoft SDK 7 | CLOSED |
343981 | Add autotools feature | CLOSED |
334840 | Windows->Preferences menu item missing | CLOSED |
379734 | RFE: optionally import Linux Tools features via p2.inf rather than include them | CLOSED |
328546 | ‘File Seach’ feature — does not work the first time you run it | CLOSED |
316038 | new CDT logo for CPP package | CLOSED |
313497 | Eclipse Helios M7 for Linux x64 crashes on startup on openSUSE 11.2/x86_64 | CLOSED |
438545 | Team preferences missing | CLOSED |
405222 | I cant open up Eclipse at all | CLOSED |
324522 | eclipse hang by debugging inside linked librarys | CLOSED |
336606 | Eclipse Ganymede IDE hangs in Ubuntu 10.04 | CLOSED |
Bugs listed in italics indicate the bug has been moved to another project.
Источник