The Win7 64-bit system is configured to use the 32-bit Eclipse
Blog Category:
Eclipse
The recent work computer has been replaced by a 64-bit Win7 system, with 32-bit JDK and Eclipse installed on the PC. The JDK installed on the new work computer is 64-bit, because the original eclipse installed a lot of plug-ins and personalized configuration, do not want to reinstall 64-bit eclipse, so want to continue to use the original 32-bit eclipse on the 64-bit Win7 system.
32-bit eclipse cannot be used with a 64-bit JDK, but I don't want to install only 32-bit JDK to fit eclipse, so there are 32-bit and 64-bit JDK installed on the system, the default Java_home pointing to the 64-bit JDK.
And Eclipse is going to start with a 32-bit JDK, so you need to modify the configuration file, modify the Eclipse/eclipse.ini file, and add it before the-vmargs parameter:
Shell Code
- -vm
- D:/java/jdk1. 6.0_27/bin/javaw.exe
Where d:/java/jdk1.6.0_27 is the installation directory for my 32-bit JDK.
Once the configuration is complete, you are ready to start eclipse.
WIN7 64-bit system configured with 32-bit eclipse (RPM)