Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[pde-build-dev] build for win32,win32,x86_64 and other questions

Title: build for win32,win32,x86_64 and other questions

Hi,

During setup of the headless build I come across some questions. Could someone help me please?

1.      Building product for 64 bit windows.

Im trying to build our product for 64bit windows using the following config entry: win32,win32, x86_64.

The build complains about a missing target: assemble.org.eclipse.pde.build.container.feature.win32.win32.x86_64

    BUILD FAILED

    c:\Development\eclipse\eclipse3.4M5\plugins\org.eclipse.pde.build_3.4.0.v20080206\scripts\productBuild\productBuild.xml:30: The following error

    ccurred while executing this line:

    C:\Development\eclipse\eclipse3.4M5\plugins\org.eclipse.pde.build_3.4.0.v20080206\scripts\build.xml:91: The following error occurred while execu

    ing this line:

    C:\Development\eclipse\eclipse3.4M5\plugins\org.eclipse.pde.build_3.4.0.v20080206\templates\headless-build\customTargets.xml:12: The following e

    ror occurred while executing this line:

    C:\Development\eclipse\eclipse3.4M5\plugins\org.eclipse.pde.build_3.4.0.v20080206\scripts\productBuild\allElements.xml:9: The following error oc

    urred while executing this line:

    C:\Development\eclipse\eclipse3.4M5\plugins\org.eclipse.pde.build_3.4.0.v20080206\scripts\genericTargets.xml:156: The following error occurred w

    ile executing this line:

    c:\svn\mat\eclipse\assemble.org.eclipse.pde.build.container.feature.all.xml:22: The following error occurred while executing this line:

    c:\svn\mat\eclipse\assemble.org.eclipse.pde.build.container.feature.all.xml:15: The following error occurred while executing this line:

    Target "assemble.org.eclipse.pde.build.container.feature.win32.win32.x86_64" does not exist in the project "Build specific targets and propertie

    ".

Indeed there is no such target in the allElements.xml under the productBuild-directory of the org.eclipse.pde.build plugin. Im using an 3.4M5 SDK to run the antRunner task.

After adding a assemble target for this configuration, I’m able to build.

         <target name="assemble.org.eclipse.pde.build.container.feature.win32.win32.x86_64">

                <ant antfile="${assembleScriptName}" dir="${buildDirectory}">                  

                        <property name="archiveName" value="${archiveNamePrefix}-win32.win32.x86_64.zip"/>

                </ant>

        </target>

Is this assemble target for win32.win32.x86_64 missing there by intention, or could it be added there officially?

Should I provide a patch?

2.      Is it possible to build an update site with the headless build?

Kind Regards, Erwin


Back to the top