blob: b0bbe99c86e6ea2c3eea5d73db7787447a4adc6c [file] [log] [blame]
Dan Willemsen208ae172015-09-16 16:33:27 -07001//
2// libdl
3//
dimitryc5ea3eb2017-10-05 17:23:10 +02004cc_library_static {
5 name: "libdl_static",
6
7 srcs: ["libdl.c", "libdl_cfi.cpp"],
8
9 cflags: [
10 "-Wall",
11 "-Wextra",
12 "-Wunused",
13 "-Werror",
14 ],
15
16 // For private/CFIShadow.h.
17 include_dirs: ["bionic/libc"],
18
19 stl: "none",
20
21 sanitize: {
22 never: true,
23 },
24}
25
Dan Willemsen208ae172015-09-16 16:33:27 -070026cc_library {
Dan Willemsen7ec52b12016-11-28 17:02:25 -080027 name: "libdl",
28
29 defaults: ["linux_bionic_supported"],
Dan Willemsen208ae172015-09-16 16:33:27 -070030
31 // NOTE: --exclude-libs=libgcc.a makes sure that any symbols libdl.so pulls from
32 // libgcc.a are made static to libdl.so. This in turn ensures that libraries that
33 // a) pull symbols from libgcc.a and b) depend on libdl.so will not rely on libdl.so
34 // to provide those symbols, but will instead pull them from libgcc.a. Specifically,
35 // we use this property to make sure libc.so has its own copy of the code from
36 // libgcc.a it uses.
37 //
38 // DO NOT REMOVE --exclude-libs!
39
40 ldflags: ["-Wl,--exclude-libs=libgcc.a"],
Dan Willemsen208ae172015-09-16 16:33:27 -070041
42 // for x86, exclude libgcc_eh.a for the same reasons as above
43 arch: {
Dan Willemsen9e6f98f2015-11-03 14:30:57 -080044 arm: {
45 version_script: "libdl.arm.map",
Dimitry Ivanovac4bd2f2016-11-21 12:50:38 -080046 ldflags: ["-Wl,--hash-style=both"],
Dan Willemsen9e6f98f2015-11-03 14:30:57 -080047 },
48 arm64: {
49 version_script: "libdl.arm64.map",
50 },
51 mips: {
52 version_script: "libdl.mips.map",
53 },
54 mips64: {
55 version_script: "libdl.mips64.map",
56 },
Dan Willemsen208ae172015-09-16 16:33:27 -070057 x86: {
Dimitry Ivanovac4bd2f2016-11-21 12:50:38 -080058 ldflags: [
59 "-Wl,--exclude-libs=libgcc_eh.a",
60 "-Wl,--hash-style=both",
61 ],
Dan Willemsen9e6f98f2015-11-03 14:30:57 -080062 version_script: "libdl.x86.map",
Dan Willemsen208ae172015-09-16 16:33:27 -070063 },
64 x86_64: {
65 ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"],
Dan Willemsen9e6f98f2015-11-03 14:30:57 -080066 version_script: "libdl.x86_64.map",
Dan Willemsen208ae172015-09-16 16:33:27 -070067 },
68 },
dimitrydc7cc622017-08-30 10:52:19 +020069 shared: {
dimitryc5ea3eb2017-10-05 17:23:10 +020070 whole_static_libs: ["libdl_static"],
dimitrydc7cc622017-08-30 10:52:19 +020071 },
72 static: {
73 srcs: [ "libdl_static.c" ],
74 },
Dan Willemsen208ae172015-09-16 16:33:27 -070075 cflags: [
76 "-Wall",
77 "-Wextra",
78 "-Wunused",
79 "-Werror",
80 ],
81 stl: "none",
82
Dan Willemsen208ae172015-09-16 16:33:27 -070083 // NOTE: libdl needs __aeabi_unwind_cpp_pr0 from libgcc.a but libgcc.a needs a
84 // few symbols from libc. Using --no-undefined here results in having to link
85 // against libc creating a circular dependency which is removed and we end up
86 // with missing symbols. Since this library is just a bunch of stubs, we set
87 // LOCAL_ALLOW_UNDEFINED_SYMBOLS to remove --no-undefined from the linker flags.
88 allow_undefined_symbols: true,
89 system_shared_libs: [],
90
Dimitry Ivanovd9e427c2016-11-22 16:55:25 -080091 // This is placeholder library the actual implementation is (currently)
92 // provided by the linker.
93 shared_libs: [ "ld-android" ],
94
95 sanitize: {
96 never: true,
97 },
98}
99
100cc_library {
101 // NOTE: --exclude-libs=libgcc.a makes sure that any symbols libdl.so pulls from
102 // libgcc.a are made static to ld-android.so. This in turn ensures that libraries that
103 // a) pull symbols from libgcc.a and b) depend on ld-android.so will not rely on ld-android.so
104 // to provide those symbols, but will instead pull them from libgcc.a. Specifically,
105 // we use this property to make sure libc.so has its own copy of the code from
106 // libgcc.a it uses.
107 //
108 // DO NOT REMOVE --exclude-libs!
109
110 ldflags: ["-Wl,--exclude-libs=libgcc.a"],
111
112 // for x86, exclude libgcc_eh.a for the same reasons as above
113 arch: {
114 x86: {
115 ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"],
116 },
117 x86_64: {
118 ldflags: ["-Wl,--exclude-libs=libgcc_eh.a"],
119 },
120 },
121 srcs: ["ld_android.c"],
122 cflags: [
123 "-Wall",
124 "-Wextra",
125 "-Wunused",
126 "-Werror",
127 ],
128 stl: "none",
129
130 name: "ld-android",
Dan Willemsen82295962017-03-15 14:23:50 -0700131 defaults: ["linux_bionic_supported"],
Dimitry Ivanovd9e427c2016-11-22 16:55:25 -0800132
133 // NOTE: libdl needs __aeabi_unwind_cpp_pr0 from libgcc.a but libgcc.a needs a
134 // few symbols from libc. Using --no-undefined here results in having to link
135 // against libc creating a circular dependency which is removed and we end up
136 // with missing symbols. Since this library is just a bunch of stubs, we set
137 // LOCAL_ALLOW_UNDEFINED_SYMBOLS to remove --no-undefined from the linker flags.
138 allow_undefined_symbols: true,
139 system_shared_libs: [],
140
Colin Cross27c43c52016-04-07 13:27:24 -0700141 sanitize: {
142 never: true,
143 },
Dan Willemsen208ae172015-09-16 16:33:27 -0700144}
Dan Alberte8a91082016-08-04 13:45:44 -0700145
146ndk_library {
Dan Willemsen993b0832017-04-07 14:09:18 -0700147 name: "libdl",
Dan Alberte8a91082016-08-04 13:45:44 -0700148 symbol_file: "libdl.map.txt",
149 first_version: "9",
150}
Dan Willemsenb93d3c22017-03-20 14:07:47 -0700151
152llndk_library {
Dan Willemsen993b0832017-04-07 14:09:18 -0700153 name: "libdl",
Dan Willemsenb93d3c22017-03-20 14:07:47 -0700154 symbol_file: "libdl.map.txt",
155}