gpt4 book ai didi

c++ - 安卓NDK :undefined reference to ' '

转载 作者:太空狗 更新时间:2023-10-29 21:48:06 26 4
gpt4 key购买 nike

我正在尝试构建 g729 编解码器的库文件。我有此编解码器的源代码并尝试使用 Android NDK 进行构建。
几乎所有目标文件都已构建,但最后我收到此错误。
但我坚持这个错误。谁能解释这个错误的含义,我应该怎么做才能解决这个问题?

./obj/local/armeabi-v7a/objs/g729_jni/g729/cod_ld8a.o: In function `Coder_ld8a':
/root/g729/jni/g729/cod_ld8a.c:267: undefined reference to `Pitch_ol_fast'
/root/g729/jni/g729/cod_ld8a.c:325: undefined reference to `Pitch_fr3_fast'
/root/g729/jni/g729/cod_ld8a.c:328: undefined reference to `Enc_lag3'
/root/g729/jni/g729/cod_ld8a.c:344: undefined reference to `G_pitch'
collect2: ld returned 1 exit status

谢谢

编辑我已经解决了这个错误,但是是否可行?我在 Android.mk 中添加了这一行

LOCAL_ALLOW_UNDEFINED_SYMBOLS := true

最佳答案

如果您正在编译源代码并且想要链接生成的库,您可以在 Android.mk 文件中使用以下变量之一

LOCAL_STATIC_LIBRARIES: The list of static libraries modules (built with BUILD_STATIC_LIBRARY) that should be linked to this module. This only makes sense in shared library modules.

LOCAL_SHARED_LIBRARIES: The list of shared libraries modules this module depends on at runtime. This is necessary at link time and to embed the corresponding information in the generated file.

有关详细信息,请查看 ndk 文件夹中的 android NDK 文档。

否则,如果您必须链接预建库,Android NDK 文档中有一个部分告诉您如何实现结果。这些文档的在线版本也是 here(PREBUILTS) .

2017 年 9 月 1 日更新

可以找到有关预构建库的文档 here

关于c++ - 安卓NDK :undefined reference to ' ' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11561626/

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