Eclipse 可执行启动器无法定位其配套共享库
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/13194478/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Eclipse executable launcher was unable to locate its companion shared library
提问by Rishi Gautam
eclipse executable launcher was unable to locate its companion shared library. i had delete my eclipse and Sdk also because they did not generate R.java file so i think delete the eclipse and then extract the eclipse zip after extract the zip then i click it show that error "eclipse executable launcher was unable to locate its companion shared library".How to solve this problem . i read the many article but did not find the best solution .My laptop configuration is dual core 3 gb ram 320 hd ,32bit .
eclipse 可执行启动器无法找到其配套共享库。我删除了我的 eclipse 和 Sdk 也是因为它们没有生成 R.java 文件所以我想删除 eclipse 然后在解压缩 zip 后提取 eclipse zip 然后我点击它显示错误“eclipse 可执行启动器无法找到它的伴侣共享库”。如何解决这个问题。我阅读了很多文章,但没有找到最佳解决方案。我的笔记本电脑配置是双核 3 GB 内存 320 高清,32 位。
采纳答案by Bananeweizen
Unzip again. Make sure that your unzip tool extracts directories. This error is typical for unzipping to a flat folder structure.
再次解压。确保您的解压缩工具解压缩目录。此错误是解压缩到平面文件夹结构的典型错误。
回答by barak manos
Happened to me too, because I tried to run the eclipse before the unzip process has finished.
我也发生过,因为我试图在解压缩过程完成之前运行 eclipse。
Make sure that the unzip process has finished.
确保解压缩过程已完成。
回答by teardrop
You might want to check that library org.eclipse.equinox.launcher_.dist.jarand plugins/org.eclipse.equinox.launcher.gtk.linux.x86_.distexists on your system.
您可能想检查系统上是否存在库 org.eclipse.equinox.launcher_.dist.jar和 plugins/org.eclipse.equinox.launcher.gtk.linux.x86_.dist。
Make sure that the version of libraries mentioned in eclipse.ini and the version that exists on your system is same. Usually after upgrade this mismatch occurs and eclipse fails to locate the required jar. Please take a look at this blog post here
确保 eclipse.ini 中提到的库版本与您系统上存在的版本相同。通常在升级后会发生这种不匹配并且 eclipse 无法找到所需的 jar。请在此处查看此博客文章
回答by Bobdabiulder
In eclipse.ini, I noticed some paths contained dashes, which denote a new arguement. It is a simple fix:
在 eclipse.ini 中,我注意到一些路径包含破折号,表示新的争论。这是一个简单的修复:
-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20150204-1316
must be:
必须是:
-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v201404152008.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v201502041316
插件/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v201502041316
But, you must also do the same to the actual files. Hope this helps!
但是,您还必须对实际文件执行相同操作。希望这可以帮助!