Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » Java Development Tools (JDT) » Eclipse will not start in Windows 7 64-bit
Eclipse will not start in Windows 7 64-bit [message #670565] Sun, 15 May 2011 01:24 Go to next message
Missing name Mising name is currently offline Missing name Mising nameFriend
Messages: 7
Registered: April 2011
Location: USA
Junior Member
I recently installed 64-bit Java and now Eclipse will not start up even though I am using the 64-bit Helios package. Does that mean I need to go back to the 32-bit package?

I get this error dialog as below:
Quote:

Eclipse
---------------------------
Java was started but returned exit code=1
C:\Windows\system32\javaw.exe
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx384m
-XX:MaxPermSize=256m
-jar Z:\Windows Files\Development\eclipse downloads\eclipse-java-helios-win32-x86_64\eclipse\plugins/o rg.eclipse.equinox.launcher_1.1.0.v20100507.jar
-os win32
-ws win32
-arch x86_64
-showsplash
-launcher Z:\Windows Files\Development\eclipse downloads\eclipse-java-helios-win32-x86_64\eclipse\eclipse.e xe
-name Eclipse
--launcher.library Z:\Windows Files\Development\eclipse downloads\eclipse-java-helios-win32-x86_64\eclipse\plugins/o rg.eclipse.equinox.launcher.win32.win32.x86_64_1.1.0.v201005 03\eclipse_1307.dll
-startup Z:\Windows Files\Development\eclipse downloads\eclipse-java-helios-win32-x86_64\eclipse\plugins/o rg.eclipse.equinox.launcher_1.1.0.v20100507.jar
-exitdata a24_6dc
-product org.eclipse.epp.package.java.product
-vm C:\Windows\system32\javaw.exe
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx384m
-XX:MaxPermSize=256m
-jar Z:\Windows Files\Development\eclipse downloads\eclipse-java-helios-win32-x86_64\eclipse\plugins/o rg.eclipse.equinox.launcher_1.1.0.v20100507.jar
---------------------------
OK
---------------------------



Confused

[Updated on: Sun, 15 May 2011 01:26]

Report message to a moderator

Re: Eclipse will not start in Windows 7 64-bit [message #670615 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670616 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670617 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670619 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670620 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670621 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670628 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670630 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670633 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670643 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670646 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670648 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670650 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670661 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670685 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670693 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670695 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670701 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670703 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670711 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670717 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Re: Eclipse will not start in Windows 7 64-bit [message #670741 is a reply to message #670565] Sun, 15 May 2011 08:14 Go to previous message
Stanimir Stamenkov is currently offline Stanimir StamenkovFriend
Messages: 256
Registered: July 2009
Senior Member
Sat, 14 May 2011 18:24:36 -0700, /forums-noreply@eclipse.org/:

> I recently installed 64-bit Java and now Eclipse will not
> start up even though I am using the 64-bit Helios package. Does that
> mean I need to go back to the 32-bit package?

What do you get running:

java -version

on the command line? On Windows with the 32-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)

With the 64-bit Java I get:

java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.0-b11, mixed mode)

If you have both the 32-bit and 64-bit JREs installed you may need
to specify the correct one to the Eclipse launcher, e.g.:

eclipse -vm <JAVA_HOME>\bin\javaw.exe

You may also configure that in the corresponding "eclipse.ini" file.
See "Running Eclipse", also:

http://help.eclipse.org/helios/topic/org.eclipse.platform.do c.user/tasks/running_eclipse.htm

--
Stanimir
Previous Topic:Loading test directories
Next Topic:JDT Debug multi process support
Goto Forum:
  


Current Time: Fri Apr 26 18:23:43 GMT 2024

Powered by FUDForum. Page generated in 0.06949 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top