Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2014-04-09 20:07:39 +0000
committerThomas Watson2014-04-09 21:34:21 +0000
commit9a3dee0428c65629c5d35fe7f5d7b36d84fdbae6 (patch)
tree80c43ee79e1b1519013a5cd9bfc9d0291372e653 /pom.xml
parent264199da032445104ed1509182d4d8e6d6dcc919 (diff)
downloadrt.equinox.framework-9a3dee0428c65629c5d35fe7f5d7b36d84fdbae6.tar.gz
rt.equinox.framework-9a3dee0428c65629c5d35fe7f5d7b36d84fdbae6.tar.xz
rt.equinox.framework-9a3dee0428c65629c5d35fe7f5d7b36d84fdbae6.zip
Bug 431230 - Provide launchers for ppc64le
Add a profile for compiling the ppc64le fragment if -Dnative=gtk.linux.ppc64le is passed to the build. This is a safe way to provide good build experience for the new arch while not default build. Change-Id: I1819545784ca5492b9296f3c58026dc38d3e191f Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml15
1 files changed, 14 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index f9ebbc21e..2063728b8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -77,5 +77,18 @@
<module>features/org.eclipse.equinox.executable.feature</module>
<module>features/org.eclipse.osgi.compatibility.plugins.feature</module>
</modules>
-
+ <profiles>
+ <profile>
+ <id>build-native-launchers-gtk.linux.ppc64le</id>
+ <activation>
+ <property>
+ <name>native</name>
+ <value>gtk.linux.ppc64le</value>
+ </property>
+ </activation>
+ <modules>
+ <module>bundles/org.eclipse.equinox.launcher.gtk.linux.ppc64le</module>
+ </modules>
+ </profile>
+ </profiles>
</project>

Back to the top