mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
Fixed the * in filename issue. added linux ppc and ia64 builds.
This commit is contained in:
parent
6830aea7d7
commit
37d7c2e939
6 changed files with 81 additions and 28 deletions
|
@ -7,3 +7,4 @@ compile.log
|
|||
mail.txt
|
||||
eclipse-SDK-new.zip
|
||||
message.txt
|
||||
index.html
|
||||
|
|
|
@ -32,6 +32,18 @@ integrations for build/debug, user documentation<br>
|
|||
</td>
|
||||
<td style="vertical-align: top;"><a
|
||||
href="org.eclipse.cdt-@branchVersion@-@buildId@-linux.x86.zip">org.eclipse.cdt-@branchVersion@-@buildId@-linux.x86.zip</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="vertical-align: top;">Linux/ppc<br>
|
||||
</td>
|
||||
<td style="vertical-align: top;"><a
|
||||
href="org.eclipse.cdt-@branchVersion@-@buildId@-linux.ppc.zip">org.eclipse.cdt-@branchVersion@-@buildId@-linux.ppc.zip</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="vertical-align: top;">Linux/ia64<br>
|
||||
</td>
|
||||
<td style="vertical-align: top;"><a
|
||||
href="org.eclipse.cdt-@branchVersion@-@buildId@-linux.ia64.zip">org.eclipse.cdt-@branchVersion@-@buildId@-linux.ia64.zip</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="vertical-align: top;">MacOSX/ppc<br>
|
||||
|
@ -87,6 +99,18 @@ integrations for build/debug, user documentation<br>
|
|||
</td>
|
||||
<td style="vertical-align: top;"><a
|
||||
href="org.eclipse.cdt.sdk-@branchVersion@-@buildId@-linux.x86.zip">org.eclipse.cdt.sdk-@branchVersion@-@buildId@-linux.x86.zip</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="vertical-align: top;">Linux/ppc<br>
|
||||
</td>
|
||||
<td style="vertical-align: top;"><a
|
||||
href="org.eclipse.cdt.sdk-@branchVersion@-@buildId@-linux.ppc.zip">org.eclipse.cdt.sdk-@branchVersion@-@buildId@-linux.ppc.zip</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="vertical-align: top;">Linux/ia64<br>
|
||||
</td>
|
||||
<td style="vertical-align: top;"><a
|
||||
href="org.eclipse.cdt.sdk-@branchVersion@-@buildId@-linux.ia64.zip">org.eclipse.cdt.sdk-@branchVersion@-@buildId@-linux.ia64.zip</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="vertical-align: top;">MacOSX/ppc<br>
|
||||
|
|
|
@ -60,13 +60,15 @@ collBase=.
|
|||
# configs=win32,win32,x86 & linux,motif,x86
|
||||
# By default the value is *,*,*
|
||||
configs=\
|
||||
aix,*,ppc \
|
||||
& hpux,*,PA_RISC \
|
||||
& linux,*,x86 \
|
||||
& macosx,*,ppc \
|
||||
& qnx,*,x86 \
|
||||
& solaris,*,sparc \
|
||||
& win32,*,x86
|
||||
aix,motif,ppc \
|
||||
& hpux,motif,PA_RISC \
|
||||
& linux,gtk,x86 \
|
||||
& linux,gtk,ppc \
|
||||
& linux,gtk,ia64 \
|
||||
& macosx,carbon,ppc \
|
||||
& qnx,photon,x86 \
|
||||
& solaris,motif,sparc \
|
||||
& win32,win32,x86
|
||||
|
||||
#Arguments to send to the zip executable
|
||||
zipargs=
|
||||
|
|
|
@ -23,43 +23,55 @@
|
|||
<!-- Add one target for each root element and each configuration -->
|
||||
<!-- ===================================================================== -->
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.aix.*.ppc">
|
||||
<target name="assemble.org.eclipse.cdt.aix.motif.ppc">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-aix.ppc.zip"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.hpux.*.PA_RISC">
|
||||
<target name="assemble.org.eclipse.cdt.hpux.motif.PA_RISC">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-hpux.PA_RISC.zip"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.linux.*.x86">
|
||||
<target name="assemble.org.eclipse.cdt.linux.gtk.x86">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-linux.x86.zip"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.macosx.*.ppc">
|
||||
<target name="assemble.org.eclipse.cdt.linux.gtk.ppc">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-linux.ppc.zip"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.linux.gtk.ia64">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-linux.ia64.zip"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.macosx.carbon.ppc">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-macosx.ppc.tar.gz"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.qnx.*.x86">
|
||||
<target name="assemble.org.eclipse.cdt.qnx.photon.x86">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-qnx.x86.zip"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.solaris.*.sparc">
|
||||
<target name="assemble.org.eclipse.cdt.solaris.motif.sparc">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-solaris.sparc.zip"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.win32.*.x86">
|
||||
<target name="assemble.org.eclipse.cdt.win32.win32.x86">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-win32.x86.zip"/>
|
||||
</ant>
|
||||
|
|
|
@ -60,13 +60,15 @@ collBase=.
|
|||
# configs=win32,win32,x86 & linux,motif,x86
|
||||
# By default the value is *,*,*
|
||||
configs=\
|
||||
aix,*,ppc \
|
||||
& hpux,*,PA_RISC \
|
||||
& linux,*,x86 \
|
||||
& macosx,*,ppc \
|
||||
& qnx,*,x86 \
|
||||
& solaris,*,sparc \
|
||||
& win32,*,x86
|
||||
aix,motif,ppc \
|
||||
& hpux,motif,PA_RISC \
|
||||
& linux,gtk,x86 \
|
||||
& linux,gtk,ppc \
|
||||
& linux,gtk,ia64 \
|
||||
& macosx,carbon,ppc \
|
||||
& qnx,photon,x86 \
|
||||
& solaris,motif,sparc \
|
||||
& win32,win32,x86
|
||||
|
||||
#Arguments to send to the zip executable
|
||||
zipargs=
|
||||
|
|
|
@ -23,43 +23,55 @@
|
|||
<!-- Add one target for each root element and each configuration -->
|
||||
<!-- ===================================================================== -->
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.aix.*.ppc">
|
||||
<target name="assemble.org.eclipse.cdt.sdk.aix.motif.ppc">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-aix.ppc.zip"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.hpux.*.PA_RISC">
|
||||
<target name="assemble.org.eclipse.cdt.sdk.hpux.motif.PA_RISC">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-hpux.PA_RISC.zip"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.linux.*.x86">
|
||||
<target name="assemble.org.eclipse.cdt.sdk.linux.gtk.x86">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-linux.x86.zip"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.macosx.*.ppc">
|
||||
<target name="assemble.org.eclipse.cdt.sdk.linux.gtk.ppc">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-linux.ppc.zip"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.linux.gtk.ia64">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-linux.ia64.zip"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.macosx.carbon.ppc">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-macosx.ppc.tar.gz"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.qnx.*.x86">
|
||||
<target name="assemble.org.eclipse.cdt.sdk.qnx.photon.x86">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-qnx.x86.zip"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.solaris.*.sparc">
|
||||
<target name="assemble.org.eclipse.cdt.sdk.solaris.motif.sparc">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-solaris.sparc.zip"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.win32.*.x86">
|
||||
<target name="assemble.org.eclipse.cdt.sdk.win32.win32.x86">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-win32.x86.zip"/>
|
||||
</ant>
|
||||
|
|
Loading…
Add table
Reference in a new issue