Ich erstelle ein Plugin, das die folgende Ordnerstruktur enthält:
- src
- native/so/libsystemcommand.so
- META-INF/MANIFEST.MF
Das Manifest enthält den Befehl
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: .
Die build.properties sieht wie folgt aus
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
native/
In der Startmethode meiner Activator
Klasse nenne ich
System.loadLibrary("systemcommand");
Zur Laufzeit wird die Bibliothek nicht gefunden und eine UnsatisfiedLinkError geworfen wird.
java.lang.UnsatisfiedLinkError: no libsystemcommand in java.library.path
Muss ich weitere Attribute im Plugin einstellen? Muss ich einige Informationen auf der Zielplattform entpacken?
EDIT :
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
0 Stimmen
Was haben Sie in Ihrem java.library.path?