vote up 0 vote down star

If I try to implement my class on this file I get an error UnsatisfiedLinkError, however if I remove the implementation of the Broker.h Class it goes ok. Why?

Broker.h

#include "XletTable.h"

#ifndef BROKER_H_
#define BROKER_H_

class Broker {
private:
    static Broker* brokerSingleton;
    static XletTable *table;

    // Private constructor for singleton
    Broker(JNIEnv *, XletTable *);

    // Get XletTable (Hash Table) that contains the...
    static XletTable* getTable();

public:
    virtual ~Broker();
    static Broker* getInstance(JNIEnv *);
    jobject callMethod(JNIEnv *, jclass, jstring, jobject, jbyteArray);
};

#endif /* BROKER_H_ */

BrokerJNI.h

/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class Broker */

#ifndef _Included_Broker
#define _Included_Broker
#ifdef __cplusplus
extern "C" {
#endif
/*
 * Class:     Broker
 * Method:    callMethod
 * Signature: (Ljava/lang/String;Ljava/lang/reflect/Method;[B)Ljava/lang/Object;
 */
JNIEXPORT jobject JNICALL Java_Broker_callMethod
  (JNIEnv *, jclass, jstring, jobject, jbyteArray);

#ifdef __cplusplus
}
#endif
#endif
flag

Please post the exact error message, not just say 'I get a linker error'. It's hard to divine which of the Broker constructor or JNI function fails to link. – Marcus Lindblom Oct 26 at 20:34
java.lang.UnsatisfiedLinkError: /home/marcos/workspace/UFG-InterAPPJava/dist/libInterAppCC.so at java.lang.ClassLoader$NativeLibrary.load(Native Method) at java.lang.ClassLoader.loadLibrary0(Unknown Source) at java.lang.ClassLoader.loadLibrary0(Unknown Source) at java.lang.ClassLoader.loadLibraryInternal(Unknown Source) at java.lang.ClassLoader.loadLibrary(Unknown Source) at java.lang.Runtime.loadLibrary0(Unknown Source) at java.lang.System.loadLibrary(Unknown Source) at IxcRegistry.<clinit>(Unknown Source) – Marcos Roriz Oct 26 at 21:01

2 Answers

vote up 0 vote down check

Probably your library miss reference to some symbol, or another library. Try make some main.cpp with empty main() function, and link it with your library - g++ main.cpp -o main -lInterAppCC. If you miss something, the linker will give you a detailed error message.

PS. Since your header file already wraps function prototype with extern "C", you don't required to do the same when writing implementation.

link|flag
Got an strange error: ld libInterAppCC.so ld: warning: cannot find entry symbol _start; not setting start address libInterAppCC.so: undefined reference to `Broker::brokerSingleton' libInterAppCC.so: undefined reference to `vtable for IxcRegistry' libInterAppCC.so: undefined reference to `Broker::table' libInterAppCC.so: undefined reference to `IxcRegistry::table' libInterAppCC.so: undefined reference to `IxcRegistry::cppRegistrySingleton' libInterAppCC.so: undefined reference to `IxcRegistry::getXletTable()' – Marcos Roriz Oct 26 at 23:35
Now you know exactly what symbols are missing. First, you need to add declarations of static variables in C++ file: Broker* Broker::brokerSingleton; XletTable* Broker::table;. Then you need to understand what's going on with other missing symbol: did you miss to add link to library that contains IxcRegistry when linking your JNI library? – Xeor Oct 26 at 23:56
Thanks, now I put those stuff there, now I'm getting only this errors: ld: warning: cannot find entry symbol _start; not setting start address libInterAppCC.so: undefined reference to `vtable for IxcRegistry' libInterAppCC.so: undefined reference to `IxcRegistry::getXletTable()' I'll post my IxcRegistry in the question – Marcos Roriz Oct 27 at 0:17
vote up 2 vote down

You need to use extern "C" around the JNIEXPORT stuff, to avoid c++ name mangling of the JNI functions.

C++ name mangling changes function names (in the obj-files) to include the types of parameters, virtual-ness, etc, to be able to link different overloaded functions with the same name.

So, wrap your JNIEXPORT with extern "C" { ... } (look at the JNI header) and make sure your c++-code isn't wrapped in the same.

link|flag
I did what you say, wrapped the entire JNIEXPORT with "external "C" { } still no luck... – Marcos Roriz Oct 26 at 21:11
Could you edit your question and add the new code in it's entirety? – Marcus Lindblom Oct 26 at 21:13
done editing the question – Marcos Roriz Oct 26 at 21:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.