每次我去Eclipse-luna IDE并在我创建的类中输入一行代码并且代码辅助打开带有建议的弹出窗口,停止工作eclipse并且只有在我杀死进程并重新运行时才会再次运行 - 运行日食。
我的操作系统是kali的最新稳定版本(基于内核3.18.3的debian)x86_64,系统默认安装了open-jdk 1.6和1.7。
感谢所有人。
答案 0 :(得分:0)
我可以找出问题并解决下面相同的描述如何做到这一点,以帮助有同样问题的人。首先,我使用最新的稳定版eclipse-luna直接下载到网站或使用wget。打开你的eclipse.ini文件,然后在--launcher.appendVmargs
输入以下两行之前的一行:
`
--launcher.GTK_version
2
`
并准备好你的日食已经在debian中正常运行,记住我以前必须将-showsplash更改为-nosplash。
下面我留下我的eclipse.ini的精确副本,记住已经意味着已经调整过了。
`
-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20150204-1316
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
-nosplash
org.eclipse.platform
--launcher.XXMaxPermSize
512m
--launcher.defaultAction
openFile
--launcher.GTK_version
2
--launcher.appendVmargs
-vmargs
-Dosgi.requiredJavaVersion=1.6
-XX:MaxPermSize=512m
-Xms80m
-Xmx1024m
`
全部谢谢