Mac OS X上的JNI链接时未定义的符号错误

时间:2013-10-11 08:11:02

标签: java c java-native-interface linker-errors xcode5

我正在尝试为mac os x编译一个jni库。如果重要的话,我的系统正在运行Mountain Lion。我在xcode中创建了一个jni项目,并将源文件复制到项目中。它编译得很好,但有链接错误。 这是错误:

Undefined symbols for architecture x86_64:
  "_init_queue", referenced from:
      _floodfill in floodfill.o
  "_jumpPointSearch", referenced from:
      _Java_com_clashtune_pathfind_Pathfinder_jumpPointSearchNative in main.o
     (maybe you meant: _Java_com_clashtune_pathfind_Pathfinder_jumpPointSearchNative)
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

我做错了什么?它有四个源文件main.cfloodfill.cjumppointsearch.cqueue.c。我不明白他们做了什么,因为我不是C程序员。我只是在this forum上为朋友编译它们。

编辑:

这是该项目的项目属性页面“Build Phases”。

enter image description here

感谢。

1 个答案:

答案 0 :(得分:0)

您可以尝试使用超级简单的示例代码。您只需要一个简单的C代码和Java类来加载库。

我建议看看这里:

http://jnicookbook.owsiak.org/recipe-No-001/

这是超级简单的Hello World应用程序,您只需要调用简单的C代码:

JNIEXPORT void JNICALL Java_recipeNo001_HelloWorld_displayMessage
  (JNIEnv *env, jclass obj) {

  printf("Hello world!\n");

}

来自Java代码:

package recipeNo001;

public class HelloWorld {

  /* This is the native method we want to call */
  public static native void displayMessage();

  /* Inside static block we will load shared library */
  static {
    System.loadLibrary("HelloWorld");
  }

  public static void main(String[] args) {
    /* This message will help you determine whether
        LD_LIBRARY_PATH is correctly set
    */
    System.out.println("library: "
      + System.getProperty("java.library.path"));

    /* Call to shared library */
    HelloWorld.displayMessage();
  }
}

如果您使用的是XCode,那么您也应该能够使用命令行工具。看看这里,如何检查是否安装了它们:

http://jnicookbook.owsiak.org/introduction/

与JNI玩得开心;)