gpt4 book ai didi

java - Mac OS X 上的 JNI 链接时出现 undefined symbol 错误

转载 作者:行者123 更新时间:2023-12-04 01:44:19 33 4
gpt4 key购买 nike

我正在尝试为 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 上为一个 friend 编译它们.

编辑:

这是该项目的项目属性页面“构建阶段”。

enter image description here

谢谢。

最佳答案

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

我建议看这里:

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

这是一个 super 简单的 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 ;)

关于java - Mac OS X 上的 JNI 链接时出现 undefined symbol 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19313333/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com