Galileo Eclipse IDE for Java EE Developersが起動できない件

Eclipse Galileo が出ましたが、Eclipse IDE for Java EE Developers を起動すると、以下のようなエラーで起動できませんでした。

JVM terminated. Exit code=-1

この時のeclipse.iniは以下

-startup
plugins/org.eclipse.equinox.launcher_1.0.200.v20090520.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519
-product
org.eclipse.epp.package.jee.product
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx512m

code=-1はメモリー関係のエラーのようです。

  • Xmx512m → -Xmx256m とすると起動はするのですが、どうもメモリー不足のようで不安定。

なぜだか不明ですが、「-showsplash」の指定を削除すると起動できて、動作も安定しています。

-startup
plugins/org.eclipse.equinox.launcher_1.0.200.v20090520.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519
-product
org.eclipse.epp.package.jee.product
--launcher.XXMaxPermSize
256M
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx512m

なぜ・・?