aboutsummaryrefslogtreecommitdiffstats
path: root/libdl/Android.bp
blob: 262da6c7dd7187ff9e5ec03e2f6f9916def4f6bd (plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
//
// libdl
//
cc_library_static {
    name: "libdl_static",
    defaults: ["linux_bionic_supported"],
    recovery_available: true,

    srcs: [
        "libdl.cpp",
        "libdl_cfi.cpp",
    ],

    cflags: [
        "-Wall",
        "-Wextra",
        "-Wunused",
        "-Werror",
    ],

    // For private/CFIShadow.h.
    include_dirs: ["bionic/libc"],

    stl: "none",
    system_shared_libs: [],

    sanitize: {
        never: true,
    },
}

cc_library {
    name: "libdl",
    recovery_available: true,
    static_ndk_lib: true,

    defaults: ["linux_bionic_supported"],

    // NOTE: --exclude-libs=libgcc.a makes sure that any symbols libdl.so pulls from
    // libgcc.a are made static to libdl.so.  This in turn ensures that libraries that
    // a) pull symbols from libgcc.a and b) depend on libdl.so will not rely on libdl.so
    // to provide those symbols, but will instead pull them from libgcc.a.  Specifically,
    // we use this property to make sure libc.so has its own copy of the code from
    // libgcc.a it uses.
    //
    // DO NOT REMOVE --exclude-libs!

    ldflags: [
        "-Wl,--exclude-libs=libgcc.a",
        "-Wl,--exclude-libs=libclang_rt.builtins-arm-android.a",
        "-Wl,--exclude-libs=libclang_rt.builtins-aarch64-android.a",
        "-Wl,--exclude-libs=libclang_rt.builtins-x86-android.a",
        "-Wl,--exclude-libs=libclang_rt.builtins-x86_64-android.a",
    ],

    // for x86, exclude libgcc_eh.a for the same reasons as above
    arch: {
        arm: {
            version_script: ":libdl.arm.map",
            pack_relocations: false,
            ldflags: ["-Wl,--hash-style=both"],
        },
        arm64: {
            version_script: ":libdl.arm64.map",
        },
        x86: {
            pack_relocations: false,
            ldflags: [
                "-Wl,--exclude-libs=libgcc_eh.a",
                "-Wl,--hash-style=both",
            ],
            version_script: ":libdl.x86.map",
        },
        x86_64: {
            ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"],
            version_script: ":libdl.x86_64.map",
        },
    },
    shared: {
        whole_static_libs: ["libdl_static"],
    },
    static: {
        srcs: ["libdl_static.cpp"],
    },
    cflags: [
        "-Wall",
        "-Wextra",
        "-Wunused",
        "-Werror",
    ],
    stl: "none",

    nocrt: true,
    system_shared_libs: [],

    // This is placeholder library the actual implementation is (currently)
    // provided by the linker.
    shared_libs: ["ld-android"],

    sanitize: {
        never: true,
    },

    stubs: {
        symbol_file: "libdl.map.txt",
        versions: ["10000"],
    },
}

ndk_library {
    name: "libdl",
    symbol_file: "libdl.map.txt",
    first_version: "9",
}

llndk_library {
    name: "libdl",
    symbol_file: "libdl.map.txt",
}

genrule {
    name: "libdl.arm.map",
    out: ["libdl.arm.map"],
    srcs: ["libdl.map.txt"],
    tool_files: [":bionic-generate-version-script"],
    cmd: "$(location :bionic-generate-version-script) arm $(in) $(out)",
}

genrule {
    name: "libdl.arm64.map",
    out: ["libdl.arm64.map"],
    srcs: ["libdl.map.txt"],
    tool_files: [":bionic-generate-version-script"],
    cmd: "$(location :bionic-generate-version-script) arm64 $(in) $(out)",
}

genrule {
    name: "libdl.x86.map",
    out: ["libdl.x86.map"],
    srcs: ["libdl.map.txt"],
    tool_files: [":bionic-generate-version-script"],
    cmd: "$(location :bionic-generate-version-script) x86 $(in) $(out)",
}

genrule {
    name: "libdl.x86_64.map",
    out: ["libdl.x86_64.map"],
    srcs: ["libdl.map.txt"],
    tool_files: [":bionic-generate-version-script"],
    cmd: "$(location :bionic-generate-version-script) x86_64 $(in) $(out)",
}