pde build on windows for linux

View: New views
4 Messages — Rating Filter:   Alert me  

pde build on windows for linux

by ajbiv :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I am using a headless pde build on a windows xp system using eclipse 3.3

My windows version works great.  My linux versioni does not work because the
org.eclipse.swt.gtk.linux.x86_3.3.0.v3346.jar is not included in the .zip that is created.

If I add this jar after the fact to my unzipped version on Linux, the application works.

How do I get the pde build to include this jar.

I am using the following in my build.properties:
configs=win32, win32, x86 & linux, gtk, x86

Re: pde build on windows for linux

by kennywest :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

You need to download and install the Eclipse RCP Delta pack. This contains _all_ launchers for _all_ supported platforms.

Re: pde build on windows for linux

by ajbiv :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I really appreciate you respondign even though this is a dev mailing list.  I did not notice that when I first posted as I am new to these newsgroups.
If you could point me to the right newsgroup for these types of questions, I would appreciate it.  I am sure I will have more.  

On my question. I do have the RCP Delta pack.  I also see all the  org.eclipse....swt.<platform> jars in my eclipse target.

Alexander@ABPHURNACE ~/dev/workspace/com.phurnace.deliver.ui.build/build-target/eclipse/plugins
$ ls -l *swt*
-rwx------+ 1 Alexander None 1757967 Jun 25 18:03 org.eclipse.swt.carbon.macosx_3.3.0.v3346.jar
-rwx------+ 1 Alexander None 1953412 Jun 25 18:03 org.eclipse.swt.gtk.linux.ppc_3.3.0.v3346.jar
-rwx------+ 1 Alexander None 1911897 Jun 25 18:03 org.eclipse.swt.gtk.linux.x86_3.3.0.v3346.jar
-rwx------+ 1 Alexander None 2023071 Jun 25 18:03 org.eclipse.swt.gtk.linux.x86_64_3.3.0.v3346.jar
-rwx------+ 1 Alexander None 1763918 Jun 25 18:03 org.eclipse.swt.gtk.solaris.sparc_3.3.0.v3346.jar
-rwx------+ 1 Alexander None 1828464 Jun 25 18:03 org.eclipse.swt.motif.aix.ppc_3.3.0.v3346.jar
-rwx------+ 1 Alexander None 1997851 Jun 28 20:33 org.eclipse.swt.win32.win32.x86_3.3.0.v3346.jar
-rwx------+ 1 Alexander None 1159699 Jun 25 18:03 org.eclipse.swt.wpf.win32.x86_3.3.0.v3346.jar
-rwx------+ 1 Alexander None   14592 Jun 28 20:33 org.eclipse.swt_3.3.0.v3346.jar


kennywest wrote:
You need to download and install the Eclipse RCP Delta pack. This contains _all_ launchers for _all_ supported platforms.

Re: pde build on windows for linux

by kennywest :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Aha, silly me, I must have misread your post. I thought the launcher was missing :(
I am building the RCP application using a product file and this product file includes all necessary plug-ins and fragments. Including the *swt* fragements. So the product file lists all *swt* fragments for all platforms (win32, gtk, ...). I think adding the necessary fragments to your product file should solve your issue. It solved my issues, but I'm not an expert on the matter :(