Use Bundle-NativeCode on Linux does not work - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T08:11:38Zhttp://stackoverflow.com/feeds/question/472825http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/472825/use-bundle-nativecode-on-linux-does-not-work4Use Bundle-NativeCode on Linux does not workMarkus Lausberg2009-01-23T13:13:40Z2009-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#4728680Answer by flolo for Use Bundle-NativeCode on Linux does not workflolo2009-01-23T13:25:17Z2009-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#4729221Answer by Andrew Eidsness for Use Bundle-NativeCode on Linux does not workAndrew Eidsness2009-01-23T13:44:30Z2009-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#4731351Answer by Mike Houston for Use Bundle-NativeCode on Linux does not workMike Houston2009-01-23T14:47:01Z2009-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#4732061Answer by Markus Lausberg for Use Bundle-NativeCode on Linux does not workMarkus Lausberg2009-01-23T15:07:41Z2009-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>