Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2014-04-07 11:34:14 +0000
committerAlexander Kurtakov2014-04-09 12:08:28 +0000
commitad7c0ec6c65e7a2c843ef2745ffe8ac27deffb45 (patch)
tree3cc62f3cc4e4b7b623c515a19542d29c106f4c89 /features
parent321078e4959fc27f26c3b89ca0015fa6d439115e (diff)
downloadrt.equinox.framework-ad7c0ec6c65e7a2c843ef2745ffe8ac27deffb45.tar.gz
rt.equinox.framework-ad7c0ec6c65e7a2c843ef2745ffe8ac27deffb45.tar.xz
rt.equinox.framework-ad7c0ec6c65e7a2c843ef2745ffe8ac27deffb45.zip
Bug 431230 - Provide launchers for ppc64le
Fragment for ppc64le. Not enabled in default build but tested locally in mocked environment. Change-Id: I9b7bf56567e67d57bc4be2a8df645d83dc42846c Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'features')
-rw-r--r--features/org.eclipse.equinox.executable.feature/pom.xml53
1 files changed, 53 insertions, 0 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/pom.xml b/features/org.eclipse.equinox.executable.feature/pom.xml
index a26e0f0a1..1233332e8 100644
--- a/features/org.eclipse.equinox.executable.feature/pom.xml
+++ b/features/org.eclipse.equinox.executable.feature/pom.xml
@@ -207,6 +207,59 @@
</build>
</profile>
<profile>
+ <id>build-native-launchers-gtk.linux.ppc64le</id>
+ <activation>
+ <property>
+ <name>native</name>
+ <value>gtk.linux.ppc64le</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version> 1.7 </version>
+ <executions>
+ <execution>
+ <id>compile-executable-natives</id>
+ <phase>generate-resources</phase>
+ <configuration>
+ <target>
+ <ant antfile="build.xml" dir="library/gtk/" target="build_eclipse"/>
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>bsf</groupId>
+ <artifactId>bsf</artifactId>
+ <version>2.4.0</version>
+ </dependency>
+ <dependency>
+ <groupId>rhino</groupId>
+ <artifactId>js</artifactId>
+ <version>1.7R2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-apache-bsf</artifactId>
+ <version>1.8.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-nodeps</artifactId>
+ <version>1.8.1</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
<id>build-native-launchers-win32.win32.x86_64</id>
<activation>
<property>

Back to the top