mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 14:55:41 +02:00
Add support for ppc64le
Change-Id: Id842538aa17cf577464759e084a6834f60384be4 Signed-off-by: Greg Watson <g.watson@computer.org>
This commit is contained in:
parent
495cce441a
commit
99a5f44928
10 changed files with 92 additions and 0 deletions
|
@ -55,6 +55,7 @@
|
|||
<module>../../bundles/org.eclipse.remote.proxy.server.core</module>
|
||||
<module>../../releng/org.eclipse.remote.proxy.server.product</module>
|
||||
<module>../../releng/org.eclipse.remote.proxy.server.linux.x86_64</module>
|
||||
<module>../../releng/org.eclipse.remote.proxy.server.linux.ppc64le</module>
|
||||
<module>../../releng/org.eclipse.remote.proxy.server.macosx.x86_64</module>
|
||||
<!-- Main feature -->
|
||||
<module>../../features/org.eclipse.remote-feature</module>
|
||||
|
@ -126,6 +127,11 @@
|
|||
<ws>gtk</ws>
|
||||
<arch>x86_64</arch>
|
||||
</environment>
|
||||
<environment>
|
||||
<os>linux</os>
|
||||
<ws>gtk</ws>
|
||||
<arch>ppc64le</arch>
|
||||
</environment>
|
||||
<environment>
|
||||
<os>win32</os>
|
||||
<ws>win32</ws>
|
||||
|
|
1
releng/org.eclipse.remote.proxy.server.linux.ppc64le/.gitignore
vendored
Normal file
1
releng/org.eclipse.remote.proxy.server.linux.ppc64le/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/proxy.server.tar.gz
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.remote.proxy.server.linux.ppc64le</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.ManifestBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.SchemaBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.PluginNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,3 @@
|
|||
eclipse.preferences.version=1
|
||||
pluginProject.extensions=false
|
||||
resolve.requirebundle=false
|
|
@ -0,0 +1,7 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.remote.proxy.server.linux.ppc64le
|
||||
Bundle-Version: 1.0.0.qualifier
|
||||
Bundle-Vendor: %pluginProvider
|
||||
Bundle-Localization: plugin
|
|
@ -0,0 +1,3 @@
|
|||
bin.includes = META-INF/,\
|
||||
proxy.server.tar.gz,\
|
||||
plugin.properties
|
|
@ -0,0 +1,11 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2016 Oak Ridge National Laboratory and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
###############################################################################
|
||||
|
||||
pluginName=Remote Proxy Server Linux ppc64le Component
|
||||
pluginProvider=Eclipse PTP
|
36
releng/org.eclipse.remote.proxy.server.linux.ppc64le/pom.xml
Normal file
36
releng/org.eclipse.remote.proxy.server.linux.ppc64le/pom.xml
Normal file
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.remote</groupId>
|
||||
<artifactId>remote-parent</artifactId>
|
||||
<version>3.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../releng/org.eclipse.remote.build/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>org.eclipse.remote.proxy.server.linux.ppc64le</artifactId>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-source-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>plugin-source</id>
|
||||
<phase>none</phase>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>attach-source</id>
|
||||
<phase>none</phase>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
|
@ -68,6 +68,8 @@
|
|||
<tasks>
|
||||
<copy file="${project.build.directory}/products/proxy.server-linux.gtk.x86_64.tar.gz"
|
||||
tofile="${basedir}/../org.eclipse.remote.proxy.server.linux.x86_64/proxy.server.tar.gz"/>
|
||||
<copy file="${project.build.directory}/products/proxy.server-linux.gtk.ppc64le.tar.gz"
|
||||
tofile="${basedir}/../org.eclipse.remote.proxy.server.linux.ppc64le/proxy.server.tar.gz"/>
|
||||
<copy file="${project.build.directory}/products/proxy.server-macosx.cocoa.x86_64.tar.gz"
|
||||
tofile="${basedir}/../org.eclipse.remote.proxy.server.macosx.x86_64/proxy.server.tar.gz"/>
|
||||
</tasks>
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
<plugin id="com.ibm.icu"/>
|
||||
<plugin id="org.eclipse.cdt.core.macosx" fragment="true"/>
|
||||
<plugin id="org.eclipse.cdt.core.linux.x86_64" fragment="true"/>
|
||||
<plugin id="org.eclipse.cdt.core.linux.ppc64le" fragment="true"/>
|
||||
<plugin id="org.eclipse.cdt.core.native"/>
|
||||
<plugin id="org.eclipse.core.contenttype"/>
|
||||
<plugin id="org.eclipse.core.expressions"/>
|
||||
|
|
Loading…
Add table
Reference in a new issue