Skip to content

Building and Installing the Eclipse Plugin

Yuriy Kolerov edited this page Jun 25, 2023 · 5 revisions

Preparing an Environment

We will assume that our build directory is /build/eclipse. All necessary tools, directories and prerequisite will be place there. Thus, go to this directory first:

mkdir /build/eclipse
cd /build/eclipse

Also create a directory for storing downloaded Maven packages:

mkdir /build/eclipse/repository

Maven

wget https://dlcdn.apache.org/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz
tar -xf apache-maven-3.5.4-bin.tar.gz

JDK

Download and extract JDK 11 to /build/eclipse/jdk-11.0.17.

Eclipse IDE

ℹ️ All builds and mirrors may be found on release's page.

Download and extract Eclipse 2020.03 with CDT for Linux:

wget https://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/2020-03/R/eclipse-cpp-2020-03-R-incubation-linux-gtk-x86_64.tar.gz
tar -xf eclipse-cpp-2020-03-R-incubation-linux-gtk-x86_64.tar.gz

Download and extract Eclipse 2020.03 with CDT for Windows:

wget https://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/2020-03/R/eclipse-cpp-2020-03-R-incubation-win32-x86_64.zip
tar -xf eclipse-cpp-2020-03-R-incubation-win32-x86_64.zip

The Plugin for Eclipse

Clone the corresponding repository:

git clone https://github.com/foss-for-synopsys-dwc-arc-processors/arc_gnu_eclipse
Clone this wiki locally