Solution for: #30: Eclipse fails to launch with shared library error
Fix the Eclipse launcher shared library path
- yliu on April 02, 2009, 06:54 AM UTC
It turns out that after the upgrade process, the shared library path in
Once this path is corrected, the app launches normally.
Eclipse.app/Contents/MacOS/eclipse.ini
was not modified to use the new launcher. Fixing this involved changing the path from its previous value toorg.eclipse.equinox.launcher.carbon.macosx_1.0.101.R34x_v20080731
, or whatever you actually have at the path plugins/org.eclipse.equinox.launcher.*.Once this path is corrected, the app launches normally.
References used:
Thomas Amsler: The Eclipse executable launcher was unable to locate its companion shared library
( http://tamsler.blogspot.com/2008/10/eclipse-executable-launcher-was-unable.html ) - found by yliu on April 02, 2009, 06:51 AM UTC
Comments
how
— blinktank on February 05, 2012, 11:54 PM UTCJust check the launcher.library and startup paths in the eclipse.ini file.
— mohiz tank on April 25, 2012, 07:53 AM UTCcheck, is it correct or not and you get away from this error.
example :
previous paths for my system in eclipse.ini was
--launcher.library
\\VBOXSVR\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.1.100.v20110502
-startup
\\VBOXSVR\plugins\org.eclipse.equinox.launcher_1.2.0.v20110502.jar
which i changed to this ones
--launcher.library
D:\eclipse\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.1.100.v20110502
-startup
D:\eclipse\plugins\org.eclipse.equinox.launcher_1.2.0.v20110502.jar
Now error is gone away.