Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-Andre Laperle2019-03-09 03:14:32 +0000
committerMarc-André Laperle2019-03-19 00:44:27 +0000
commit040372be4880379077d8ad46a1658ea52667dfdd (patch)
tree96793845ce49f389232c89e176654d1398f6a435 /core/org.eclipse.cdt.core.linux
parent65d40fbacf6d0d868342b32db95c814e0c178460 (diff)
downloadorg.eclipse.cdt-040372be4880379077d8ad46a1658ea52667dfdd.tar.gz
org.eclipse.cdt-040372be4880379077d8ad46a1658ea52667dfdd.tar.xz
org.eclipse.cdt-040372be4880379077d8ad46a1658ea52667dfdd.zip
Build with Eclipse 2019-03 dependencies
CDT nows defaults to targetting Eclipse 4.11 along with dependencies in the Eclipse 2019-03 simultaenous release. Once consequence is that 32-bit and ppc64 fragments are removed. Change-Id: I032fedb27a4e5086f10051b3b2ca9c9c59c3b965 Signed-off-by: Marc-Andre Laperle <malaperle@gmail.com>
Diffstat (limited to 'core/org.eclipse.cdt.core.linux')
-rw-r--r--core/org.eclipse.cdt.core.linux/pom.xml156
1 files changed, 0 insertions, 156 deletions
diff --git a/core/org.eclipse.cdt.core.linux/pom.xml b/core/org.eclipse.cdt.core.linux/pom.xml
index 53855006a96..537372d83d8 100644
--- a/core/org.eclipse.cdt.core.linux/pom.xml
+++ b/core/org.eclipse.cdt.core.linux/pom.xml
@@ -17,53 +17,6 @@
<profiles>
<profile>
- <id>build-native.linux.x86</id>
- <activation>
- <property>
- <name>native</name>
- <value>linux.x86</value>
- </property>
- </activation>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <id>natives</id>
- <phase>process-resources</phase>
- <configuration>
- <target>
- <exec executable="make" newenvironment="false" dir="./library">
- <arg value="ARCH=x86" />
- </exec>
- </target>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- <execution>
- <id>clean-natives</id>
- <phase>clean</phase>
- <configuration>
- <target>
- <exec executable="make" newenvironment="false" dir="./library">
- <arg value="ARCH=x86" />
- <arg value="clean" />
- </exec>
- </target>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
<id>build-native.linux.x86_64</id>
<activation>
<property>
@@ -111,100 +64,6 @@
</build>
</profile>
<profile>
- <id>build-native.linux.ppc</id>
- <activation>
- <property>
- <name>native</name>
- <value>linux.ppc</value>
- </property>
- </activation>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <id>natives</id>
- <phase>process-resources</phase>
- <configuration>
- <target>
- <exec executable="make" newenvironment="false" dir="./library">
- <arg value="ARCH=ppc" />
- </exec>
- </target>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- <execution>
- <id>clean-natives</id>
- <phase>clean</phase>
- <configuration>
- <target>
- <exec executable="make" newenvironment="false" dir="./library">
- <arg value="ARCH=ppc" />
- <arg value="clean" />
- </exec>
- </target>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>build-native.linux.ppc64</id>
- <activation>
- <property>
- <name>native</name>
- <value>linux.ppc64</value>
- </property>
- </activation>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <id>natives</id>
- <phase>process-resources</phase>
- <configuration>
- <target>
- <exec executable="make" newenvironment="false" dir="./library">
- <arg value="ARCH=ppc64" />
- </exec>
- </target>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- <execution>
- <id>clean-natives</id>
- <phase>clean</phase>
- <configuration>
- <target>
- <exec executable="make" newenvironment="false" dir="./library">
- <arg value="ARCH=ppc64" />
- <arg value="clean" />
- </exec>
- </target>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
<id>build-native.linux.ppc64le</id>
<activation>
<property>
@@ -266,26 +125,11 @@
<environment>
<os>linux</os>
<ws>gtk</ws>
- <arch>x86</arch>
- </environment>
- <environment>
- <os>linux</os>
- <ws>gtk</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
- <arch>ppc</arch>
- </environment>
- <environment>
- <os>linux</os>
- <ws>gtk</ws>
- <arch>ppc64</arch>
- </environment>
- <environment>
- <os>linux</os>
- <ws>gtk</ws>
<arch>ppc64le</arch>
</environment>
</environments>

Back to the top