Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Thondapu2016-03-30 08:49:34 +0000
committerArun Thondapu2016-04-08 19:34:12 +0000
commit3417fec970e2a6caaf5da93070bd0772e94df9d7 (patch)
tree42c705380b463ceafa136b1db0f4a202d8c4c00d /features/org.eclipse.equinox.executable.feature/pom.xml
parenta657da2e25af145a8e3750ec11eea3179d0b242d (diff)
downloadrt.equinox.framework-3417fec970e2a6caaf5da93070bd0772e94df9d7.tar.gz
rt.equinox.framework-3417fec970e2a6caaf5da93070bd0772e94df9d7.tar.xz
rt.equinox.framework-3417fec970e2a6caaf5da93070bd0772e94df9d7.zip
Bug 429335 - Need 64-bit launcher for Solaris/X86_64Y20160414-1000I20160412-0800
Diffstat (limited to 'features/org.eclipse.equinox.executable.feature/pom.xml')
-rw-r--r--features/org.eclipse.equinox.executable.feature/pom.xml43
1 files changed, 43 insertions, 0 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/pom.xml b/features/org.eclipse.equinox.executable.feature/pom.xml
index dcb5c15ec..09fc6c310 100644
--- a/features/org.eclipse.equinox.executable.feature/pom.xml
+++ b/features/org.eclipse.equinox.executable.feature/pom.xml
@@ -224,6 +224,48 @@
</build>
</profile>
<profile>
+ <id>build-native-launchers-gtk.solaris.x86_64</id>
+ <activation>
+ <property>
+ <name>native</name>
+ <value>gtk.solaris.x86_64</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <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>
+ <execution>
+ <id>clean-executable-natives</id>
+ <phase>clean</phase>
+ <configuration>
+ <target>
+ <ant antfile="build.xml" dir="library/gtk/" target="clean"/>
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
<id>build-native-launchers-gtk.linux.arm</id>
<activation>
<property>
@@ -471,6 +513,7 @@
<include name="gtk/linux/x86_64/**/*"/>
<include name="gtk/solaris/sparc/**/*"/>
<include name="gtk/solaris/x86/**/*"/>
+ <include name="gtk/solaris/x86_64/**/*"/>
<include name="win32/win32/x86/**/*"/>
<include name="win32/win32/x86_64/**/*"/>
</fileset>

Back to the top