Use Bundle-NativeCode on Linux does not work - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T08:11:38Z http://stackoverflow.com/feeds/question/472825 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/472825/use-bundle-nativecode-on-linux-does-not-work 4 Use Bundle-NativeCode on Linux does not work Markus Lausberg 2009-01-23T13:13:40Z 2009-01-23T15:09:21Z <p>Hi,</p> <p>i creat a plugin wich includes the folder structure</p> <ul> <li>src </li> <li>native/so/libsystemcommand.so</li> <li>META-INF/MANIFEST.MF</li> </ul> <p>The manifest include the command</p> <pre><code>Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Commands Plug-in Bundle-SymbolicName: de.system.commands;singleton:=true Bundle-Version: 1.0.0 Bundle-Activator: de.system.commands.CommandsPlugin Bundle-Localization: plugin Bundle-NativeCode: native/so/libsystemcommand.so; osname = Linux; processor = x86 Require-Bundle: org.eclipse.core.runtime, org.apache.commons.logging Eclipse-AutoStart: true Export-Package: de.system.commands, de.system.commands.jni, de.system.commands.utils Bundle-ClassPath: . </code></pre> <p>The build.properties looks like</p> <pre><code>source.. = src/ output.. = bin/ bin.includes = META-INF/,\ .,\ native/ </code></pre> <p>in the start methode of my Activator class i call</p> <pre><code>System.loadLibrary("systemcommand"); </code></pre> <p>At runtime the library is not found and a <strong>UnsatisfiedLinkError</strong> is thrown.</p> <pre><code>java.lang.UnsatisfiedLinkError: no libsystemcommand in java.library.path </code></pre> <p>Do i have to set more attributes in the plugin? Do i have to unzip some informations on the target platform?</p> <p><strong>EDIT:</strong></p> <pre><code>java.library.path=/opt/jdk/j2re1.4.2_16/lib/i386/client:/opt/jdk/j2re1.4.2_16/lib/i386:/opt/jdk/j2re1.4.2_16/../lib/i386::/opt/dsa/lib:/opt/dsa/lib </code></pre> http://stackoverflow.com/questions/472825/use-bundle-nativecode-on-linux-does-not-work/472868#472868 0 Answer by flolo for Use Bundle-NativeCode on Linux does not work flolo 2009-01-23T13:25:17Z 2009-01-23T13:31:08Z <p>The lib has to be in your filesystem (not in an archive file). Then you can either use the linux environment variable <code>LD_LIBRARY_PATH</code> pointing to the lib or define the property java.library.path</p> http://stackoverflow.com/questions/472825/use-bundle-nativecode-on-linux-does-not-work/472922#472922 1 Answer by Andrew Eidsness for Use Bundle-NativeCode on Linux does not work Andrew Eidsness 2009-01-23T13:44:30Z 2009-01-23T13:44:30Z <p>I wonder if the library needs to be specified without the lib prefix? E.g.,</p> <pre><code>System.loadLibrary("systemcommand"); </code></pre> <p>Since that is how the library would be passed on a gcc link line.</p> http://stackoverflow.com/questions/472825/use-bundle-nativecode-on-linux-does-not-work/473135#473135 1 Answer by Mike Houston for Use Bundle-NativeCode on Linux does not work Mike Houston 2009-01-23T14:47:01Z 2009-01-23T14:47:01Z <p>In a plugin fragment for linux, I use:</p> <pre><code>Bundle-NativeCode: librptlc.so; osname = linux; processor=x86 </code></pre> <p>And in the main plugin I use:</p> <pre><code>if (OS.equals(Platform.OS_LINUX)) { System.loadLibrary("rptlc"); } </code></pre> <p>This should work within one plugin too.</p> <p>I seem to remember having some problems with libraries in a sub folder in the jar, but I'm not sure why this would be the case. I just stuck to having the libraries in the root of a plugin fragment instead, which works for me.</p> <p>You could also try getting the file system path of the library (not sure if that's easy) and loading it using:</p> <pre><code>libraryPath = "C:\eclipse\bundles\123\librptlc.so"; System.load(libraryPath); </code></pre> http://stackoverflow.com/questions/472825/use-bundle-nativecode-on-linux-does-not-work/473206#473206 1 Answer by Markus Lausberg for Use Bundle-NativeCode on Linux does not work Markus Lausberg 2009-01-23T15:07:41Z 2009-01-23T15:07:41Z <p>I think i found the solution.</p> <p>We only build the plugin which was not working and copy it to the destination platform directory. After this we start the application as wtach the log files whether the library was foud or not.</p> <p>What we miss, was to <strong>delete the configurations folder</strong>. The new plugin was not unzipp and the library was not existing in the configurations directory.</p> <p>Im sorry and thank you for your answers.</p>