My application throws the exception below.

Exception in thread "main" java.lang.UnsatisfiedLinkError: Cannot load 32-bit SW T libraries on 64-bit JVM.

How to solve this? What is the name of jar file needed?

link|improve this question

feedback

4 Answers

up vote 13 down vote accepted

On 64-bit JVM's you need the 64-bit SWT. Current versions can be downloaded here:

http://archive.eclipse.org/eclipse/downloads/drops/R-3.6.1-201009090800/index.php#SWT

Note the first two downloads, the first is for x32, the other for x64.

Note: Even on 64bit Windows, if you use the 32bit JVM, you still need the 32bit SWT version!

link|improve this answer
1  
This is correct, but just a quick note that if you don't have control over which SWT gets used (e.g. developing a plug-in on a 64-bit system with your 64-bit JVM for a 32-bit RCP application), you should just install & use a 32-bit JVM to launch your product instead of modifying your RCP target platform (see Mario Marinato's answer). – Caspar Aug 4 '11 at 2:03
@Casper: Correct. – Daniel Aug 4 '11 at 7:09
feedback

I faced the same problems a couple of weeks ago. We develop an RCP application that must use 32bit SWT, but we work on 64bit machines.

What we had to do was to change Eclipse's configurations so it pointed to a 32bit JVM. We did it on Window -> Preferences -> Java -> Installed JRE's. On this preference page, we changed all references from "Program Files" to "Program Files (x86)".

I hope it helps you somehow.

link|improve this answer
feedback

You're simply building against the wrong version of SWT. Either download the 64bit Eclipse or grab the delta pack and build against the correct target environment.

link|improve this answer
What is the "delta pack"? I'm curious about a generic solution, because I would love to make my SWT application dynamically select the correct jar. Also, you should bear in mind that SWT needs to be the same version as your virtual machine -- not necessarily as your O/S. – Paul Lammertsma May 30 '10 at 14:59
The delta pack will not let you do anything 'dynamic', it just gives you the ability to build for any target from any target. louismrose.wordpress.com/2009/01/23/… – andyczerwonka May 31 '10 at 4:49
feedback

For the latest link to SWT library downloads: SWT project page

link|improve this answer
feedback

protected by Community Apr 24 at 0:07

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.