Android NDK指南解释了Adnroid.mk中的两个变量,如下所示:
LOCAL_LDLIBS – The list of additional linker flags to be used when building your shared library or executable.
…
LOCAL_LDFLAGS – The list of other linker flags to be used when building your shared library or executable.
…
那么这两者有什么区别?
目前可能没有
功能差异(或者这是文档中的一个小
错误),但意图(根据这种类型的命名变量的长期传统)是:
> LOCAL_LDLIBS将指定库或至少要链接到结果中的对象> LOCAL_LDFLAGS将为链接器指定其他配置选项
原文链接:https://www.f2er.com/android/317173.html