Monday 3 April 2017

android - Setting up Eclipse and Java JDK

I've been attempting to install and set up the Java JDK 1.6 and Eclipse (helios) on Windows 7.




I have downloaded the 32 bit of each, as the 64 bit Eclipse version didn't want to work.



So, having done that and amended the eclipse.ini file to pick up the right java.exe, I'm getting exit code 13 when running Eclipse. Have I made an error in the eclipse.ini some place?



Thanks!



-startup
plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
--launcher.library

plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1.R36x_v20100810
-product
org.eclipse.epp.package.java.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize

256m
-vm
C:\Program Files (x86)\Java\jdk1.6.0_23\jre\bin\java.exe
--launcher.defaultAction
openFile
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx384m

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...