7511cd7
diff --git a/eclipse.platform.swt.binaries/pom.xml b/eclipse.platform.swt.binaries/pom.xml
7511cd7
index 7dd0536..66d79ee 100644
7511cd7
--- a/eclipse.platform.swt.binaries/pom.xml
7511cd7
+++ b/eclipse.platform.swt.binaries/pom.xml
365159b
@@ -53,6 +53,8 @@
a69dbca
     <module>bundles/org.eclipse.swt.gtk.linux.ppc64le</module>
7511cd7
     <module>bundles/org.eclipse.swt.gtk.linux.s390</module>
7511cd7
     <module>bundles/org.eclipse.swt.gtk.linux.s390x</module>
7511cd7
+    <module>bundles/org.eclipse.swt.gtk.linux.arm</module>
7511cd7
+    <module>bundles/org.eclipse.swt.gtk.linux.aarch64</module>
7511cd7
     <module>bundles/org.eclipse.swt.gtk.linux.x86</module>
7511cd7
     <module>bundles/org.eclipse.swt.gtk.linux.x86_64</module>
7511cd7
     <module>bundles/org.eclipse.swt.gtk.solaris.sparc</module>
a0e15dc
diff --git a/rt.equinox.framework/pom.xml b/rt.equinox.framework/pom.xml
a0e15dc
index b46cdc6..0fb36a5 100644
a0e15dc
--- a/rt.equinox.framework/pom.xml
a0e15dc
+++ b/rt.equinox.framework/pom.xml
365159b
@@ -54,6 +54,8 @@
a0e15dc
     <module>bundles/org.eclipse.equinox.launcher.gtk.aix.ppc</module>
a0e15dc
     <module>bundles/org.eclipse.equinox.launcher.gtk.aix.ppc64</module>
a0e15dc
     <module>bundles/org.eclipse.equinox.launcher.gtk.hpux.ia64</module>
a0e15dc
+    <module>bundles/org.eclipse.equinox.launcher.gtk.linux.arm</module>
a0e15dc
+    <module>bundles/org.eclipse.equinox.launcher.gtk.linux.aarch64</module>
a0e15dc
     <module>bundles/org.eclipse.equinox.launcher.gtk.linux.ppc</module>
a0e15dc
     <module>bundles/org.eclipse.equinox.launcher.gtk.linux.ppc64</module>
a69dbca
     <module>bundles/org.eclipse.equinox.launcher.gtk.linux.ppc64le</module>
7511cd7
diff --git a/eclipse.platform.ui/features/org.eclipse.e4.rcp/feature.xml b/eclipse.platform.ui/features/org.eclipse.e4.rcp/feature.xml
7511cd7
index 7e1f520..734dd10 100644
7511cd7
--- a/eclipse.platform.ui/features/org.eclipse.e4.rcp/feature.xml
7511cd7
+++ b/eclipse.platform.ui/features/org.eclipse.e4.rcp/feature.xml
a69dbca
@@ -419,6 +419,26 @@
7511cd7
          install-size="0"
7511cd7
          version="0.0.0"
7511cd7
          fragment="true"/>
7511cd7
+         
7511cd7
+   
7511cd7
+         id="org.eclipse.equinox.launcher.gtk.linux.arm"
7511cd7
+         os="linux"
7511cd7
+         ws="gtk"
7511cd7
+         arch="arm"
7511cd7
+         download-size="0"
7511cd7
+         install-size="0"
7511cd7
+         version="0.0.0"
7511cd7
+         fragment="true"/>
7511cd7
+
7511cd7
+   
7511cd7
+         id="org.eclipse.equinox.launcher.gtk.linux.aarch64"
7511cd7
+         os="linux"
7511cd7
+         ws="gtk"
7511cd7
+         arch="aarch64"
7511cd7
+         download-size="0"
7511cd7
+         install-size="0"
7511cd7
+         version="0.0.0"
7511cd7
+         fragment="true"/>
7511cd7
 
7511cd7
    
7511cd7
          id="org.eclipse.equinox.launcher.gtk.linux.x86"
a69dbca
@@ -583,6 +613,28 @@
7511cd7
          version="0.0.0"
7511cd7
          fragment="true"
7511cd7
          unpack="false"/>
7511cd7
+         
7511cd7
+   
7511cd7
+         id="org.eclipse.swt.gtk.linux.arm"
7511cd7
+         os="linux"
7511cd7
+         ws="gtk"
7511cd7
+         arch="arm"
7511cd7
+         download-size="0"
7511cd7
+         install-size="0"
7511cd7
+         version="0.0.0"
7511cd7
+         fragment="true"
7511cd7
+         unpack="false"/>
7511cd7
+
7511cd7
+   
7511cd7
+         id="org.eclipse.swt.gtk.linux.aarch64"
7511cd7
+         os="linux"
7511cd7
+         ws="gtk"
7511cd7
+         arch="aarch64"
7511cd7
+         download-size="0"
7511cd7
+         install-size="0"
7511cd7
+         version="0.0.0"
7511cd7
+         fragment="true"
7511cd7
+         unpack="false"/>
7511cd7
 
7511cd7
    
7511cd7
          id="org.eclipse.swt.gtk.linux.ppc"
Mat Booth f0d416f
diff --git a/rt.equinox.framework/features/org.eclipse.equinox.executable.feature/library/gtk/build.sh b/rt.equinox.framework/features/org.eclipse.equinox.executable.feature/library/gtk/build.sh
7511cd7
index 29d3871..45526c8 100644
Mat Booth f0d416f
--- a/rt.equinox.framework/features/org.eclipse.equinox.executable.feature/library/gtk/build.sh
Mat Booth f0d416f
+++ b/rt.equinox.framework/features/org.eclipse.equinox.executable.feature/library/gtk/build.sh
a0e15dc
@@ -119,6 +125,16 @@
7511cd7
 				defaultJava=DEFAULT_JAVA_EXEC
7511cd7
 				OUTPUT_DIR="$EXEC_DIR/bin/$defaultWS/$defaultOS/$defaultOSArch"
7511cd7
 				;;
7511cd7
+			arm*)
7511cd7
+				defaultOSArch="arm"
7511cd7
+				defaultJava=DEFAULT_JAVA_EXEC
7511cd7
+				OUTPUT_DIR="$EXEC_DIR/bin/$defaultWS/$defaultOS/$defaultOSArch"
7511cd7
+				;;
7511cd7
+			"aarch64")
7511cd7
+				defaultOSArch="aarch64"
7511cd7
+				defaultJava=DEFAULT_JAVA_EXEC
7511cd7
+				OUTPUT_DIR="$EXEC_DIR/bin/$defaultWS/$defaultOS/$defaultOSArch"
7511cd7
+				;;
7511cd7
 			*)
7511cd7
 				echo "*** Unknown MODEL <${MODEL}>"
7511cd7
 				;;
365159b
--- a/rt.equinox.framework/features/org.eclipse.equinox.executable.feature/pom.xml	2014-11-28 15:09:42.000000000 +0000
365159b
+++ b/rt.equinox.framework/features/org.eclipse.equinox.executable.feature/pom.xml	2014-11-28 16:52:00.315007846 +0000
1695dc1
@@ -219,6 +219,189 @@
Krzysztof Daniel 9929ce3
         </plugins>
Krzysztof Daniel 9929ce3
       </build>
Krzysztof Daniel 9929ce3
     </profile>
Mat Booth f0d416f
+
Mat Booth f0d416f
+    <profile>
Krzysztof Daniel 9929ce3
+      <id>build-native-launchers-gtk.linux.ppc</id>
Krzysztof Daniel 9929ce3
+      <activation>
Krzysztof Daniel 9929ce3
+        <property>
Krzysztof Daniel 9929ce3
+          <name>native</name>
Krzysztof Daniel 9929ce3
+          <value>gtk.linux.ppc</value>
Krzysztof Daniel 9929ce3
+        </property>
Krzysztof Daniel 9929ce3
+      </activation>
Krzysztof Daniel 9929ce3
+      <build>
Krzysztof Daniel 9929ce3
+        <plugins>
Krzysztof Daniel 9929ce3
+          <plugin>
Krzysztof Daniel 9929ce3
+            <artifactId>maven-antrun-plugin</artifactId>
Krzysztof Daniel 9929ce3
+            <executions>
Krzysztof Daniel 9929ce3
+              <execution>
Krzysztof Daniel 9929ce3
+                <id>compile-executable-natives</id>
Krzysztof Daniel 9929ce3
+                <phase>generate-resources</phase>
Krzysztof Daniel 9929ce3
+                <configuration>
Krzysztof Daniel 9929ce3
+                  <target>
8fc0bff
+                    <ant antfile="build.xml" dir="library/gtk/" target="build_eclipse"/>
Krzysztof Daniel 9929ce3
+                  </target>
Krzysztof Daniel 9929ce3
+                </configuration>
Krzysztof Daniel 9929ce3
+                <goals>
Krzysztof Daniel 9929ce3
+                  <goal>run</goal>
Krzysztof Daniel 9929ce3
+                </goals>
Krzysztof Daniel 9929ce3
+              </execution>
Krzysztof Daniel 9929ce3
+            </executions>
Krzysztof Daniel 9929ce3
+          </plugin>
Krzysztof Daniel 9929ce3
+        </plugins>
Krzysztof Daniel 9929ce3
+      </build>
Krzysztof Daniel 9929ce3
+    </profile>
Mat Booth f0d416f
+    <profile>
Krzysztof Daniel 9929ce3
+      <id>build-native-launchers-gtk.linux.ppc64</id>
Krzysztof Daniel 9929ce3
+      <activation>
Krzysztof Daniel 9929ce3
+        <property>
Krzysztof Daniel 9929ce3
+          <name>native</name>
Krzysztof Daniel 9929ce3
+          <value>gtk.linux.ppc64</value>
Krzysztof Daniel 9929ce3
+        </property>
Krzysztof Daniel 9929ce3
+      </activation>
Krzysztof Daniel 9929ce3
+      <build>
Krzysztof Daniel 9929ce3
+        <plugins>
Krzysztof Daniel 9929ce3
+          <plugin>
Krzysztof Daniel 9929ce3
+            <artifactId>maven-antrun-plugin</artifactId>
Krzysztof Daniel 9929ce3
+            <executions>
Krzysztof Daniel 9929ce3
+              <execution>
Krzysztof Daniel 9929ce3
+                <id>compile-executable-natives</id>
Krzysztof Daniel 9929ce3
+                <phase>generate-resources</phase>
Krzysztof Daniel 9929ce3
+                <configuration>
Krzysztof Daniel 9929ce3
+                  <target>
8fc0bff
+                    <ant antfile="build.xml" dir="library/gtk/" target="build_eclipse"/>
Krzysztof Daniel 9929ce3
+                  </target>
Krzysztof Daniel 9929ce3
+                </configuration>
Krzysztof Daniel 9929ce3
+                <goals>
Krzysztof Daniel 9929ce3
+                  <goal>run</goal>
Krzysztof Daniel 9929ce3
+                </goals>
Krzysztof Daniel 9929ce3
+              </execution>
Krzysztof Daniel 9929ce3
+            </executions>
Krzysztof Daniel 9929ce3
+          </plugin>
Krzysztof Daniel 9929ce3
+        </plugins>
Krzysztof Daniel 9929ce3
+      </build>
Krzysztof Daniel 9929ce3
+    </profile>
Mat Booth f0d416f
+
Mat Booth f0d416f
+    <profile>
Krzysztof Daniel 9929ce3
+      <id>build-native-launchers-gtk.linux.arm</id>
Krzysztof Daniel 9929ce3
+      <activation>
Krzysztof Daniel 9929ce3
+        <property>
Krzysztof Daniel 9929ce3
+          <name>native</name>
Krzysztof Daniel 9929ce3
+          <value>gtk.linux.arm</value>
Krzysztof Daniel 9929ce3
+        </property>
Krzysztof Daniel 9929ce3
+      </activation>
Krzysztof Daniel 9929ce3
+      <build>
Krzysztof Daniel 9929ce3
+        <plugins>
Krzysztof Daniel 9929ce3
+          <plugin>
Krzysztof Daniel 9929ce3
+            <artifactId>maven-antrun-plugin</artifactId>
Krzysztof Daniel 9929ce3
+            <executions>
Krzysztof Daniel 9929ce3
+              <execution>
Krzysztof Daniel 9929ce3
+                <id>compile-executable-natives</id>
Krzysztof Daniel 9929ce3
+                <phase>generate-resources</phase>
Krzysztof Daniel 9929ce3
+                <configuration>
Krzysztof Daniel 9929ce3
+                  <target>
8fc0bff
+                    <ant antfile="build.xml" dir="library/gtk/" target="build_eclipse"/>
Krzysztof Daniel 9929ce3
+                  </target>
Krzysztof Daniel 9929ce3
+                </configuration>
Krzysztof Daniel 9929ce3
+                <goals>
Krzysztof Daniel 9929ce3
+                  <goal>run</goal>
Krzysztof Daniel 9929ce3
+                </goals>
Krzysztof Daniel 9929ce3
+              </execution>
Krzysztof Daniel 9929ce3
+            </executions>
Krzysztof Daniel 9929ce3
+          </plugin>
Krzysztof Daniel 9929ce3
+        </plugins>
Krzysztof Daniel 9929ce3
+      </build>
Krzysztof Daniel 9929ce3
+    </profile>
7511cd7
+    <profile>
7511cd7
+      <id>build-native-launchers-gtk.linux.aarch64</id>
7511cd7
+      <activation>
7511cd7
+        <property>
7511cd7
+          <name>native</name>
7511cd7
+          <value>gtk.linux.aarch64</value>
7511cd7
+        </property>
7511cd7
+      </activation>
7511cd7
+      <build>
7511cd7
+        <plugins>
7511cd7
+          <plugin>
7511cd7
+            <artifactId>maven-antrun-plugin</artifactId>
7511cd7
+            <executions>
7511cd7
+              <execution>
7511cd7
+                <id>compile-executable-natives</id>
7511cd7
+                <phase>generate-resources</phase>
7511cd7
+                <configuration>
7511cd7
+                  <target>
8fc0bff
+                    <ant antfile="build.xml" dir="library/gtk/" target="build_eclipse"/>
7511cd7
+                  </target>
7511cd7
+                </configuration>
7511cd7
+                <goals>
7511cd7
+                  <goal>run</goal>
7511cd7
+                </goals>
7511cd7
+              </execution>
7511cd7
+            </executions>
7511cd7
+          </plugin>
7511cd7
+        </plugins>
7511cd7
+      </build>
7511cd7
+    </profile>
1695dc1
+    <profile>
1695dc1
+      <id>build-native-launchers-gtk.linux.s390x</id>
1695dc1
+      <activation>
1695dc1
+        <property>
1695dc1
+          <name>native</name>
1695dc1
+          <value>gtk.linux.s390x</value>
1695dc1
+        </property>
1695dc1
+      </activation>
1695dc1
+      <build>
1695dc1
+        <plugins>
1695dc1
+          <plugin>
1695dc1
+            <artifactId>maven-antrun-plugin</artifactId>
1695dc1
+            <executions>
1695dc1
+              <execution>
1695dc1
+                <id>compile-executable-natives</id>
1695dc1
+                <phase>generate-resources</phase>
1695dc1
+                <configuration>
1695dc1
+                  <target>
1695dc1
+                    <ant antfile="build.xml" dir="library/gtk/" target="build_eclipse"/>
1695dc1
+                  </target>
1695dc1
+                </configuration>
1695dc1
+                <goals>
1695dc1
+                  <goal>run</goal>
1695dc1
+                </goals>
1695dc1
+              </execution>
1695dc1
+            </executions>
1695dc1
+          </plugin>
1695dc1
+        </plugins>
1695dc1
+      </build>
1695dc1
+    </profile>
1695dc1
+    <profile>
1695dc1
+      <id>build-native-launchers-gtk.linux.s390</id>
1695dc1
+      <activation>
1695dc1
+        <property>
1695dc1
+          <name>native</name>
1695dc1
+          <value>gtk.linux.s390</value>
1695dc1
+        </property>
1695dc1
+      </activation>
1695dc1
+      <build>
1695dc1
+        <plugins>
1695dc1
+          <plugin>
1695dc1
+            <artifactId>maven-antrun-plugin</artifactId>
1695dc1
+            <executions>
1695dc1
+              <execution>
1695dc1
+                <id>compile-executable-natives</id>
1695dc1
+                <phase>generate-resources</phase>
1695dc1
+                <configuration>
1695dc1
+                  <target>
1695dc1
+                    <ant antfile="build.xml" dir="library/gtk/" target="build_eclipse"/>
1695dc1
+                  </target>
1695dc1
+                </configuration>
1695dc1
+                <goals>
1695dc1
+                  <goal>run</goal>
1695dc1
+                </goals>
1695dc1
+              </execution>
1695dc1
+            </executions>
1695dc1
+          </plugin>
1695dc1
+        </plugins>
1695dc1
+      </build>
1695dc1
+    </profile>
Mat Booth f0d416f
+
Krzysztof Daniel 9929ce3
     <profile>
Krzysztof Daniel 9929ce3
       <id>build-native-launchers-win32.win32.x86_64</id>
Krzysztof Daniel 9929ce3
       <activation>
8b5c72e
@@ -347,8 +530,8 @@
365159b
                         <include name="gtk/solaris/x86/**/*"/>
365159b
                         <include name="win32/win32/x86/**/*"/>
365159b
                         <include name="win32/win32/x86_64/**/*"/>
1695dc1
-                      </fileset>
1695dc1
-                      <fileset dir="../../../rt.equinox.binaries/org.eclipse.equinox.executable/contributed/">
8b5c72e
+                        <include name="gtk/linux/arm/**/*"/>
8b5c72e
+                        <include name="gtk/linux/aarch64/**/*"/>
365159b
                         <include name="gtk/linux/s390/**/*"/>
365159b
                         <include name="gtk/linux/s390x/**/*"/>
1695dc1
                       </fileset>
365159b
--- a/rt.equinox.framework/features/org.eclipse.equinox.executable.feature/build.properties	2015-01-30 14:44:03.436891441 +0000
365159b
+++ b/rt.equinox.framework/features/org.eclipse.equinox.executable.feature/build.properties	2015-01-30 14:45:25.232480509 +0000
365159b
@@ -59,4 +59,8 @@
365159b
 root.linux.gtk.s390=bin/gtk/linux/s390,gtk_root
365159b
 root.linux.gtk.s390.permissions.755=launcher
365159b
 
365159b
+root.linux.gtk.aarch64=bin/gtk/linux/aarch64,gtk_root
365159b
+root.linux.gtk.aarch64.permissions.755=launcher
365159b
+root.linux.gtk.arm=bin/gtk/linux/arm,gtk_root
365159b
+root.linux.gtk.arm.permissions.755=launcher
365159b