LOCAL_LDLIBS vs. LOCAL_LDFLAGS

前端 未结 2 1496
情歌与酒
情歌与酒 2021-02-15 17:52

The Android NDK guide explains the two variables in the Adnroid.mk as follows:

LOCAL_LDLIBS - The list of additional linker flags to be used

2条回答
  •  难免孤独
    2021-02-15 18:29

    The main differences are the following:

    • LOCAL_LDFLAGS appear before the list of object files and libraries on the final linker command-line, this is where you want to put actual "flags" that affect linker behaviour.

    • LOCAL_LDLIBS appear after the list of object files and libraries on the final linked command-line, this is where you want to put actual system library dependencies.

    The distinction exists because of the way static linking works on Unix, i.e. the order of object files, static libraries and shared libraries is very important to determine the final result, and sometimes you really to ensure that something appears before / after the other.

    In the end, I recommend following the documentation, i.e.:

    • Put real linker flags into LOCAL_LDFLAGS

    • Put system library dependencies into LOCAL_LDLIBS

    • Only use LOCAL_LDLIBS for system library dependencies. If you want to point to another library, it's much better to list them in either LOCAL_STATIC_LIBRARIES and LOCAL_SHARED_LIBRARIES (even if this means defining a PREBUILT_XXX module for them), because this lets the build system work out dependencies and ordering automatically for you.

提交回复
热议问题