问答详情
源自:2-2 函数的动态注册

LOGD只能在native-lib.cpp才能打印出日志,而在其他.cpp文件中就会报错: error: undefined reference to '__android_log_print'

还未解决

error: undefined reference to '__android_log_print'clang++: 
error: linker command failed with exit code 1 
(use -v to see invocation)ninja: build stopped: subcommand failed.


提问者:Hanks73441463 2020-08-26 14:25

个回答

  • kewpieQT
    2020-12-06 01:44:39

    可以新建一个 target_link_libraries 函数,将log日志库与你的其它.cpp编译的动态库链接。 

    target_link_libraries 内部也会受到排列顺序的影响,将其它.cpp文件编译的动态库名字放在第一个,就可以正常打印log,但是有可能会导致其它库出现 undefined reference 错误。