mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
Getting the build scripts to work with M6.
This commit is contained in:
parent
685d8d09e8
commit
ff399b584f
7 changed files with 40 additions and 39 deletions
|
@ -7,7 +7,8 @@ die() {
|
|||
exit 1
|
||||
}
|
||||
|
||||
[ -n "$ECLIPSE_HOME" ] || die ECLIPSE_HOME not set
|
||||
#[ -n "$ECLIPSE_HOME" ] || die ECLIPSE_HOME not set
|
||||
ECLIPSE_HOME=../org.eclipse.releng.basebuilder
|
||||
|
||||
cd `dirname $0`
|
||||
|
||||
|
|
|
@ -60,15 +60,15 @@ collBase=.
|
|||
# configs=win32,win32,x86 & linux,motif,x86
|
||||
# By default the value is *,*,*
|
||||
configs=\
|
||||
aix,motif,ppc \
|
||||
& linux,gtk,x86 \
|
||||
& linux,gtk,x86_64 \
|
||||
& linux,gtk,ppc \
|
||||
& linux,gtk,ia64 \
|
||||
& macosx,carbon,ppc \
|
||||
& qnx,photon,x86 \
|
||||
& solaris,motif,sparc \
|
||||
& win32,win32,x86
|
||||
aix,motif,ppc-tar \
|
||||
& linux,gtk,x86-tar \
|
||||
& linux,gtk,x86_64-tar \
|
||||
& linux,gtk,ppc-tar \
|
||||
& linux,gtk,ia64-tar \
|
||||
& macosx,carbon,ppc-tar \
|
||||
& qnx,photon,x86-tar \
|
||||
& solaris,motif,sparc-tar \
|
||||
& win32,win32,x86-zip
|
||||
|
||||
#Arguments to send to the zip executable
|
||||
zipargs=
|
||||
|
|
|
@ -18,55 +18,55 @@
|
|||
<!-- Add one target for each root element and each configuration -->
|
||||
<!-- ===================================================================== -->
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.aix.motif.ppc">
|
||||
<target name="assemble.org.eclipse.cdt.aix.motif.ppc-tar">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-aix.ppc.tar.gz"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.linux.gtk.x86">
|
||||
<target name="assemble.org.eclipse.cdt.linux.gtk.x86-tar">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-linux.x86.tar.gz"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.linux.gtk.x86_64">
|
||||
<target name="assemble.org.eclipse.cdt.linux.gtk.x86_64-tar">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-linux.x86_64.tar.gz"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.linux.gtk.ppc">
|
||||
<target name="assemble.org.eclipse.cdt.linux.gtk.ppc-tar">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-linux.ppc.tar.gz"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.linux.gtk.ia64">
|
||||
<target name="assemble.org.eclipse.cdt.linux.gtk.ia64-tar">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-linux.ia64.tar.gz"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.macosx.carbon.ppc">
|
||||
<target name="assemble.org.eclipse.cdt.macosx.carbon.ppc-tar">
|
||||
<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.photon.x86">
|
||||
<target name="assemble.org.eclipse.cdt.qnx.photon.x86-tar">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-qnx.x86.tar.gz"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.solaris.motif.sparc">
|
||||
<target name="assemble.org.eclipse.cdt.solaris.motif.sparc-tar">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-solaris.sparc.tar.gz"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.win32.win32.x86">
|
||||
<target name="assemble.org.eclipse.cdt.win32.win32.x86-zip">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-win32.x86.zip"/>
|
||||
</ant>
|
||||
|
|
|
@ -60,15 +60,15 @@ collBase=.
|
|||
# configs=win32,win32,x86 & linux,motif,x86
|
||||
# By default the value is *,*,*
|
||||
configs=\
|
||||
aix,motif,ppc \
|
||||
& linux,gtk,x86 \
|
||||
& linux,gtk,x86_64 \
|
||||
& linux,gtk,ppc \
|
||||
& linux,gtk,ia64 \
|
||||
& macosx,carbon,ppc \
|
||||
& qnx,photon,x86 \
|
||||
& solaris,motif,sparc \
|
||||
& win32,win32,x86
|
||||
aix,motif,ppc-tar \
|
||||
& linux,gtk,x86-tar \
|
||||
& linux,gtk,x86_64-tar \
|
||||
& linux,gtk,ppc-tar \
|
||||
& linux,gtk,ia64-tar \
|
||||
& macosx,carbon,ppc-tar \
|
||||
& qnx,photon,x86-tar \
|
||||
& solaris,motif,sparc-tar \
|
||||
& win32,win32,x86-zip
|
||||
|
||||
#Arguments to send to the zip executable
|
||||
zipargs=
|
||||
|
|
|
@ -23,55 +23,55 @@
|
|||
<!-- Add one target for each root element and each configuration -->
|
||||
<!-- ===================================================================== -->
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.aix.motif.ppc">
|
||||
<target name="assemble.org.eclipse.cdt.sdk.aix.motif.ppc-tar">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-aix.ppc.tar.gz"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.linux.gtk.x86">
|
||||
<target name="assemble.org.eclipse.cdt.sdk.linux.gtk.x86-tar">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-linux.x86.tar.gz"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.linux.gtk.x86_64">
|
||||
<target name="assemble.org.eclipse.cdt.sdk.linux.gtk.x86_64-tar">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-linux.x86_64.tar.gz"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.linux.gtk.ppc">
|
||||
<target name="assemble.org.eclipse.cdt.sdk.linux.gtk.ppc-tar">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-linux.ppc.tar.gz"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.linux.gtk.ia64">
|
||||
<target name="assemble.org.eclipse.cdt.sdk.linux.gtk.ia64-tar">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-linux.ia64.tar.gz"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.macosx.carbon.ppc">
|
||||
<target name="assemble.org.eclipse.cdt.sdk.macosx.carbon.ppc-tar">
|
||||
<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.photon.x86">
|
||||
<target name="assemble.org.eclipse.cdt.sdk.qnx.photon.x86-tar">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-qnx.x86.tar.gz"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.solaris.motif.sparc">
|
||||
<target name="assemble.org.eclipse.cdt.sdk.solaris.motif.sparc-tar">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-solaris.sparc.tar.gz"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.win32.win32.x86">
|
||||
<target name="assemble.org.eclipse.cdt.sdk.win32.win32.x86-zip">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.sdk-${branchVersion}-${buildId}-win32.x86.zip"/>
|
||||
</ant>
|
||||
|
|
|
@ -59,7 +59,7 @@ collBase=.
|
|||
# value is a '&' separated list of ',' separate triples. For example,
|
||||
# configs=win32,win32,x86 & linux,motif,x86
|
||||
# By default the value is *,*,*
|
||||
configs=*,*,*
|
||||
configs=*,*,*-zip
|
||||
|
||||
#Arguments to send to the zip executable
|
||||
zipargs=
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
<!-- Add one target for each root element and each configuration -->
|
||||
<!-- ===================================================================== -->
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.testing">
|
||||
<target name="assemble.org.eclipse.cdt.testing-*,*,*-zip">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
|
||||
<property name="archiveName" value="org.eclipse.cdt.testing-${branchVersion}-${buildId}.zip"/>
|
||||
</ant>
|
||||
|
|
Loading…
Add table
Reference in a new issue