账号密码登录
微信安全登录
微信扫描二维码登录

登录后绑定QQ、微信即可实现信息互通

手机验证码登录
找回密码返回
邮箱找回 手机找回
注册账号返回
其他登录方式
分享
  • 收藏
    X
    Android jni中打印log报错undefined reference to `__android_log_print'
    42
    0

    在创建工程时,勾选Include C++ support,IDE会自动生成一个native-lib.cpp的文件,在native-lib.cpp文件里打印log是正常的。

    #include <jni.h>
    #include <string>
    #include "android_log.h"
    
    extern "C"
    JNIEXPORT jstring JNICALL
    Java_org_ffmpeg_MainActivity_stringFromJNI(JNIEnv* env, jobject /* this */) {
        std::string hello = "Hello from C++";
        LOGI("native-lib.cpp | Hello, world");
        return env->NewStringUTF(hello.c_str());
    }

    引入的android_log.h头文件内容如下:

    #include <android/log.h>
    #ifndef LOG_TAG
        #define LOG_TAG "FFmpeg"
    #endif
    #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)
    #define LOGI(...) __android_log_print(ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__)

    这时候可以正常打印log:

    
    04-05 21:26:40.953 2751-2751/? I/FFmpeg: native-lib.cpp | Hello, world

    我又新建了一个名为FFmpeg.cpp的文件,内容如下:

    # 这是FFmpeg.cpp的代码
    #include <jni.h>
    #include <string>
    #include "android_log.h"
    
    extern "C"
    JNIEXPORT jint JNICALL
    Java_org_ffmpeg_FFmpeg_exec(JNIEnv* env, jobject /* this */, jstring cmd) {
        LOGI("FFmpeg.cpp | exec()");
        return 12345;
    }

    在FFmpeg.cpp文件里打印Log,就会报错:

    Build command failed.
    Error while executing process D:\Android_SDK\cmake\3.6.4111459\bin\cmake.exe with arguments {--build D:\workspace_as\FFmpeg\app\.externalNativeBuild\cmake\debug\mips64 --target native-lib}
    [1/3] Building CXX object CMakeFiles/ffmpeg.dir/src/main/cpp/ffmpeg.cpp.o
    [2/3] Linking CXX shared library ..\..\..\..\build\intermediates\cmake\debug\obj\mips64\libffmpeg.so
    FAILED: cmd.exe /C "cd . && D:\Android_SDK\ndk-bundle\toolchains\llvm\prebuilt\windows-x86_64\bin\clang++.exe  --target=mips64el-none-linux-android --gcc-toolchain=D:/Android_SDK/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/windows-x86_64 --sysroot=D:/Android_SDK/ndk-bundle/sysroot -fPIC -isystem D:/Android_SDK/ndk-bundle/sysroot/usr/include/mips64el-linux-android -D__ANDROID_API__=21 -g -DANDROID -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fintegrated-as -Wa,--noexecstack -Wformat -Werror=format-security   -O0 -fno-limit-debug-info  -Wl,--exclude-libs,libgcc.a --sysroot D:/Android_SDK/ndk-bundle/platforms/android-21/arch-mips64 -Wl,--build-id -Wl,--warn-shared-textrel -Wl,--fatal-warnings -Wl,--no-undefined -Wl,-z,noexecstack -Qunused-arguments -Wl,-z,relro -Wl,-z,now -shared -Wl,-soname,libffmpeg.so -o ..\..\..\..\build\intermediates\cmake\debug\obj\mips64\libffmpeg.so CMakeFiles/ffmpeg.dir/src/main/cpp/ffmpeg.cpp.o  -lm "D:/Android_SDK/ndk-bundle/sources/cxx-stl/gnu-libstdc++/4.9/libs/mips64/libgnustl_static.a" && cd ."
    CMakeFiles/ffmpeg.dir/src/main/cpp/ffmpeg.cpp.o: In function `Java_org_ffmpeg_FFmpeg_exec':
    D:\workspace_as\FFmpeg\app\src\main\cpp/ffmpeg.cpp:9: undefined reference to `__android_log_print'
    clang++.exe: error: linker command failed with exit code 1 (use -v to see invocation)
    ninja: build stopped: subcommand failed.

    只要一去掉LOGI("FFmpeg.cpp | exec()");这一行,就不会报错了。

    04-05 21:33:17.432 3356-3356/? I/FFmpeg: native-lib.cpp | Hello, world
    04-05 21:33:17.432 3356-3356/? I/FFmpeg: MainActivity.java | 从FFmpeg.exec()中返回的值为:12345

    这个问题太诡异了,我弄了一天也没有头绪,如果有大神知道解决的办法,请告诉我,感激不尽!

    0
    打赏
    收藏
    点击回答
        全部回答
    • 0
    • 在AndroidJNI中打印log报错undefined reference to__android_log_print`,这可能是由于你的JNI代码中没有正确地链接到了log库。在JNI中,你需要链接到正确的库才能使用log`函数。

      如果你的JNI代码中包含了log函数,你需要确保你已经正确地链接到了log库。你可以通过运行以下命令来链接到库:

      bash javah -jni -Djava.class.path=/path/to/log/lib -classpath /path/to/log/lib android_log_print.c

      这里,-Djava.class.path=/path/to/log/lib用于指定Java类路径,-classpath /path/to/log/lib用于指定链接库的位置。

      如果你的JNI代码中没有包含log函数,你需要确保你没有错误地链接了其他的库。你可以通过运行以下命令来链接到库:

      bash javah -jni -Djava.class.path=/path/to/log/lib -classpath /path/to/log/lib android_log_print.c

      这里,-Djava.class.path=/path/to/log/lib用于指定Java类路径,-classpath /path/to/log/lib用于指定链接库的位置。

      如果你的JNI代码中没有包含log函数,你需要确保你的代码中没有错误地链接了其他的库。你可以通过运行以下命令来链接到库:

      bash javah -jni -Djava.class.path=/path/to/log/lib -classpath /path/to/log/lib android_log_print.c

      这里,-Djava.class.path=/path/to/log/lib用于指定Java类路径,-classpath /path/to/log/lib用于指定链接库的位置。

    更多回答
    扫一扫访问手机版
    • 回到顶部
    • 回到顶部