aboutsummaryrefslogtreecommitdiffstats
path: root/build/platform/lld/ya.make
blob: b3459211f2a7ccefcbb216695773a69606f03e5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
RESOURCES_LIBRARY()

DEFAULT(LLD_VERSION ${CLANG_VER})

TOOLCHAIN(lld)
VERSION(${LLD_VERSION})

# lld16 is the only supported version at the time
DECLARE_EXTERNAL_HOST_RESOURCES_BUNDLE_BY_JSON(LLD_ROOT lld16.json)

IF (OS_ANDROID)
    # Use LLD shipped with Android NDK.
    LDFLAGS(
        -fuse-ld=lld
    )
    IF (ANDROID_API < 29)
        # Dynamic linker on Android does not support lld's default rosegment
        # prior to API Level 29 (Android Q)
        # See:
        # https://android.googlesource.com/platform/ndk/+/master/docs/BuildSystemMaintainers.md#additional-required-arguments
        # https://github.com/android/ndk/issues/1196
        LDFLAGS(
            -Wl,--no-rosegment
        )
    ENDIF()
    # Enable optimized relocations format (e.g. .rela.dyn section) to reduce binary size
    # See:
    # https://android.googlesource.com/platform/ndk/+/master/docs/BuildSystemMaintainers.md#relr-and-relocation-packing
    IF (ANDROID_API >= 30)
        LDFLAGS(-Wl,--pack-dyn-relocs=android+relr)
    ELSEIF (ANDROID_API >= 28)
        LDFLAGS(-Wl,--pack-dyn-relocs=android+relr,--use-android-relr-tags)
    ELSEIF (ANDROID_API >= 23)
        LDFLAGS(-Wl,--pack-dyn-relocs=android)
    ENDIF()
ELSEIF (OS_LINUX)
    LDFLAGS(
        -fuse-ld=lld
        --ld-path=${LLD_ROOT_RESOURCE_GLOBAL}/bin/ld.lld

        # dynlinker on auld ubuntu versions can not handle .rodata stored in standalone segment [citation needed]
        -Wl,--no-rosegment
        # add build-id to binaries to allow external tools check equality of binaries
        -Wl,--build-id=sha1
    )
ELSEIF (OS_DARWIN OR OS_IOS)
    IF (MAPSMOBI_BUILD_TARGET AND XCODE)
        LDFLAGS(
            -fuse-ld=${LLD_ROOT_RESOURCE_GLOBAL}/bin/ld64.lld
        )
    ELSE()
        LDFLAGS(
            -fuse-ld=lld
            --ld-path=${LLD_ROOT_RESOURCE_GLOBAL}/bin/ld64.lld
            # FIXME: Remove fake linker version flag when clang 16 version arrives
            -mlinker-version=705
        )
    ENDIF()
ELSEIF (OS_EMSCRIPTEN)
    LDFLAGS(
        -fuse-ld=${LLD_ROOT_RESOURCE_GLOBAL}/bin/wasm-ld
        # FIXME: Linker does not capture "ld-path" and therefore it can not find "wasm-ld"
    )
ENDIF()

END()