blob: 3a8948b64626b56729aaa4ff896027070a12a897 [file] [log] [blame]
Dan Willemsen208ae172015-09-16 16:33:27 -07001// Define the common source files for all the libc instances
2// =========================================================
Bob Badouraa7d8352021-02-19 13:06:22 -08003package {
4 default_applicable_licenses: ["bionic_libc_license"],
5}
6
7license {
8 name: "bionic_libc_license",
9 visibility: [":__subpackages__"],
10 license_kinds: [
11 "SPDX-license-identifier-Apache-2.0",
12 "SPDX-license-identifier-BSD",
13 "SPDX-license-identifier-ISC",
14 "SPDX-license-identifier-MIT",
15 "legacy_notice",
16 "legacy_unencumbered",
17 ],
18 license_text: [
19 "NOTICE",
20 ],
21}
22
Dan Willemsen208ae172015-09-16 16:33:27 -070023libc_common_src_files = [
Dan Willemsen208ae172015-09-16 16:33:27 -070024 "bionic/ether_aton.c",
25 "bionic/ether_ntoa.c",
Victor Khimenko8e0707d2020-06-09 21:57:05 +020026 "bionic/exit.cpp",
Dan Willemsen208ae172015-09-16 16:33:27 -070027 "bionic/initgroups.c",
Dan Willemsen208ae172015-09-16 16:33:27 -070028 "bionic/isatty.c",
Dan Willemsen208ae172015-09-16 16:33:27 -070029 "bionic/sched_cpualloc.c",
30 "bionic/sched_cpucount.c",
Mitch Phillipse6997d52020-11-30 15:04:14 -080031 "bionic/sysprop_helpers.cpp",
Elliott Hughes3a4c4542017-07-19 17:20:24 -070032 "stdio/fmemopen.cpp",
Elliott Hughes7f0849f2016-08-26 16:17:17 -070033 "stdio/parsefloat.c",
Dan Willemsen268a6732015-10-15 14:49:45 -070034 "stdio/refill.c",
Dan Willemsen3e621712016-02-03 21:48:08 -080035 "stdio/stdio.cpp",
Dan Willemsen208ae172015-09-16 16:33:27 -070036 "stdio/stdio_ext.cpp",
Elliott Hughes38e4aef2018-01-18 10:21:29 -080037 "stdio/vfscanf.cpp",
Elliott Hughes7f0849f2016-08-26 16:17:17 -070038 "stdio/vfwscanf.c",
Dan Willemsen208ae172015-09-16 16:33:27 -070039]
40
Peter Collingbourne570de332019-12-11 10:00:58 -080041// off64_t/time64_t support on LP32.
Dan Willemsen208ae172015-09-16 16:33:27 -070042// ========================================================
Dan Willemsen208ae172015-09-16 16:33:27 -070043libc_common_src_files_32 = [
44 "bionic/legacy_32_bit_support.cpp",
45 "bionic/time64.c",
46]
47
Elliott Hughes53cf3482016-08-09 13:06:41 -070048libc_common_flags = [
49 "-D_LIBC=1",
Elliott Hughes25f17e42018-02-12 15:48:01 -080050 "-D__BIONIC_LP32_USE_STAT64",
Elliott Hughes53cf3482016-08-09 13:06:41 -070051 "-Wall",
52 "-Wextra",
53 "-Wunused",
Elliott Hughes3048a362018-01-19 17:58:07 -080054 "-Wno-char-subscripts",
Elliott Hughes53cf3482016-08-09 13:06:41 -070055 "-Wno-deprecated-declarations",
Elliott Hughesb348d5c2017-07-24 16:53:11 -070056 "-Wno-gcc-compat",
Elliott Hughes8e547bd2016-08-16 15:57:47 -070057 "-Wframe-larger-than=2048",
Elliott Hughes53cf3482016-08-09 13:06:41 -070058
59 // Try to catch typical 32-bit assumptions that break with 64-bit pointers.
60 "-Werror=pointer-to-int-cast",
61 "-Werror=int-to-pointer-cast",
62 "-Werror=type-limits",
63 "-Werror",
Ryan Prichard8f419572018-02-20 17:09:05 -080064
65 // Clang's exit-time destructor registration hides __dso_handle, but
66 // __dso_handle needs to have default visibility on ARM32. See b/73485611.
67 "-Wexit-time-destructors",
Mitch Phillipsf3968e82020-01-31 19:57:04 -080068
69 // GWP-ASan requires platform TLS.
70 "-fno-emulated-tls",
Elliott Hughesa13d0662021-12-02 14:42:16 -080071
72 // We know clang does a lot of harm by rewriting what we've said, and sadly
73 // never see any good it does, so let's just ask it to do what we say...
74 // (The specific motivating example was clang turning a loop that would only
75 // ever touch 0, 1, or 2 bytes into a call to memset, which was never going
76 // to amortize.)
77 "-fno-builtin",
Elliott Hughes53cf3482016-08-09 13:06:41 -070078]
79
Dan Willemsen208ae172015-09-16 16:33:27 -070080// Define some common cflags
81// ========================================================
Colin Cross50c21ab2015-10-31 23:03:05 -070082cc_defaults {
83 name: "libc_defaults",
Dan Willemsen7ec52b12016-11-28 17:02:25 -080084 defaults: ["linux_bionic_supported"],
Elliott Hughes53cf3482016-08-09 13:06:41 -070085 cflags: libc_common_flags,
86 asflags: libc_common_flags,
Colin Cross50c21ab2015-10-31 23:03:05 -070087 conlyflags: ["-std=gnu99"],
88 cppflags: [],
Christopher Ferris7a3681e2017-04-24 17:48:32 -070089 include_dirs: [
90 "bionic/libc/async_safe/include",
Peter Collingbourne5d3aa862020-09-11 15:05:17 -070091 "bionic/libc/platform",
Tom Cherry379ed1e2020-09-17 09:36:25 -070092 // For android_filesystem_config.h.
93 "system/core/libcutils/include",
Christopher Ferris7a3681e2017-04-24 17:48:32 -070094 ],
Colin Cross50c21ab2015-10-31 23:03:05 -070095
Martin Stjernholm82d84bc2020-04-06 20:32:09 +010096 header_libs: [
97 "libc_headers",
98 "gwp_asan_headers",
Rupert Shuttleworthed80dcd2021-04-22 01:52:53 -040099 "liblog_headers", // needed by bionic/libc/async_safe/include
Martin Stjernholm82d84bc2020-04-06 20:32:09 +0100100 ],
101 export_header_lib_headers: [
102 "libc_headers",
103 ],
Mitch Phillipsf3968e82020-01-31 19:57:04 -0800104
Colin Cross50c21ab2015-10-31 23:03:05 -0700105 stl: "none",
106 system_shared_libs: [],
Colin Cross27c43c52016-04-07 13:27:24 -0700107 sanitize: {
Evgenii Stepanovbe551f52018-08-13 16:46:15 -0700108 address: false,
109 integer_overflow: false,
Mitch Phillipsdfde0ee2019-05-01 14:26:13 -0700110 // TODO(b/132640749): Fix broken fuzzer support.
111 fuzzer: false,
Colin Cross27c43c52016-04-07 13:27:24 -0700112 },
Yifan Hong5a39cee2020-01-21 16:43:56 -0800113 ramdisk_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -0700114 vendor_ramdisk_available: true,
Jiyong Park5603c6e2018-04-27 21:53:11 +0900115 recovery_available: true,
dimitry7f048802019-05-03 15:57:34 +0200116 native_bridge_supported: true,
Ivan Lozanof17fd1d2018-11-27 07:56:17 -0800117
Yi Konge3d90de2019-02-20 14:28:56 -0800118 // lld complains about duplicate symbols in libcrt and libgcc. Suppress the
119 // warning since this is intended right now.
120 ldflags: ["-Wl,-z,muldefs"],
Peter Collingbournee99912f2019-11-01 15:37:00 -0700121
122 product_variables: {
Evgenii Stepanov5a73e032020-04-29 14:59:44 -0700123 malloc_zero_contents: {
124 cflags: ["-DSCUDO_ZERO_CONTENTS"],
125 },
126 malloc_pattern_fill_contents: {
127 cflags: ["-DSCUDO_PATTERN_FILL_CONTENTS"],
128 },
Steven Morelandfb65ee42020-07-31 00:18:38 +0000129 malloc_not_svelte: {
130 cflags: ["-DUSE_SCUDO"],
131 },
Peter Collingbournee99912f2019-11-01 15:37:00 -0700132 },
Yi Kong9e33b762021-10-29 02:43:22 +0800133
134 lto: {
135 never: true,
136 },
Dan Willemsen208ae172015-09-16 16:33:27 -0700137}
138
Christopher Ferris4df29ed2020-01-24 18:06:42 -0800139libc_scudo_product_variables = {
140 malloc_not_svelte: {
141 cflags: ["-DUSE_SCUDO"],
142 whole_static_libs: ["libscudo"],
143 exclude_static_libs: [
144 "libjemalloc5",
145 "libc_jemalloc_wrapper",
146 ],
147 },
148}
149
Christopher Ferrise55e5ee2019-10-01 17:54:42 -0700150// Defaults for native allocator libs/includes to make it
151// easier to change.
Christopher Ferris062eba22020-01-31 22:40:45 -0800152// To disable scudo for the non-svelte config remove the line:
Christopher Ferris4df29ed2020-01-24 18:06:42 -0800153// product_variables: libc_scudo_product_variables,
Christopher Ferris062eba22020-01-31 22:40:45 -0800154// in the cc_defaults below.
Christopher Ferrise55e5ee2019-10-01 17:54:42 -0700155// ========================================================
156cc_defaults {
157 name: "libc_native_allocator_defaults",
158
Christopher Ferrise55e5ee2019-10-01 17:54:42 -0700159 whole_static_libs: [
160 "libjemalloc5",
161 "libc_jemalloc_wrapper",
162 ],
Mitch Phillipsf3968e82020-01-31 19:57:04 -0800163 header_libs: ["gwp_asan_headers"],
Christopher Ferris062eba22020-01-31 22:40:45 -0800164 product_variables: libc_scudo_product_variables,
Christopher Ferrise55e5ee2019-10-01 17:54:42 -0700165}
166
167// Functions not implemented by jemalloc directly, or that need to
168// be modified for Android.
169cc_library_static {
170 name: "libc_jemalloc_wrapper",
171 defaults: ["libc_defaults"],
172 srcs: ["bionic/jemalloc_wrapper.cpp"],
173 cflags: ["-fvisibility=hidden"],
174
Christopher Ferris4df29ed2020-01-24 18:06:42 -0800175 // Used to pull in the jemalloc include directory so that if the
176 // library is removed, the include directory is also removed.
177 static_libs: ["libjemalloc5"],
Christopher Ferrise55e5ee2019-10-01 17:54:42 -0700178}
179
Dan Willemsen208ae172015-09-16 16:33:27 -0700180// ========================================================
Ryan Prichard249757b2019-11-01 17:18:28 -0700181// libc_bootstrap.a - -fno-stack-protector and -ffreestanding
Dan Willemsen208ae172015-09-16 16:33:27 -0700182// ========================================================
183//
Ryan Prichard249757b2019-11-01 17:18:28 -0700184// Code that implements the stack protector (or that runs before TLS has been set up) needs to be
185// compiled with -fno-stack-protector, since it accesses the stack canary TLS slot. In the linker,
186// some of this code runs before ifunc resolvers have made string.h functions work, so compile with
187// -ffreestanding.
Dan Willemsen208ae172015-09-16 16:33:27 -0700188
189cc_library_static {
190
Colin Crossa3f9fca2016-01-11 13:20:55 -0800191 srcs: [
192 "bionic/__libc_init_main_thread.cpp",
193 "bionic/__stack_chk_fail.cpp",
Ryan Prichard249757b2019-11-01 17:18:28 -0700194 "bionic/bionic_call_ifunc_resolver.cpp",
195 "bionic/getauxval.cpp",
Colin Crossa3f9fca2016-01-11 13:20:55 -0800196 ],
197 arch: {
198 arm64: {
199 srcs: ["arch-arm64/bionic/__set_tls.c"],
200 },
201 x86: {
Ryan Prichard27475b52018-05-17 17:14:18 -0700202 srcs: [
203 "arch-x86/bionic/__libc_init_sysinfo.cpp",
Pirama Arumuga Nainar7b89be72021-02-12 15:09:49 -0800204 "arch-x86/bionic/__libc_int0x80.S",
Ryan Prichard27475b52018-05-17 17:14:18 -0700205 "arch-x86/bionic/__set_tls.cpp",
206 ],
Colin Crossa3f9fca2016-01-11 13:20:55 -0800207 },
208 x86_64: {
209 srcs: ["arch-x86_64/bionic/__set_tls.c"],
210 },
211 },
212
Colin Cross50c21ab2015-10-31 23:03:05 -0700213 defaults: ["libc_defaults"],
Ryan Prichard249757b2019-11-01 17:18:28 -0700214 cflags: ["-fno-stack-protector", "-ffreestanding"],
215 name: "libc_bootstrap",
Dan Willemsen208ae172015-09-16 16:33:27 -0700216}
217
Ryan Prichard249757b2019-11-01 17:18:28 -0700218// libc_init_static.cpp and libc_init_dynamic.cpp need to be built without stack protector.
219// libc_init_static.cpp sets up TLS for static executables, and libc_init_dynamic.cpp initializes
220// the stack protector global variable.
Colin Crossa3f9fca2016-01-11 13:20:55 -0800221
222cc_library_static {
223 name: "libc_init_static",
224 defaults: ["libc_defaults"],
225 srcs: ["bionic/libc_init_static.cpp"],
Ryan Prichard249757b2019-11-01 17:18:28 -0700226 cflags: [
227 "-fno-stack-protector",
228
229 // Compile libc_init_static.cpp with -ffreestanding, because some of its code is called
230 // from the linker before ifunc resolvers have made string.h functions available.
231 "-ffreestanding",
232 ],
Colin Crossa3f9fca2016-01-11 13:20:55 -0800233}
234
Stephen Cranef4b1cbd2017-05-09 14:27:43 -0700235cc_library_static {
236 name: "libc_init_dynamic",
237 defaults: ["libc_defaults"],
238 srcs: ["bionic/libc_init_dynamic.cpp"],
239 cflags: ["-fno-stack-protector"],
240}
Colin Crossa3f9fca2016-01-11 13:20:55 -0800241
Dan Willemsen208ae172015-09-16 16:33:27 -0700242// ========================================================
243// libc_tzcode.a - upstream 'tzcode' code
244// ========================================================
245
246cc_library_static {
247
Colin Cross50c21ab2015-10-31 23:03:05 -0700248 defaults: ["libc_defaults"],
Dan Willemsen208ae172015-09-16 16:33:27 -0700249 srcs: [
Dan Willemsen9c9aa742016-01-15 16:00:57 -0800250 "tzcode/**/*.c",
Elliott Hughes0e8616a2017-04-11 14:44:51 -0700251 "tzcode/bionic.cpp",
Dan Willemsen208ae172015-09-16 16:33:27 -0700252 "upstream-openbsd/lib/libc/time/wcsftime.c", // tzcode doesn't include wcsftime, so we use the OpenBSD one.
253 ],
254
Colin Cross50c21ab2015-10-31 23:03:05 -0700255 cflags: [
Dan Willemsen268a6732015-10-15 14:49:45 -0700256 "-Wno-unused-parameter",
Dan Willemsen208ae172015-09-16 16:33:27 -0700257 // Don't use ridiculous amounts of stack.
258 "-DALL_STATE",
259 // Include tzsetwall, timelocal, timegm, time2posix, and posix2time.
260 "-DSTD_INSPIRED",
Colin Crossa35d23d2015-11-19 13:32:49 -0800261 // Obviously, we want to be thread-safe.
Almaz Mingaleev5411aff2022-02-11 12:27:12 +0000262 "-DTHREAD_SAFE=1",
Dan Willemsen208ae172015-09-16 16:33:27 -0700263 // The name of the tm_gmtoff field in our struct tm.
264 "-DTM_GMTOFF=tm_gmtoff",
Almaz Mingaleeva52a0da2022-02-28 16:55:50 +0000265 // TZDEFAULT is not applicable to Android as there is no one file per time zone mapping
266 "-DTZDEFAULT=NULL",
Dan Willemsen208ae172015-09-16 16:33:27 -0700267 // Where we store our tzdata.
Colin Cross7b294952016-09-29 14:08:13 -0700268 "-DTZDIR=\"/system/usr/share/zoneinfo\"",
Elliott Hughes0a610d02016-07-29 14:04:17 -0700269 // Include `tzname`, `timezone`, and `daylight` globals.
270 "-DHAVE_POSIX_DECLS=0",
Almaz Mingaleev5411aff2022-02-11 12:27:12 +0000271 "-DUSG_COMPAT=2",
272 "-DHAVE_TZNAME=2",
273 // stdbool.h is available
274 "-DHAVE_STDBOOL_H",
Colin Crossa35d23d2015-11-19 13:32:49 -0800275 // Use the empty string (instead of " ") as the timezone abbreviation
276 // fallback.
Colin Cross7b294952016-09-29 14:08:13 -0700277 "-DWILDABBR=\"\"",
Dan Willemsen208ae172015-09-16 16:33:27 -0700278 "-Dlint",
279 ],
280
Dan Willemsen208ae172015-09-16 16:33:27 -0700281 local_include_dirs: ["tzcode/"],
282 name: "libc_tzcode",
Dan Willemsen208ae172015-09-16 16:33:27 -0700283}
284
285// ========================================================
286// libc_dns.a - modified NetBSD DNS code
287// ========================================================
288
289cc_library_static {
290
Colin Cross50c21ab2015-10-31 23:03:05 -0700291 defaults: ["libc_defaults"],
Dan Willemsen208ae172015-09-16 16:33:27 -0700292 srcs: [
Elliott Hughesd0bbfa82021-04-08 11:58:51 -0700293 "dns/**/*.c*",
Dan Willemsen208ae172015-09-16 16:33:27 -0700294
295 "upstream-netbsd/lib/libc/isc/ev_streams.c",
296 "upstream-netbsd/lib/libc/isc/ev_timers.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700297 ],
298
Colin Cross50c21ab2015-10-31 23:03:05 -0700299 cflags: [
Dan Willemsen208ae172015-09-16 16:33:27 -0700300 "-DANDROID_CHANGES",
301 "-DINET6",
Dan Willemsen208ae172015-09-16 16:33:27 -0700302 "-Wno-unused-parameter",
303 "-include netbsd-compat.h",
Elliott Hughes8e547bd2016-08-16 15:57:47 -0700304 "-Wframe-larger-than=66000",
Elliott Hughese1dc4f62021-01-11 11:51:29 -0800305 "-include private/bsd_sys_param.h",
Dan Willemsen208ae172015-09-16 16:33:27 -0700306 ],
307
Dan Willemsen208ae172015-09-16 16:33:27 -0700308 local_include_dirs: [
309 "dns/include",
310 "private",
311 "upstream-netbsd/lib/libc/include",
312 "upstream-netbsd/android/include",
313 ],
314
315 name: "libc_dns",
Dan Willemsen208ae172015-09-16 16:33:27 -0700316}
317
318// ========================================================
319// libc_freebsd.a - upstream FreeBSD C library code
320// ========================================================
321//
322// These files are built with the freebsd-compat.h header file
323// automatically included.
324
325cc_library_static {
Colin Cross50c21ab2015-10-31 23:03:05 -0700326 defaults: ["libc_defaults"],
Dan Willemsen208ae172015-09-16 16:33:27 -0700327 srcs: [
328 "upstream-freebsd/lib/libc/gen/ldexp.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700329 "upstream-freebsd/lib/libc/stdlib/getopt_long.c",
Elliott Hughes5702c6f2017-08-31 17:27:05 -0700330 "upstream-freebsd/lib/libc/stdlib/hcreate.c",
331 "upstream-freebsd/lib/libc/stdlib/hcreate_r.c",
332 "upstream-freebsd/lib/libc/stdlib/hdestroy_r.c",
333 "upstream-freebsd/lib/libc/stdlib/hsearch_r.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700334 "upstream-freebsd/lib/libc/stdlib/qsort.c",
335 "upstream-freebsd/lib/libc/stdlib/quick_exit.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700336 "upstream-freebsd/lib/libc/string/wcpcpy.c",
337 "upstream-freebsd/lib/libc/string/wcpncpy.c",
338 "upstream-freebsd/lib/libc/string/wcscasecmp.c",
Dan Willemsen268a6732015-10-15 14:49:45 -0700339 "upstream-freebsd/lib/libc/string/wcscat.c",
340 "upstream-freebsd/lib/libc/string/wcschr.c",
341 "upstream-freebsd/lib/libc/string/wcscmp.c",
342 "upstream-freebsd/lib/libc/string/wcscpy.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700343 "upstream-freebsd/lib/libc/string/wcscspn.c",
344 "upstream-freebsd/lib/libc/string/wcsdup.c",
345 "upstream-freebsd/lib/libc/string/wcslcat.c",
Dan Willemsen268a6732015-10-15 14:49:45 -0700346 "upstream-freebsd/lib/libc/string/wcslen.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700347 "upstream-freebsd/lib/libc/string/wcsncasecmp.c",
348 "upstream-freebsd/lib/libc/string/wcsncat.c",
349 "upstream-freebsd/lib/libc/string/wcsncmp.c",
350 "upstream-freebsd/lib/libc/string/wcsncpy.c",
351 "upstream-freebsd/lib/libc/string/wcsnlen.c",
352 "upstream-freebsd/lib/libc/string/wcspbrk.c",
Dan Willemsen268a6732015-10-15 14:49:45 -0700353 "upstream-freebsd/lib/libc/string/wcsrchr.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700354 "upstream-freebsd/lib/libc/string/wcsspn.c",
Elliott Hughes20f33992017-07-13 09:45:00 -0700355 "upstream-freebsd/lib/libc/string/wcsstr.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700356 "upstream-freebsd/lib/libc/string/wcstok.c",
357 "upstream-freebsd/lib/libc/string/wmemchr.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700358 "upstream-freebsd/lib/libc/string/wmemcmp.c",
Elliott Hughes20f33992017-07-13 09:45:00 -0700359 "upstream-freebsd/lib/libc/string/wmemcpy.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700360 "upstream-freebsd/lib/libc/string/wmemmove.c",
Dan Willemsen9c9aa742016-01-15 16:00:57 -0800361 "upstream-freebsd/lib/libc/string/wmemset.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700362 ],
363 arch: {
364 arm64: {
365 exclude_srcs: [
366 "upstream-freebsd/lib/libc/string/wmemmove.c",
367 ],
368 },
369 x86: {
370 exclude_srcs: [
371 "upstream-freebsd/lib/libc/string/wcschr.c",
372 "upstream-freebsd/lib/libc/string/wcscmp.c",
373 "upstream-freebsd/lib/libc/string/wcslen.c",
374 "upstream-freebsd/lib/libc/string/wcsrchr.c",
Haibo Huangb9244ff2018-08-11 10:12:13 -0700375 "upstream-freebsd/lib/libc/string/wmemcmp.c",
376 "upstream-freebsd/lib/libc/string/wcscat.c",
377 "upstream-freebsd/lib/libc/string/wcscpy.c",
378 "upstream-freebsd/lib/libc/string/wmemcmp.c",
Shalini Salomi Bodapati4ed2f472019-06-13 09:54:08 +0530379 "upstream-freebsd/lib/libc/string/wmemset.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700380 ],
Dan Willemsen208ae172015-09-16 16:33:27 -0700381 },
Dan Willemsen208ae172015-09-16 16:33:27 -0700382 },
383
Colin Cross50c21ab2015-10-31 23:03:05 -0700384 cflags: [
Dan Willemsen208ae172015-09-16 16:33:27 -0700385 "-Wno-sign-compare",
Elliott Hughes5702c6f2017-08-31 17:27:05 -0700386 "-Wno-unused-parameter",
Dan Willemsen208ae172015-09-16 16:33:27 -0700387 "-include freebsd-compat.h",
388 ],
389
Dan Willemsen208ae172015-09-16 16:33:27 -0700390 local_include_dirs: [
391 "upstream-freebsd/android/include",
392 ],
393
394 name: "libc_freebsd",
Dan Willemsen208ae172015-09-16 16:33:27 -0700395}
396
Elliott Hughes8e547bd2016-08-16 15:57:47 -0700397cc_library_static {
398 defaults: ["libc_defaults"],
399 srcs: [
Elliott Hughesf1c568d2017-09-26 17:09:07 -0700400 "upstream-freebsd/lib/libc/gen/glob.c",
Elliott Hughes8e547bd2016-08-16 15:57:47 -0700401 ],
402
403 cflags: [
404 "-Wno-sign-compare",
405 "-include freebsd-compat.h",
Elliott Hughesf1c568d2017-09-26 17:09:07 -0700406 "-Wframe-larger-than=66000",
Elliott Hughes8e547bd2016-08-16 15:57:47 -0700407 ],
408
409 local_include_dirs: [
410 "upstream-freebsd/android/include",
411 ],
412
413 name: "libc_freebsd_large_stack",
414}
415
Dan Willemsen208ae172015-09-16 16:33:27 -0700416// ========================================================
417// libc_netbsd.a - upstream NetBSD C library code
418// ========================================================
419//
420// These files are built with the netbsd-compat.h header file
421// automatically included.
422
423cc_library_static {
424
Colin Cross50c21ab2015-10-31 23:03:05 -0700425 defaults: ["libc_defaults"],
Dan Willemsen208ae172015-09-16 16:33:27 -0700426 srcs: [
427 "upstream-netbsd/common/lib/libc/stdlib/random.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700428 "upstream-netbsd/lib/libc/gen/nice.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700429 "upstream-netbsd/lib/libc/gen/psignal.c",
430 "upstream-netbsd/lib/libc/gen/utime.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700431 "upstream-netbsd/lib/libc/inet/nsap_addr.c",
432 "upstream-netbsd/lib/libc/regex/regcomp.c",
433 "upstream-netbsd/lib/libc/regex/regerror.c",
434 "upstream-netbsd/lib/libc/regex/regexec.c",
435 "upstream-netbsd/lib/libc/regex/regfree.c",
436 "upstream-netbsd/lib/libc/stdlib/bsearch.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700437 "upstream-netbsd/lib/libc/stdlib/drand48.c",
438 "upstream-netbsd/lib/libc/stdlib/erand48.c",
439 "upstream-netbsd/lib/libc/stdlib/jrand48.c",
440 "upstream-netbsd/lib/libc/stdlib/lcong48.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700441 "upstream-netbsd/lib/libc/stdlib/lrand48.c",
442 "upstream-netbsd/lib/libc/stdlib/mrand48.c",
443 "upstream-netbsd/lib/libc/stdlib/nrand48.c",
444 "upstream-netbsd/lib/libc/stdlib/_rand48.c",
445 "upstream-netbsd/lib/libc/stdlib/rand_r.c",
446 "upstream-netbsd/lib/libc/stdlib/reallocarr.c",
447 "upstream-netbsd/lib/libc/stdlib/seed48.c",
448 "upstream-netbsd/lib/libc/stdlib/srand48.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700449 ],
450 multilib: {
451 lib32: {
452 // LP32 cruft
453 srcs: ["upstream-netbsd/common/lib/libc/hash/sha1/sha1.c"],
454 },
455 },
Colin Cross50c21ab2015-10-31 23:03:05 -0700456 cflags: [
Dan Willemsen208ae172015-09-16 16:33:27 -0700457 "-Wno-sign-compare",
Dan Willemsen879cec22016-02-29 10:37:56 -0800458 "-Wno-unused-parameter",
Dan Willemsen208ae172015-09-16 16:33:27 -0700459 "-DPOSIX_MISTAKE",
460 "-include netbsd-compat.h",
461 ],
462
Dan Willemsen208ae172015-09-16 16:33:27 -0700463 local_include_dirs: [
464 "upstream-netbsd/android/include",
465 "upstream-netbsd/lib/libc/include",
466 ],
467
468 name: "libc_netbsd",
Dan Willemsen208ae172015-09-16 16:33:27 -0700469}
470
471// ========================================================
472// libc_openbsd_ndk.a - upstream OpenBSD C library code
473// that can be safely included in the libc_ndk.a (doesn't
474// contain any troublesome global data or constructors).
475// ========================================================
476//
477// These files are built with the openbsd-compat.h header file
478// automatically included.
479
480cc_library_static {
481 name: "libc_openbsd_ndk",
Colin Cross50c21ab2015-10-31 23:03:05 -0700482 defaults: ["libc_defaults"],
Dan Willemsen208ae172015-09-16 16:33:27 -0700483 srcs: [
Dan Willemsen208ae172015-09-16 16:33:27 -0700484 "upstream-openbsd/lib/libc/gen/alarm.c",
485 "upstream-openbsd/lib/libc/gen/ctype_.c",
486 "upstream-openbsd/lib/libc/gen/daemon.c",
487 "upstream-openbsd/lib/libc/gen/err.c",
488 "upstream-openbsd/lib/libc/gen/errx.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700489 "upstream-openbsd/lib/libc/gen/fnmatch.c",
490 "upstream-openbsd/lib/libc/gen/ftok.c",
491 "upstream-openbsd/lib/libc/gen/getprogname.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700492 "upstream-openbsd/lib/libc/gen/setprogname.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700493 "upstream-openbsd/lib/libc/gen/verr.c",
494 "upstream-openbsd/lib/libc/gen/verrx.c",
495 "upstream-openbsd/lib/libc/gen/vwarn.c",
496 "upstream-openbsd/lib/libc/gen/vwarnx.c",
497 "upstream-openbsd/lib/libc/gen/warn.c",
498 "upstream-openbsd/lib/libc/gen/warnx.c",
499 "upstream-openbsd/lib/libc/locale/btowc.c",
500 "upstream-openbsd/lib/libc/locale/mbrlen.c",
501 "upstream-openbsd/lib/libc/locale/mbstowcs.c",
502 "upstream-openbsd/lib/libc/locale/mbtowc.c",
503 "upstream-openbsd/lib/libc/locale/wcscoll.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700504 "upstream-openbsd/lib/libc/locale/wcstoimax.c",
505 "upstream-openbsd/lib/libc/locale/wcstol.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700506 "upstream-openbsd/lib/libc/locale/wcstoll.c",
507 "upstream-openbsd/lib/libc/locale/wcstombs.c",
508 "upstream-openbsd/lib/libc/locale/wcstoul.c",
509 "upstream-openbsd/lib/libc/locale/wcstoull.c",
510 "upstream-openbsd/lib/libc/locale/wcstoumax.c",
511 "upstream-openbsd/lib/libc/locale/wcsxfrm.c",
512 "upstream-openbsd/lib/libc/locale/wctob.c",
513 "upstream-openbsd/lib/libc/locale/wctomb.c",
Elliott Hughes26fda772016-04-06 11:56:41 -0700514 "upstream-openbsd/lib/libc/net/base64.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700515 "upstream-openbsd/lib/libc/net/htonl.c",
516 "upstream-openbsd/lib/libc/net/htons.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700517 "upstream-openbsd/lib/libc/net/inet_lnaof.c",
518 "upstream-openbsd/lib/libc/net/inet_makeaddr.c",
519 "upstream-openbsd/lib/libc/net/inet_netof.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700520 "upstream-openbsd/lib/libc/net/inet_ntoa.c",
521 "upstream-openbsd/lib/libc/net/inet_ntop.c",
522 "upstream-openbsd/lib/libc/net/inet_pton.c",
523 "upstream-openbsd/lib/libc/net/ntohl.c",
524 "upstream-openbsd/lib/libc/net/ntohs.c",
Colin Cross8ce38af2016-01-19 12:50:20 -0800525 "upstream-openbsd/lib/libc/net/res_random.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700526 "upstream-openbsd/lib/libc/stdio/fgetln.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700527 "upstream-openbsd/lib/libc/stdio/fgetwc.c",
528 "upstream-openbsd/lib/libc/stdio/fgetws.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700529 "upstream-openbsd/lib/libc/stdio/flags.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700530 "upstream-openbsd/lib/libc/stdio/fpurge.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700531 "upstream-openbsd/lib/libc/stdio/fputwc.c",
532 "upstream-openbsd/lib/libc/stdio/fputws.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700533 "upstream-openbsd/lib/libc/stdio/fvwrite.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700534 "upstream-openbsd/lib/libc/stdio/fwide.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700535 "upstream-openbsd/lib/libc/stdio/getdelim.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700536 "upstream-openbsd/lib/libc/stdio/gets.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700537 "upstream-openbsd/lib/libc/stdio/makebuf.c",
538 "upstream-openbsd/lib/libc/stdio/mktemp.c",
539 "upstream-openbsd/lib/libc/stdio/open_memstream.c",
540 "upstream-openbsd/lib/libc/stdio/open_wmemstream.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700541 "upstream-openbsd/lib/libc/stdio/rget.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700542 "upstream-openbsd/lib/libc/stdio/setvbuf.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700543 "upstream-openbsd/lib/libc/stdio/ungetc.c",
544 "upstream-openbsd/lib/libc/stdio/ungetwc.c",
545 "upstream-openbsd/lib/libc/stdio/vasprintf.c",
546 "upstream-openbsd/lib/libc/stdio/vdprintf.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700547 "upstream-openbsd/lib/libc/stdio/vsscanf.c",
548 "upstream-openbsd/lib/libc/stdio/vswprintf.c",
549 "upstream-openbsd/lib/libc/stdio/vswscanf.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700550 "upstream-openbsd/lib/libc/stdio/wbuf.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700551 "upstream-openbsd/lib/libc/stdio/wsetup.c",
552 "upstream-openbsd/lib/libc/stdlib/abs.c",
Elliott Hughes01809e12019-02-05 16:48:22 -0800553 "upstream-openbsd/lib/libc/stdlib/div.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700554 "upstream-openbsd/lib/libc/stdlib/getenv.c",
Colin Crossb8396102016-04-07 13:24:50 -0700555 "upstream-openbsd/lib/libc/stdlib/getsubopt.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700556 "upstream-openbsd/lib/libc/stdlib/insque.c",
557 "upstream-openbsd/lib/libc/stdlib/imaxabs.c",
558 "upstream-openbsd/lib/libc/stdlib/imaxdiv.c",
559 "upstream-openbsd/lib/libc/stdlib/labs.c",
Elliott Hughes01809e12019-02-05 16:48:22 -0800560 "upstream-openbsd/lib/libc/stdlib/ldiv.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700561 "upstream-openbsd/lib/libc/stdlib/llabs.c",
Elliott Hughes01809e12019-02-05 16:48:22 -0800562 "upstream-openbsd/lib/libc/stdlib/lldiv.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700563 "upstream-openbsd/lib/libc/stdlib/lsearch.c",
Elliott Hughes26b06072020-07-31 11:00:10 -0700564 "upstream-openbsd/lib/libc/stdlib/recallocarray.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700565 "upstream-openbsd/lib/libc/stdlib/remque.c",
566 "upstream-openbsd/lib/libc/stdlib/setenv.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700567 "upstream-openbsd/lib/libc/stdlib/tfind.c",
568 "upstream-openbsd/lib/libc/stdlib/tsearch.c",
Elliott Hughesfbac97a2019-02-04 16:46:24 -0800569 "upstream-openbsd/lib/libc/string/memccpy.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700570 "upstream-openbsd/lib/libc/string/strcasecmp.c",
Elliott Hughesfbac97a2019-02-04 16:46:24 -0800571 "upstream-openbsd/lib/libc/string/strcasestr.c",
572 "upstream-openbsd/lib/libc/string/strcoll.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700573 "upstream-openbsd/lib/libc/string/strcspn.c",
574 "upstream-openbsd/lib/libc/string/strdup.c",
575 "upstream-openbsd/lib/libc/string/strndup.c",
576 "upstream-openbsd/lib/libc/string/strpbrk.c",
577 "upstream-openbsd/lib/libc/string/strsep.c",
578 "upstream-openbsd/lib/libc/string/strspn.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700579 "upstream-openbsd/lib/libc/string/strtok.c",
Elliott Hughesfbac97a2019-02-04 16:46:24 -0800580 "upstream-openbsd/lib/libc/string/strxfrm.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700581 "upstream-openbsd/lib/libc/string/wcslcpy.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700582 "upstream-openbsd/lib/libc/string/wcswidth.c",
Colin Cross69bcb8b2021-09-08 13:24:16 -0700583
584 // This file is originally from OpenBSD, and benefits from
585 // being compiled with openbsd-compat.h.
586 "bionic/fts.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700587 ],
588
Colin Cross50c21ab2015-10-31 23:03:05 -0700589 cflags: [
Dan Willemsen208ae172015-09-16 16:33:27 -0700590 "-Wno-sign-compare",
Dan Willemsen208ae172015-09-16 16:33:27 -0700591 "-Wno-unused-parameter",
592 "-include openbsd-compat.h",
593 ],
594
Dan Willemsen208ae172015-09-16 16:33:27 -0700595 local_include_dirs: [
596 "private",
597 "stdio",
598 "upstream-openbsd/android/include",
599 "upstream-openbsd/lib/libc/include",
600 "upstream-openbsd/lib/libc/gdtoa/",
601 ],
Dan Willemsen208ae172015-09-16 16:33:27 -0700602}
603
Elliott Hughes8e547bd2016-08-16 15:57:47 -0700604cc_library_static {
605 name: "libc_openbsd_large_stack",
606 defaults: ["libc_defaults"],
607 srcs: [
Elliott Hughes2f9c8ce2017-11-01 13:54:47 -0700608 "stdio/vfprintf.cpp",
609 "stdio/vfwprintf.cpp",
Elliott Hughes5633caa2020-08-06 14:32:43 -0700610 "upstream-openbsd/lib/libc/string/memmem.c",
Elliott Hughesc6b38ae2019-11-22 11:15:42 -0800611 "upstream-openbsd/lib/libc/string/strstr.c",
Elliott Hughes8e547bd2016-08-16 15:57:47 -0700612 ],
613 cflags: [
614 "-include openbsd-compat.h",
615 "-Wno-sign-compare",
616 "-Wframe-larger-than=5000",
617 ],
618
619 local_include_dirs: [
Elliott Hughese1dc4f62021-01-11 11:51:29 -0800620 "private",
Elliott Hughes3a589c22017-10-30 11:43:58 -0700621 "upstream-openbsd/android/include/",
622 "upstream-openbsd/lib/libc/include/",
Elliott Hughes8e547bd2016-08-16 15:57:47 -0700623 "upstream-openbsd/lib/libc/gdtoa/",
Elliott Hughes3a589c22017-10-30 11:43:58 -0700624 "upstream-openbsd/lib/libc/stdio/",
Elliott Hughes8e547bd2016-08-16 15:57:47 -0700625 ],
626}
627
Dan Willemsen208ae172015-09-16 16:33:27 -0700628// ========================================================
629// libc_openbsd.a - upstream OpenBSD C library code
630// ========================================================
631//
632// These files are built with the openbsd-compat.h header file
633// automatically included.
634cc_library_static {
Colin Cross50c21ab2015-10-31 23:03:05 -0700635 defaults: ["libc_defaults"],
Dan Willemsen208ae172015-09-16 16:33:27 -0700636 srcs: [
Elliott Hughes211c4d32018-02-02 15:10:32 -0800637 // These two depend on getentropy, which isn't in libc_ndk.a.
Dan Willemsen208ae172015-09-16 16:33:27 -0700638 "upstream-openbsd/lib/libc/crypt/arc4random.c",
639 "upstream-openbsd/lib/libc/crypt/arc4random_uniform.c",
640
641 // May be overriden by per-arch optimized versions
642 "upstream-openbsd/lib/libc/string/memchr.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700643 "upstream-openbsd/lib/libc/string/memrchr.c",
644 "upstream-openbsd/lib/libc/string/stpcpy.c",
645 "upstream-openbsd/lib/libc/string/stpncpy.c",
646 "upstream-openbsd/lib/libc/string/strcat.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700647 "upstream-openbsd/lib/libc/string/strcpy.c",
648 "upstream-openbsd/lib/libc/string/strlcat.c",
649 "upstream-openbsd/lib/libc/string/strlcpy.c",
650 "upstream-openbsd/lib/libc/string/strncat.c",
651 "upstream-openbsd/lib/libc/string/strncmp.c",
652 "upstream-openbsd/lib/libc/string/strncpy.c",
653 ],
Dan Willemsen208ae172015-09-16 16:33:27 -0700654
655 arch: {
656 arm: {
657 exclude_srcs: [
Dan Willemsen208ae172015-09-16 16:33:27 -0700658 "upstream-openbsd/lib/libc/string/strcpy.c",
Haibo Huangea9957a2018-11-19 11:00:32 -0800659 "upstream-openbsd/lib/libc/string/stpcpy.c",
660 "upstream-openbsd/lib/libc/string/strcat.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700661 ],
662 },
Dan Willemsen208ae172015-09-16 16:33:27 -0700663 arm64: {
664 exclude_srcs: [
665 "upstream-openbsd/lib/libc/string/memchr.c",
Peter Collingbourne2361d4e2020-06-03 16:55:37 -0700666 "upstream-openbsd/lib/libc/string/memrchr.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700667 "upstream-openbsd/lib/libc/string/stpcpy.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700668 "upstream-openbsd/lib/libc/string/strcpy.c",
669 "upstream-openbsd/lib/libc/string/strncmp.c",
670 ],
671 },
Dan Willemsen208ae172015-09-16 16:33:27 -0700672 x86: {
Colin Cross6ab8f892015-11-23 14:12:15 -0800673 exclude_srcs: [
674 "upstream-openbsd/lib/libc/string/memchr.c",
Colin Cross6ab8f892015-11-23 14:12:15 -0800675 "upstream-openbsd/lib/libc/string/memrchr.c",
676 "upstream-openbsd/lib/libc/string/stpcpy.c",
677 "upstream-openbsd/lib/libc/string/stpncpy.c",
678 "upstream-openbsd/lib/libc/string/strcat.c",
679 "upstream-openbsd/lib/libc/string/strcpy.c",
680 "upstream-openbsd/lib/libc/string/strncmp.c",
681 "upstream-openbsd/lib/libc/string/strncpy.c",
Haibo Huangb9244ff2018-08-11 10:12:13 -0700682 "upstream-openbsd/lib/libc/string/strlcat.c",
683 "upstream-openbsd/lib/libc/string/strlcpy.c",
684 "upstream-openbsd/lib/libc/string/strncat.c",
Colin Cross6ab8f892015-11-23 14:12:15 -0800685 ],
Dan Willemsen208ae172015-09-16 16:33:27 -0700686 },
687
688 x86_64: {
Colin Cross6ab8f892015-11-23 14:12:15 -0800689 exclude_srcs: [
Colin Cross6ab8f892015-11-23 14:12:15 -0800690 "upstream-openbsd/lib/libc/string/stpcpy.c",
691 "upstream-openbsd/lib/libc/string/stpncpy.c",
692 "upstream-openbsd/lib/libc/string/strcat.c",
693 "upstream-openbsd/lib/libc/string/strcpy.c",
Colin Cross6ab8f892015-11-23 14:12:15 -0800694 "upstream-openbsd/lib/libc/string/strncat.c",
695 "upstream-openbsd/lib/libc/string/strncmp.c",
696 "upstream-openbsd/lib/libc/string/strncpy.c",
697 ],
Dan Willemsen208ae172015-09-16 16:33:27 -0700698 },
699 },
700
Colin Cross50c21ab2015-10-31 23:03:05 -0700701 cflags: [
Dan Willemsen208ae172015-09-16 16:33:27 -0700702 "-Wno-sign-compare",
Dan Willemsen208ae172015-09-16 16:33:27 -0700703 "-Wno-unused-parameter",
704 "-include openbsd-compat.h",
705 ],
706
Dan Willemsen208ae172015-09-16 16:33:27 -0700707 local_include_dirs: [
708 "private",
Dan Willemsen208ae172015-09-16 16:33:27 -0700709 "upstream-openbsd/android/include",
Dan Willemsen208ae172015-09-16 16:33:27 -0700710 ],
711
712 name: "libc_openbsd",
Dan Willemsen208ae172015-09-16 16:33:27 -0700713}
714
715// ========================================================
716// libc_gdtoa.a - upstream OpenBSD C library gdtoa code
717// ========================================================
718//
719// These files are built with the openbsd-compat.h header file
720// automatically included.
721
722cc_library_static {
Colin Cross50c21ab2015-10-31 23:03:05 -0700723 defaults: ["libc_defaults"],
Dan Willemsen208ae172015-09-16 16:33:27 -0700724 srcs: [
725 "upstream-openbsd/android/gdtoa_support.cpp",
726 "upstream-openbsd/lib/libc/gdtoa/dmisc.c",
727 "upstream-openbsd/lib/libc/gdtoa/dtoa.c",
728 "upstream-openbsd/lib/libc/gdtoa/gdtoa.c",
729 "upstream-openbsd/lib/libc/gdtoa/gethex.c",
730 "upstream-openbsd/lib/libc/gdtoa/gmisc.c",
731 "upstream-openbsd/lib/libc/gdtoa/hd_init.c",
732 "upstream-openbsd/lib/libc/gdtoa/hdtoa.c",
733 "upstream-openbsd/lib/libc/gdtoa/hexnan.c",
734 "upstream-openbsd/lib/libc/gdtoa/ldtoa.c",
735 "upstream-openbsd/lib/libc/gdtoa/misc.c",
736 "upstream-openbsd/lib/libc/gdtoa/smisc.c",
737 "upstream-openbsd/lib/libc/gdtoa/strtod.c",
738 "upstream-openbsd/lib/libc/gdtoa/strtodg.c",
739 "upstream-openbsd/lib/libc/gdtoa/strtof.c",
740 "upstream-openbsd/lib/libc/gdtoa/strtord.c",
741 "upstream-openbsd/lib/libc/gdtoa/sum.c",
742 "upstream-openbsd/lib/libc/gdtoa/ulp.c",
743 ],
744 multilib: {
745 lib64: {
Colin Cross6ab8f892015-11-23 14:12:15 -0800746 srcs: ["upstream-openbsd/lib/libc/gdtoa/strtorQ.c"],
Dan Willemsen208ae172015-09-16 16:33:27 -0700747 },
748 },
749
Colin Cross50c21ab2015-10-31 23:03:05 -0700750 cflags: [
Dan Willemsen208ae172015-09-16 16:33:27 -0700751 "-Wno-sign-compare",
Dan Willemsen208ae172015-09-16 16:33:27 -0700752 "-include openbsd-compat.h",
753 ],
754
Dan Willemsen208ae172015-09-16 16:33:27 -0700755 local_include_dirs: [
756 "private",
757 "upstream-openbsd/android/include",
758 "upstream-openbsd/lib/libc/include",
759 ],
760
761 name: "libc_gdtoa",
Dan Willemsen208ae172015-09-16 16:33:27 -0700762}
763
764// ========================================================
George Burgess IV6cb06872017-07-21 13:28:42 -0700765// libc_fortify.a - container for our FORITFY
766// implementation details
767// ========================================================
768cc_library_static {
769 defaults: ["libc_defaults"],
George Burgess IVd34b0a92017-07-25 11:43:39 -0700770 srcs: ["bionic/fortify.cpp"],
George Burgess IV6cb06872017-07-21 13:28:42 -0700771
772 name: "libc_fortify",
773
774 // Disable FORTIFY for the compilation of these, so we don't end up having
775 // FORTIFY silently call itself.
Elliott Hughesd50a1de2018-02-05 17:30:57 -0800776 cflags: [
777 "-U_FORTIFY_SOURCE",
778 "-D__BIONIC_DECLARE_FORTIFY_HELPERS",
779 ],
George Burgess IV6cb06872017-07-21 13:28:42 -0700780
781 arch: {
782 arm: {
Haibo Huangf1c8d1a2018-11-27 15:38:47 -0800783 cflags: [
784 "-DNO___MEMCPY_CHK",
785 "-DRENAME___STRCAT_CHK",
786 "-DRENAME___STRCPY_CHK",
787 ],
George Burgess IV6cb06872017-07-21 13:28:42 -0700788 srcs: [
789 "arch-arm/generic/bionic/__memcpy_chk.S",
Haibo Huangf1c8d1a2018-11-27 15:38:47 -0800790
791 "arch-arm/cortex-a15/bionic/__strcat_chk.S",
792 "arch-arm/cortex-a15/bionic/__strcpy_chk.S",
793
794 "arch-arm/cortex-a7/bionic/__strcat_chk.S",
795 "arch-arm/cortex-a7/bionic/__strcpy_chk.S",
796
797 "arch-arm/cortex-a9/bionic/__strcat_chk.S",
798 "arch-arm/cortex-a9/bionic/__strcpy_chk.S",
799
800 "arch-arm/krait/bionic/__strcat_chk.S",
801 "arch-arm/krait/bionic/__strcpy_chk.S",
802
803 "arch-arm/cortex-a53/bionic/__strcat_chk.S",
804 "arch-arm/cortex-a53/bionic/__strcpy_chk.S",
805
Haibo Huang01bfd892018-12-03 15:05:16 -0800806 "arch-arm/cortex-a55/bionic/__strcat_chk.S",
807 "arch-arm/cortex-a55/bionic/__strcpy_chk.S",
George Burgess IV6cb06872017-07-21 13:28:42 -0700808 ],
George Burgess IV6cb06872017-07-21 13:28:42 -0700809 },
810 arm64: {
George Burgess IVd34b0a92017-07-25 11:43:39 -0700811 cflags: ["-DNO___MEMCPY_CHK"],
George Burgess IV6cb06872017-07-21 13:28:42 -0700812 srcs: [
813 "arch-arm64/generic/bionic/__memcpy_chk.S",
814 ],
George Burgess IV6cb06872017-07-21 13:28:42 -0700815 },
816 },
817}
818
819// ========================================================
Dan Willemsen208ae172015-09-16 16:33:27 -0700820// libc_bionic.a - home-grown C library code
821// ========================================================
822
823cc_library_static {
Colin Cross50c21ab2015-10-31 23:03:05 -0700824 defaults: ["libc_defaults"],
Dan Willemsen208ae172015-09-16 16:33:27 -0700825 srcs: [
Elliott Hughes211c4d32018-02-02 15:10:32 -0800826 // These require getauxval, which isn't available on older platforms.
Dan Willemsen208ae172015-09-16 16:33:27 -0700827 "bionic/sysconf.cpp",
828 "bionic/vdso.cpp",
Dan Willemsen35e91a12015-09-17 15:28:45 -0700829 "bionic/setjmp_cookie.cpp",
Dan Willemsen208ae172015-09-16 16:33:27 -0700830
Josh Gao10ec9282017-04-03 15:13:29 -0700831 // The following must not be statically linked into libc_ndk.a, because
832 // debuggerd will look for the abort message in libc.so's copy.
833 "bionic/android_set_abort_message.cpp",
834
Dan Willemsen208ae172015-09-16 16:33:27 -0700835 "bionic/strchr.cpp",
Peter Collingbourne337a5b32020-02-21 12:11:02 -0800836 "bionic/strchrnul.cpp",
Dan Willemsen208ae172015-09-16 16:33:27 -0700837 "bionic/strnlen.c",
838 "bionic/strrchr.cpp",
839 ],
Dan Willemsen208ae172015-09-16 16:33:27 -0700840
841 arch: {
Dan Willemsen208ae172015-09-16 16:33:27 -0700842 arm: {
Elliott Hughes1b61d782019-06-04 10:38:34 -0700843 asflags: libc_common_flags + ["-mno-restrict-it"],
Dan Willemsen208ae172015-09-16 16:33:27 -0700844 srcs: [
Dan Willemsen3e621712016-02-03 21:48:08 -0800845 "arch-arm/generic/bionic/memcmp.S",
Elliott Hughesda46cae2018-05-24 14:40:32 -0700846 "arch-arm/generic/bionic/memmove.S",
Dan Willemsen3e621712016-02-03 21:48:08 -0800847 "arch-arm/generic/bionic/memset.S",
Haibo Huangea9957a2018-11-19 11:00:32 -0800848 "arch-arm/generic/bionic/stpcpy.c",
849 "arch-arm/generic/bionic/strcat.c",
Dan Willemsen3e621712016-02-03 21:48:08 -0800850 "arch-arm/generic/bionic/strcmp.S",
851 "arch-arm/generic/bionic/strcpy.S",
852 "arch-arm/generic/bionic/strlen.c",
853
Ryan Prichard45024fe2018-12-30 21:10:26 -0800854 "arch-arm/bionic/__aeabi_read_tp.S",
Dan Willemsen208ae172015-09-16 16:33:27 -0700855 "arch-arm/bionic/__bionic_clone.S",
Yi Kongb410d0e2019-04-22 16:00:46 -0700856 "arch-arm/bionic/__restore.S",
Dan Willemsen208ae172015-09-16 16:33:27 -0700857 "arch-arm/bionic/_exit_with_stack_teardown.S",
Yi Kongb410d0e2019-04-22 16:00:46 -0700858 "arch-arm/bionic/atomics_arm.c",
859 "arch-arm/bionic/bpabi.c",
Yi Kong165b1cf2019-02-13 14:10:10 -0800860 "arch-arm/bionic/libcrt_compat.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700861 "arch-arm/bionic/popcount_tab.c",
Dan Willemsen208ae172015-09-16 16:33:27 -0700862 "arch-arm/bionic/setjmp.S",
863 "arch-arm/bionic/syscall.S",
864 "arch-arm/bionic/vfork.S",
Haibo Huangea9957a2018-11-19 11:00:32 -0800865
866 "arch-arm/cortex-a15/bionic/memcpy.S",
867 "arch-arm/cortex-a15/bionic/memmove.S",
868 "arch-arm/cortex-a15/bionic/memset.S",
869 "arch-arm/cortex-a15/bionic/stpcpy.S",
870 "arch-arm/cortex-a15/bionic/strcat.S",
871 "arch-arm/cortex-a15/bionic/strcmp.S",
872 "arch-arm/cortex-a15/bionic/strcpy.S",
873 "arch-arm/cortex-a15/bionic/strlen.S",
874
875 "arch-arm/cortex-a7/bionic/memcpy.S",
Haibo Huangea9957a2018-11-19 11:00:32 -0800876 "arch-arm/cortex-a7/bionic/memset.S",
877
878 "arch-arm/cortex-a9/bionic/memcpy.S",
Haibo Huangea9957a2018-11-19 11:00:32 -0800879 "arch-arm/cortex-a9/bionic/memset.S",
880 "arch-arm/cortex-a9/bionic/stpcpy.S",
881 "arch-arm/cortex-a9/bionic/strcat.S",
Haibo Huangea9957a2018-11-19 11:00:32 -0800882 "arch-arm/cortex-a9/bionic/strcpy.S",
883 "arch-arm/cortex-a9/bionic/strlen.S",
884
885 "arch-arm/krait/bionic/memcpy.S",
Haibo Huangea9957a2018-11-19 11:00:32 -0800886 "arch-arm/krait/bionic/memset.S",
Haibo Huangea9957a2018-11-19 11:00:32 -0800887
888 "arch-arm/cortex-a53/bionic/memcpy.S",
Haibo Huangea9957a2018-11-19 11:00:32 -0800889
Haibo Huang01bfd892018-12-03 15:05:16 -0800890 "arch-arm/cortex-a55/bionic/memcpy.S",
Haibo Huangea9957a2018-11-19 11:00:32 -0800891
892 "arch-arm/kryo/bionic/memcpy.S",
Dan Willemsen208ae172015-09-16 16:33:27 -0700893 ],
Dan Willemsen208ae172015-09-16 16:33:27 -0700894 },
Dan Willemsen208ae172015-09-16 16:33:27 -0700895 arm64: {
896 srcs: [
Dan Willemsen208ae172015-09-16 16:33:27 -0700897 "arch-arm64/generic/bionic/memcpy.S",
898 "arch-arm64/generic/bionic/memmove.S",
899 "arch-arm64/generic/bionic/memset.S",
Dan Willemsen208ae172015-09-16 16:33:27 -0700900 "arch-arm64/generic/bionic/wmemmove.S",
Dan Willemsen3e621712016-02-03 21:48:08 -0800901
902 "arch-arm64/bionic/__bionic_clone.S",
903 "arch-arm64/bionic/_exit_with_stack_teardown.S",
904 "arch-arm64/bionic/setjmp.S",
905 "arch-arm64/bionic/syscall.S",
906 "arch-arm64/bionic/vfork.S",
Dan Willemsen208ae172015-09-16 16:33:27 -0700907 ],
908 exclude_srcs: [
909 "bionic/__memcpy_chk.cpp",
910 "bionic/strchr.cpp",
Peter Collingbourne337a5b32020-02-21 12:11:02 -0800911 "bionic/strchrnul.cpp",
Dan Willemsen208ae172015-09-16 16:33:27 -0700912 "bionic/strnlen.c",
Peter Collingbourne337a5b32020-02-21 12:11:02 -0800913 "bionic/strrchr.cpp",
Dan Willemsen208ae172015-09-16 16:33:27 -0700914 ],
Dan Willemsen208ae172015-09-16 16:33:27 -0700915 },
916
Dan Willemsen208ae172015-09-16 16:33:27 -0700917 x86: {
918 srcs: [
Dan Willemsen208ae172015-09-16 16:33:27 -0700919 "arch-x86/generic/string/memcmp.S",
920 "arch-x86/generic/string/strcmp.S",
921 "arch-x86/generic/string/strncmp.S",
922 "arch-x86/generic/string/strcat.S",
Haibo Huangb9244ff2018-08-11 10:12:13 -0700923
924 "arch-x86/generic/string/strlcat.c",
925 "arch-x86/generic/string/strlcpy.c",
926 "arch-x86/generic/string/strncat.c",
927 "arch-x86/generic/string/wcscat.c",
928 "arch-x86/generic/string/wcscpy.c",
929 "arch-x86/generic/string/wmemcmp.c",
Shalini Salomi Bodapati4ed2f472019-06-13 09:54:08 +0530930 "arch-x86/generic/string/wmemset.c",
Haibo Huangb9244ff2018-08-11 10:12:13 -0700931
Dan Willemsen208ae172015-09-16 16:33:27 -0700932 "arch-x86/atom/string/sse2-memchr-atom.S",
933 "arch-x86/atom/string/sse2-memrchr-atom.S",
934 "arch-x86/atom/string/sse2-strchr-atom.S",
935 "arch-x86/atom/string/sse2-strnlen-atom.S",
936 "arch-x86/atom/string/sse2-strrchr-atom.S",
937 "arch-x86/atom/string/sse2-wcschr-atom.S",
938 "arch-x86/atom/string/sse2-wcsrchr-atom.S",
939 "arch-x86/atom/string/sse2-wcslen-atom.S",
940 "arch-x86/atom/string/sse2-wcscmp-atom.S",
Dan Willemsen208ae172015-09-16 16:33:27 -0700941 "arch-x86/silvermont/string/sse2-memmove-slm.S",
942 "arch-x86/silvermont/string/sse2-memset-slm.S",
943 "arch-x86/silvermont/string/sse2-stpcpy-slm.S",
944 "arch-x86/silvermont/string/sse2-stpncpy-slm.S",
945 "arch-x86/silvermont/string/sse2-strcpy-slm.S",
946 "arch-x86/silvermont/string/sse2-strlen-slm.S",
947 "arch-x86/silvermont/string/sse2-strncpy-slm.S",
Dan Willemsen3e621712016-02-03 21:48:08 -0800948
949 "arch-x86/bionic/__bionic_clone.S",
950 "arch-x86/bionic/_exit_with_stack_teardown.S",
Yi Kong165b1cf2019-02-13 14:10:10 -0800951 "arch-x86/bionic/libcrt_compat.c",
Dan Willemsen3e621712016-02-03 21:48:08 -0800952 "arch-x86/bionic/__restore.S",
953 "arch-x86/bionic/setjmp.S",
954 "arch-x86/bionic/syscall.S",
955 "arch-x86/bionic/vfork.S",
Ryan Pricharda992a062020-04-18 02:59:24 -0700956 "arch-x86/bionic/__x86.get_pc_thunk.S",
Haibo Huangb9244ff2018-08-11 10:12:13 -0700957
958 // ssse3 functions
959 "arch-x86/atom/string/ssse3-strcat-atom.S",
960 "arch-x86/atom/string/ssse3-strcmp-atom.S",
961 "arch-x86/atom/string/ssse3-strlcat-atom.S",
962 "arch-x86/atom/string/ssse3-strlcpy-atom.S",
963 "arch-x86/atom/string/ssse3-strncat-atom.S",
964 "arch-x86/atom/string/ssse3-strncmp-atom.S",
965 "arch-x86/atom/string/ssse3-wcscat-atom.S",
966 "arch-x86/atom/string/ssse3-wcscpy-atom.S",
967
968 // sse4 functions
969 "arch-x86/silvermont/string/sse4-memcmp-slm.S",
970 "arch-x86/silvermont/string/sse4-wmemcmp-slm.S",
971
972 // atom functions
973 "arch-x86/atom/string/sse2-memset-atom.S",
974 "arch-x86/atom/string/sse2-strlen-atom.S",
975 "arch-x86/atom/string/ssse3-memcmp-atom.S",
Haibo Huange1413622018-11-13 14:20:43 -0800976 "arch-x86/atom/string/ssse3-memmove-atom.S",
Haibo Huangb9244ff2018-08-11 10:12:13 -0700977 "arch-x86/atom/string/ssse3-strcpy-atom.S",
978 "arch-x86/atom/string/ssse3-strncpy-atom.S",
979 "arch-x86/atom/string/ssse3-wmemcmp-atom.S",
Shalini Salomi Bodapati4ed2f472019-06-13 09:54:08 +0530980
981 // avx2 functions
982 "arch-x86/kabylake/string/avx2-wmemset-kbl.S",
Dan Willemsen208ae172015-09-16 16:33:27 -0700983 ],
Dan Willemsen268a6732015-10-15 14:49:45 -0700984
985 exclude_srcs: [
986 "bionic/strchr.cpp",
987 "bionic/strnlen.c",
988 "bionic/strrchr.cpp",
989 ],
Dan Willemsen208ae172015-09-16 16:33:27 -0700990 },
Dan Willemsen208ae172015-09-16 16:33:27 -0700991 x86_64: {
Dan Willemsen208ae172015-09-16 16:33:27 -0700992 srcs: [
Dan Willemsen208ae172015-09-16 16:33:27 -0700993 "arch-x86_64/string/sse2-memmove-slm.S",
994 "arch-x86_64/string/sse2-memset-slm.S",
995 "arch-x86_64/string/sse2-stpcpy-slm.S",
996 "arch-x86_64/string/sse2-stpncpy-slm.S",
997 "arch-x86_64/string/sse2-strcat-slm.S",
998 "arch-x86_64/string/sse2-strcpy-slm.S",
Dan Willemsen208ae172015-09-16 16:33:27 -0700999 "arch-x86_64/string/sse2-strlen-slm.S",
1000 "arch-x86_64/string/sse2-strncat-slm.S",
1001 "arch-x86_64/string/sse2-strncpy-slm.S",
1002 "arch-x86_64/string/sse4-memcmp-slm.S",
1003 "arch-x86_64/string/ssse3-strcmp-slm.S",
1004 "arch-x86_64/string/ssse3-strncmp-slm.S",
Shalini Salomi Bodapati4ed2f472019-06-13 09:54:08 +05301005 "arch-x86_64/string/avx2-wmemset-kbl.S",
Dan Willemsen3e621712016-02-03 21:48:08 -08001006
1007 "arch-x86_64/bionic/__bionic_clone.S",
1008 "arch-x86_64/bionic/_exit_with_stack_teardown.S",
1009 "arch-x86_64/bionic/__restore_rt.S",
1010 "arch-x86_64/bionic/setjmp.S",
1011 "arch-x86_64/bionic/syscall.S",
1012 "arch-x86_64/bionic/vfork.S",
Dan Willemsen208ae172015-09-16 16:33:27 -07001013 ],
1014 },
Dan Willemsen268a6732015-10-15 14:49:45 -07001015 },
Dan Willemsen208ae172015-09-16 16:33:27 -07001016
Colin Cross50c21ab2015-10-31 23:03:05 -07001017 cppflags: ["-Wold-style-cast"],
Dan Willemsen268a6732015-10-15 14:49:45 -07001018 include_dirs: ["bionic/libstdc++/include"],
1019 name: "libc_bionic",
Dan Willemsen268a6732015-10-15 14:49:45 -07001020}
1021
Elliott Hughes3f6eee92016-12-13 23:47:25 +00001022genrule {
1023 name: "generated_android_ids",
Colin Cross35bbed82017-01-17 18:16:07 -08001024 out: ["generated_android_ids.h"],
1025 srcs: [":android_filesystem_config_header"],
1026 tool_files: ["fs_config_generator.py"],
1027 cmd: "$(location fs_config_generator.py) aidarray $(in) > $(out)",
Elliott Hughes3f6eee92016-12-13 23:47:25 +00001028}
1029
Dan Willemsen268a6732015-10-15 14:49:45 -07001030// ========================================================
1031// libc_bionic_ndk.a- The portions of libc_bionic that can
1032// be safely used in libc_ndk.a (no troublesome global data
1033// or constructors).
1034// ========================================================
1035cc_library_static {
Colin Cross50c21ab2015-10-31 23:03:05 -07001036 defaults: ["libc_defaults"],
Dan Willemsen268a6732015-10-15 14:49:45 -07001037 srcs: [
Dan Alberte2fd0102017-07-11 14:27:07 -07001038 "bionic/NetdClientDispatch.cpp",
Sandeep Patil9b1ca562017-08-21 12:17:19 -07001039 "bionic/__bionic_get_shell_path.cpp",
Dan Alberte2fd0102017-07-11 14:27:07 -07001040 "bionic/__cmsg_nxthdr.cpp",
1041 "bionic/__errno.cpp",
1042 "bionic/__gnu_basename.cpp",
1043 "bionic/__libc_current_sigrtmax.cpp",
1044 "bionic/__libc_current_sigrtmin.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001045 "bionic/abort.cpp",
1046 "bionic/accept.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001047 "bionic/access.cpp",
1048 "bionic/arpa_inet.cpp",
1049 "bionic/assert.cpp",
1050 "bionic/atof.cpp",
Ryan Prichard083d8502019-01-24 13:47:13 -08001051 "bionic/bionic_allocator.cpp",
Josh Gaoa170d9b2016-11-10 16:08:29 -08001052 "bionic/bionic_arc4random.cpp",
Tom Cherryac49ced2017-08-17 13:18:52 -07001053 "bionic/bionic_futex.cpp",
Colin Cross8ce38af2016-01-19 12:50:20 -08001054 "bionic/bionic_netlink.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001055 "bionic/bionic_time_conversions.cpp",
1056 "bionic/brk.cpp",
1057 "bionic/c16rtomb.cpp",
1058 "bionic/c32rtomb.cpp",
1059 "bionic/chmod.cpp",
1060 "bionic/chown.cpp",
1061 "bionic/clearenv.cpp",
1062 "bionic/clock.cpp",
1063 "bionic/clock_getcpuclockid.cpp",
1064 "bionic/clock_nanosleep.cpp",
1065 "bionic/clone.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001066 "bionic/ctype.cpp",
1067 "bionic/dirent.cpp",
Josh Gao97271922019-11-06 13:15:00 -08001068 "bionic/dup.cpp",
Victor Khimenko0a0743f2017-07-10 21:15:37 +02001069 "bionic/environ.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001070 "bionic/error.cpp",
Josh Gao7de41242020-04-29 17:08:46 -07001071 "bionic/eventfd.cpp",
Elliott Hughese19c6722016-08-26 16:15:57 +00001072 "bionic/exec.cpp",
Christopher Ferris11526e22021-10-14 22:44:47 +00001073 "bionic/execinfo.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001074 "bionic/faccessat.cpp",
1075 "bionic/fchmod.cpp",
1076 "bionic/fchmodat.cpp",
Josh Gao97271922019-11-06 13:15:00 -08001077 "bionic/fcntl.cpp",
Josh Gaof6e5b582018-06-01 15:30:54 -07001078 "bionic/fdsan.cpp",
Josh Gao97271922019-11-06 13:15:00 -08001079 "bionic/fdtrack.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001080 "bionic/ffs.cpp",
1081 "bionic/fgetxattr.cpp",
1082 "bionic/flistxattr.cpp",
1083 "bionic/flockfile.cpp",
1084 "bionic/fpclassify.cpp",
1085 "bionic/fsetxattr.cpp",
1086 "bionic/ftruncate.cpp",
Elliott Hughes13d79ab2016-04-15 17:40:33 -07001087 "bionic/ftw.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001088 "bionic/futimens.cpp",
1089 "bionic/getcwd.cpp",
Dan Willemsen23aae1c2016-03-29 15:21:38 -07001090 "bionic/getdomainname.cpp",
Elliott Hughes211c4d32018-02-02 15:10:32 -08001091 "bionic/getentropy.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001092 "bionic/gethostname.cpp",
Elliott Hughes2d0b28b2018-10-23 11:23:00 -07001093 "bionic/getloadavg.cpp",
Elliott Hughese4510a22016-04-06 08:34:58 -07001094 "bionic/getpagesize.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001095 "bionic/getpgrp.cpp",
1096 "bionic/getpid.cpp",
Elliott Hughes8f0e42f2016-11-29 15:10:29 -08001097 "bionic/getpriority.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001098 "bionic/gettid.cpp",
Elliott Hughesce934e32018-09-06 13:26:08 -07001099 "bionic/get_device_api_level.cpp",
Mark Salyzynb38347a2016-04-05 09:09:46 -07001100 "bionic/grp_pwd.cpp",
Tom Cherry6034ef82018-02-02 16:10:07 -08001101 "bionic/grp_pwd_file.cpp",
Mitch Phillips9cad8422021-01-20 16:03:27 -08001102 "bionic/heap_zero_init.cpp",
Elliott Hughesa6487332017-08-15 23:16:48 -07001103 "bionic/iconv.cpp",
Elliott Hughesc41b5602017-07-27 17:08:08 -07001104 "bionic/icu_wrappers.cpp",
Dan Willemsen9b59acc2016-01-05 14:32:06 -08001105 "bionic/ifaddrs.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001106 "bionic/inotify_init.cpp",
Dan Willemsendc6b0a72015-11-09 14:03:46 -08001107 "bionic/ioctl.cpp",
Elliott Hughes7532b322017-07-11 15:00:17 -07001108 "bionic/killpg.cpp",
Elliott Hughesfc8e6882016-11-18 16:27:29 -08001109 "bionic/langinfo.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001110 "bionic/lchown.cpp",
1111 "bionic/lfs64_support.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001112 "bionic/libc_init_common.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001113 "bionic/libgen.cpp",
1114 "bionic/link.cpp",
1115 "bionic/locale.cpp",
Dan Willemsen3e621712016-02-03 21:48:08 -08001116 "bionic/lockf.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001117 "bionic/lstat.cpp",
Colin Crossee847862016-04-29 14:06:07 -07001118 "bionic/mblen.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001119 "bionic/mbrtoc16.cpp",
1120 "bionic/mbrtoc32.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001121 "bionic/mempcpy.cpp",
1122 "bionic/mkdir.cpp",
1123 "bionic/mkfifo.cpp",
1124 "bionic/mknod.cpp",
1125 "bionic/mntent.cpp",
Dan Willemsendc6b0a72015-11-09 14:03:46 -08001126 "bionic/mremap.cpp",
Colin Cross8ce38af2016-01-19 12:50:20 -08001127 "bionic/net_if.cpp",
Dan Alberte2fd0102017-07-11 14:27:07 -07001128 "bionic/netdb.cpp",
Dan Willemsen3e621712016-02-03 21:48:08 -08001129 "bionic/netinet_in.cpp",
Elliott Hughes6cfb84b2016-04-06 17:14:45 -07001130 "bionic/nl_types.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001131 "bionic/open.cpp",
1132 "bionic/pathconf.cpp",
1133 "bionic/pause.cpp",
Josh Gao3de19152021-02-22 18:09:48 -08001134 "bionic/pidfd.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001135 "bionic/pipe.cpp",
1136 "bionic/poll.cpp",
1137 "bionic/posix_fadvise.cpp",
1138 "bionic/posix_fallocate.cpp",
1139 "bionic/posix_madvise.cpp",
1140 "bionic/posix_timers.cpp",
Elliott Hughescf59e192021-10-13 18:25:21 -07001141 "bionic/preadv_pwritev.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001142 "bionic/ptrace.cpp",
1143 "bionic/pty.cpp",
1144 "bionic/raise.cpp",
1145 "bionic/rand.cpp",
1146 "bionic/readlink.cpp",
Elliott Hughes22fb2672019-11-01 08:07:25 -07001147 "bionic/realpath.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001148 "bionic/reboot.cpp",
1149 "bionic/recv.cpp",
Josh Gao97271922019-11-06 13:15:00 -08001150 "bionic/recvmsg.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001151 "bionic/rename.cpp",
1152 "bionic/rmdir.cpp",
1153 "bionic/scandir.cpp",
1154 "bionic/sched_getaffinity.cpp",
1155 "bionic/sched_getcpu.cpp",
1156 "bionic/semaphore.cpp",
1157 "bionic/send.cpp",
1158 "bionic/setegid.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001159 "bionic/seteuid.cpp",
1160 "bionic/setpgrp.cpp",
1161 "bionic/sigaction.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001162 "bionic/signal.cpp",
Elliott Hughes7ae39122018-02-26 16:49:43 -08001163 "bionic/sigprocmask.cpp",
Elliott Hughesca3f8e42019-10-28 15:59:38 -07001164 "bionic/sleep.cpp",
Josh Gaob107eab2020-04-29 17:17:56 -07001165 "bionic/socketpair.cpp",
Elliott Hughes14e3ff92017-10-06 16:58:36 -07001166 "bionic/spawn.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001167 "bionic/stat.cpp",
Dan Alberte2fd0102017-07-11 14:27:07 -07001168 "bionic/stdlib_l.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001169 "bionic/strerror.cpp",
Dan Alberte2fd0102017-07-11 14:27:07 -07001170 "bionic/string_l.cpp",
1171 "bionic/strings_l.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001172 "bionic/strsignal.cpp",
Elliott Hughes1921dce2017-12-19 10:27:27 -08001173 "bionic/strtol.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001174 "bionic/strtold.cpp",
Elliott Hughesfa386e02017-10-18 13:34:32 -07001175 "bionic/swab.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001176 "bionic/symlink.cpp",
Colin Crossfc8ed2f2016-04-11 14:51:38 -07001177 "bionic/sync_file_range.cpp",
Elliott Hughes5905d6f2018-01-30 15:09:51 -08001178 "bionic/sys_epoll.cpp",
Elliott Hughes7c59f3f2016-08-16 18:14:26 -07001179 "bionic/sys_msg.cpp",
1180 "bionic/sys_sem.cpp",
1181 "bionic/sys_shm.cpp",
Elliott Hughes6dafb4a2018-01-26 17:47:56 -08001182 "bionic/sys_signalfd.cpp",
Elliott Hughes261bd742019-08-29 20:45:14 -07001183 "bionic/sys_statfs.cpp",
1184 "bionic/sys_statvfs.cpp",
Elliott Hughes449eff02016-06-08 19:51:20 -07001185 "bionic/sys_time.cpp",
Dan Alberte2fd0102017-07-11 14:27:07 -07001186 "bionic/sysinfo.cpp",
1187 "bionic/syslog.cpp",
Elliott Hughes71ba5892018-02-07 12:44:45 -08001188 "bionic/system.cpp",
Tom Cherrye275d6d2017-12-11 23:31:33 -08001189 "bionic/system_property_api.cpp",
1190 "bionic/system_property_set.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001191 "bionic/tdestroy.cpp",
1192 "bionic/termios.cpp",
1193 "bionic/thread_private.cpp",
Elliott Hughes42067112019-04-18 14:27:24 -07001194 "bionic/threads.cpp",
Elliott Hughesf98d87b2018-07-17 13:21:05 -07001195 "bionic/timespec_get.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001196 "bionic/tmpfile.cpp",
1197 "bionic/umount.cpp",
1198 "bionic/unlink.cpp",
Elliott Hughesca3f8e42019-10-28 15:59:38 -07001199 "bionic/usleep.cpp",
Elliott Hughes9a1d3972020-08-07 15:55:02 -07001200 "bionic/utmp.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001201 "bionic/wait.cpp",
1202 "bionic/wchar.cpp",
Dan Alberte2fd0102017-07-11 14:27:07 -07001203 "bionic/wchar_l.cpp",
Elliott Hughes7f0849f2016-08-26 16:17:17 -07001204 "bionic/wcstod.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001205 "bionic/wctype.cpp",
Elliott Hughesc41b5602017-07-27 17:08:08 -07001206 "bionic/wcwidth.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001207 "bionic/wmempcpy.cpp",
Josh Gao0e0e3702017-10-12 13:34:42 -07001208
1209 // This contains a weak stub implementation of __find_icu_symbol for wctype.cpp,
1210 // which will be overridden by the actual one in libc.so.
1211 "bionic/icu_static.cpp",
Dan Willemsen268a6732015-10-15 14:49:45 -07001212 ],
Dan Willemsen268a6732015-10-15 14:49:45 -07001213
Dan Willemsen208ae172015-09-16 16:33:27 -07001214 multilib: {
1215 lib32: {
1216 // LP32 cruft
Colin Cross6ab8f892015-11-23 14:12:15 -08001217 srcs: ["bionic/mmap.cpp"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001218 },
1219 },
Jayant Chowdharyab2f79c2017-09-01 16:29:44 -07001220 product_variables: {
Steven Moreland96bbc5c2017-12-13 14:11:26 -08001221 treble_linker_namespaces: {
1222 cflags: ["-DTREBLE_LINKER_NAMESPACES"],
Jayant Chowdharyab2f79c2017-09-01 16:29:44 -07001223 },
1224 },
Bowgo Tsaia9208f32020-07-24 17:29:52 +08001225 whole_static_libs: [
Bowgo Tsai8f14b652021-07-15 10:13:33 +00001226 "libc_bionic_systrace",
Bowgo Tsaia9208f32020-07-24 17:29:52 +08001227 "libsystemproperties",
1228 ],
Colin Cross50c21ab2015-10-31 23:03:05 -07001229 cppflags: ["-Wold-style-cast"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001230 local_include_dirs: ["stdio"],
1231 include_dirs: ["bionic/libstdc++/include"],
1232 name: "libc_bionic_ndk",
Elliott Hughes3f6eee92016-12-13 23:47:25 +00001233 generated_headers: ["generated_android_ids"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001234}
1235
Dan Willemsen208ae172015-09-16 16:33:27 -07001236// ========================================================
Bowgo Tsaia9208f32020-07-24 17:29:52 +08001237// libc_bionic_systrace.a
1238// ========================================================
1239
1240cc_library_static {
1241 name: "libc_bionic_systrace",
1242 defaults: ["libc_defaults"],
1243 srcs: [
1244 "bionic/bionic_systrace.cpp",
1245 ],
1246 apex_available: [
1247 "com.android.runtime",
1248 ],
1249}
1250
1251// ========================================================
Dan Willemsen208ae172015-09-16 16:33:27 -07001252// libc_pthread.a - pthreads parts that previously lived in
1253// libc_bionic.a. Relocated to their own library because
Christopher Ferrise55e5ee2019-10-01 17:54:42 -07001254// they can't be included in libc_ndk.a (as the layout of
Dan Willemsen208ae172015-09-16 16:33:27 -07001255// pthread_t has changed over the years and has ABI
1256// compatibility issues).
1257// ========================================================
1258
1259cc_library_static {
Colin Cross50c21ab2015-10-31 23:03:05 -07001260 defaults: ["libc_defaults"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001261 srcs: [
Ryan Prichard45d13492019-01-03 02:51:30 -08001262 "bionic/bionic_elf_tls.cpp",
Dan Willemsen208ae172015-09-16 16:33:27 -07001263 "bionic/pthread_atfork.cpp",
1264 "bionic/pthread_attr.cpp",
Colin Crossa35d23d2015-11-19 13:32:49 -08001265 "bionic/pthread_barrier.cpp",
Dan Willemsen208ae172015-09-16 16:33:27 -07001266 "bionic/pthread_cond.cpp",
1267 "bionic/pthread_create.cpp",
1268 "bionic/pthread_detach.cpp",
1269 "bionic/pthread_equal.cpp",
1270 "bionic/pthread_exit.cpp",
1271 "bionic/pthread_getcpuclockid.cpp",
1272 "bionic/pthread_getschedparam.cpp",
1273 "bionic/pthread_gettid_np.cpp",
Elliott Hughes7484c212017-02-02 02:41:38 +00001274 "bionic/pthread_internal.cpp",
Dan Willemsen208ae172015-09-16 16:33:27 -07001275 "bionic/pthread_join.cpp",
1276 "bionic/pthread_key.cpp",
1277 "bionic/pthread_kill.cpp",
1278 "bionic/pthread_mutex.cpp",
1279 "bionic/pthread_once.cpp",
1280 "bionic/pthread_rwlock.cpp",
Josh Gao726b63f2018-08-27 16:00:58 -07001281 "bionic/pthread_sigqueue.cpp",
Dan Willemsen208ae172015-09-16 16:33:27 -07001282 "bionic/pthread_self.cpp",
1283 "bionic/pthread_setname_np.cpp",
1284 "bionic/pthread_setschedparam.cpp",
Colin Crossa35d23d2015-11-19 13:32:49 -08001285 "bionic/pthread_spinlock.cpp",
Vy Nguyend5007512020-07-14 17:37:04 -04001286 "bionic/sys_thread_properties.cpp",
Josh Gao0e0e3702017-10-12 13:34:42 -07001287
1288 // The following implementations depend on pthread data or implementation,
1289 // so we can't include them in libc_ndk.a.
1290 "bionic/__cxa_thread_atexit_impl.cpp",
Peter Collingbourne5f45c182020-01-14 17:59:41 -08001291 "bionic/android_unsafe_frame_pointer_chase.cpp",
Ryan Prichardafa983c2020-02-04 15:46:15 -08001292 "bionic/atexit.cpp",
Josh Gao0e0e3702017-10-12 13:34:42 -07001293 "bionic/fork.cpp",
Dan Willemsen208ae172015-09-16 16:33:27 -07001294 ],
Dan Willemsen208ae172015-09-16 16:33:27 -07001295
Colin Cross50c21ab2015-10-31 23:03:05 -07001296 cppflags: ["-Wold-style-cast"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001297 include_dirs: ["bionic/libstdc++/include"],
Peter Collingbourne5f45c182020-01-14 17:59:41 -08001298 header_libs: ["bionic_libc_platform_headers"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001299 name: "libc_pthread",
Dan Willemsen208ae172015-09-16 16:33:27 -07001300}
1301
1302// ========================================================
Dan Willemsen208ae172015-09-16 16:33:27 -07001303// libc_syscalls.a
1304// ========================================================
1305
Elliott Hughes782c4852019-04-16 12:31:00 -07001306genrule {
1307 name: "syscalls-arm.S",
1308 out: ["syscalls-arm.S"],
1309 srcs: ["SYSCALLS.TXT"],
Elliott Hughes291f98a2022-06-30 23:35:11 +00001310 tools: ["gensyscalls"],
1311 cmd: "$(location gensyscalls) arm $(in) > $(out)",
Chris Parsons98b92e02021-02-23 15:27:58 -05001312 bazel_module: {
1313 bp2build_available: true,
Chris Parsons98b92e02021-02-23 15:27:58 -05001314 }
Elliott Hughes782c4852019-04-16 12:31:00 -07001315}
1316
1317genrule {
1318 name: "syscalls-arm64.S",
1319 out: ["syscalls-arm64.S"],
1320 srcs: ["SYSCALLS.TXT"],
Elliott Hughes291f98a2022-06-30 23:35:11 +00001321 tools: ["gensyscalls"],
1322 cmd: "$(location gensyscalls) arm64 $(in) > $(out)",
Chris Parsons98b92e02021-02-23 15:27:58 -05001323 bazel_module: {
1324 bp2build_available: true,
Chris Parsons98b92e02021-02-23 15:27:58 -05001325 },
Elliott Hughes782c4852019-04-16 12:31:00 -07001326}
1327
1328genrule {
1329 name: "syscalls-x86.S",
1330 out: ["syscalls-x86.S"],
1331 srcs: ["SYSCALLS.TXT"],
Elliott Hughes291f98a2022-06-30 23:35:11 +00001332 tools: ["gensyscalls"],
1333 cmd: "$(location gensyscalls) x86 $(in) > $(out)",
Chris Parsons98b92e02021-02-23 15:27:58 -05001334 bazel_module: {
1335 bp2build_available: true,
Chris Parsons98b92e02021-02-23 15:27:58 -05001336 },
Elliott Hughes782c4852019-04-16 12:31:00 -07001337}
1338
1339genrule {
1340 name: "syscalls-x86_64.S",
1341 out: ["syscalls-x86_64.S"],
1342 srcs: ["SYSCALLS.TXT"],
Elliott Hughes291f98a2022-06-30 23:35:11 +00001343 tools: ["gensyscalls"],
1344 cmd: "$(location gensyscalls) x86_64 $(in) > $(out)",
Chris Parsons98b92e02021-02-23 15:27:58 -05001345 bazel_module: {
1346 bp2build_available: true,
Chris Parsons98b92e02021-02-23 15:27:58 -05001347 },
Elliott Hughes782c4852019-04-16 12:31:00 -07001348}
1349
Dan Willemsen208ae172015-09-16 16:33:27 -07001350cc_library_static {
Colin Cross27c43c52016-04-07 13:27:24 -07001351 defaults: ["libc_defaults"],
Josh Gao0e0e3702017-10-12 13:34:42 -07001352 srcs: ["bionic/__set_errno.cpp"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001353 arch: {
1354 arm: {
Elliott Hughes782c4852019-04-16 12:31:00 -07001355 srcs: [":syscalls-arm.S"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001356 },
1357 arm64: {
Elliott Hughes782c4852019-04-16 12:31:00 -07001358 srcs: [":syscalls-arm64.S"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001359 },
1360 x86: {
Elliott Hughes782c4852019-04-16 12:31:00 -07001361 srcs: [":syscalls-x86.S"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001362 },
1363 x86_64: {
Elliott Hughes782c4852019-04-16 12:31:00 -07001364 srcs: [":syscalls-x86_64.S"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001365 },
1366 },
1367 name: "libc_syscalls",
Dan Willemsen208ae172015-09-16 16:33:27 -07001368}
1369
1370// ========================================================
1371// libc_aeabi.a
1372// This is an LP32 ARM-only library that needs to be built with -fno-builtin
1373// to avoid infinite recursion. For the other architectures we just build an
1374// empty library to keep this makefile simple.
1375// ========================================================
1376
1377cc_library_static {
Colin Cross50c21ab2015-10-31 23:03:05 -07001378 defaults: ["libc_defaults"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001379 arch: {
1380 arm: {
1381 srcs: ["arch-arm/bionic/__aeabi.c"],
1382 },
Dan Willemsen208ae172015-09-16 16:33:27 -07001383 },
1384 name: "libc_aeabi",
Colin Cross50c21ab2015-10-31 23:03:05 -07001385 cflags: ["-fno-builtin"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001386}
1387
1388// ========================================================
1389// libc_ndk.a
1390// Compatibility library for the NDK. This library contains
1391// all the parts of libc that are safe to statically link.
1392// We can't safely statically link things that can only run
1393// on a certain version of the OS. Examples include
1394// anything that talks to netd (a large portion of the DNS
1395// code) and anything that is dependent on the layout of a
1396// data structure that has changed across releases (such as
1397// pthread_t).
1398// ========================================================
1399
1400cc_library_static {
1401 name: "libc_ndk",
Christopher Ferrise55e5ee2019-10-01 17:54:42 -07001402 defaults: [
1403 "libc_defaults",
1404 "libc_native_allocator_defaults",
1405 ],
Yifan Hong5a39cee2020-01-21 16:43:56 -08001406 ramdisk_available: false,
Yifan Hongb04490d2020-10-21 18:36:36 -07001407 vendor_ramdisk_available: false,
Christopher Ferrise4cdbc42019-02-08 17:30:58 -08001408 srcs: libc_common_src_files + [
Mitch Phillipsf3968e82020-01-31 19:57:04 -08001409 "bionic/gwp_asan_wrappers.cpp",
Peter Collingbourne1e110fb2020-01-09 10:48:22 -08001410 "bionic/heap_tagging.cpp",
Christopher Ferrise4cdbc42019-02-08 17:30:58 -08001411 "bionic/malloc_common.cpp",
Christopher Ferris1fc5ccf2019-02-15 18:06:15 -08001412 "bionic/malloc_limit.cpp",
Christopher Ferrise4cdbc42019-02-08 17:30:58 -08001413 ],
Dan Willemsen208ae172015-09-16 16:33:27 -07001414 multilib: {
1415 lib32: {
1416 srcs: libc_common_src_files_32,
1417 },
1418 },
1419 arch: {
1420 arm: {
1421 srcs: [
1422 "arch-arm/bionic/exidx_dynamic.c",
1423 "arch-common/bionic/crtbegin_so.c",
1424 "arch-arm/bionic/atexit_legacy.c",
1425 "arch-common/bionic/crtend_so.S",
1426 ],
1427 whole_static_libs: ["libc_aeabi"],
1428 },
Dan Willemsen208ae172015-09-16 16:33:27 -07001429 },
1430
Colin Cross50c21ab2015-10-31 23:03:05 -07001431 cflags: [
Dan Willemsen208ae172015-09-16 16:33:27 -07001432 "-fvisibility=hidden",
1433 "-DLIBC_STATIC",
1434 ],
Dan Willemsen208ae172015-09-16 16:33:27 -07001435
1436 whole_static_libs: [
Mitch Phillipsf3968e82020-01-31 19:57:04 -08001437 "gwp_asan",
Peter Collingbourne337a5b32020-02-21 12:11:02 -08001438 "libarm-optimized-routines-string",
Rupert Shuttleworth78f48a52021-03-16 06:39:19 +00001439 "libasync_safe",
Dan Willemsen208ae172015-09-16 16:33:27 -07001440 "libc_bionic_ndk",
Ryan Prichard249757b2019-11-01 17:18:28 -07001441 "libc_bootstrap",
George Burgess IV6cb06872017-07-21 13:28:42 -07001442 "libc_fortify",
Dan Willemsen208ae172015-09-16 16:33:27 -07001443 "libc_freebsd",
Elliott Hughes8e547bd2016-08-16 15:57:47 -07001444 "libc_freebsd_large_stack",
Dan Willemsen208ae172015-09-16 16:33:27 -07001445 "libc_gdtoa",
Dan Willemsen208ae172015-09-16 16:33:27 -07001446 "libc_netbsd",
Elliott Hughes8e547bd2016-08-16 15:57:47 -07001447 "libc_openbsd_large_stack",
Dan Willemsen208ae172015-09-16 16:33:27 -07001448 "libc_openbsd_ndk",
Dan Willemsen208ae172015-09-16 16:33:27 -07001449 "libc_syscalls",
1450 "libc_tzcode",
1451 "libm",
Elliott Hughes816fab92016-05-27 17:57:46 -07001452 "libstdc++",
Dan Willemsen208ae172015-09-16 16:33:27 -07001453 ],
Dan Willemsen208ae172015-09-16 16:33:27 -07001454}
1455
1456// ========================================================
Josh Gao0e0e3702017-10-12 13:34:42 -07001457// libc_nopthread.a
Dan Willemsen208ae172015-09-16 16:33:27 -07001458// ========================================================
Dan Willemsen208ae172015-09-16 16:33:27 -07001459cc_library_static {
Colin Cross50c21ab2015-10-31 23:03:05 -07001460 defaults: ["libc_defaults"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001461 srcs: libc_common_src_files,
1462 multilib: {
1463 lib32: {
1464 srcs: libc_common_src_files_32,
1465 },
1466 },
Josh Gao0e0e3702017-10-12 13:34:42 -07001467 name: "libc_nopthread",
Dan Willemsen208ae172015-09-16 16:33:27 -07001468
1469 whole_static_libs: [
Peter Collingbourne337a5b32020-02-21 12:11:02 -08001470 "libarm-optimized-routines-string",
Rupert Shuttleworth78f48a52021-03-16 06:39:19 +00001471 "libasync_safe",
Dan Willemsen208ae172015-09-16 16:33:27 -07001472 "libc_bionic",
1473 "libc_bionic_ndk",
Ryan Prichard249757b2019-11-01 17:18:28 -07001474 "libc_bootstrap",
Dan Willemsen208ae172015-09-16 16:33:27 -07001475 "libc_dns",
George Burgess IV6cb06872017-07-21 13:28:42 -07001476 "libc_fortify",
Dan Willemsen208ae172015-09-16 16:33:27 -07001477 "libc_freebsd",
Elliott Hughes8e547bd2016-08-16 15:57:47 -07001478 "libc_freebsd_large_stack",
Dan Willemsen208ae172015-09-16 16:33:27 -07001479 "libc_gdtoa",
Dan Willemsen208ae172015-09-16 16:33:27 -07001480 "libc_netbsd",
1481 "libc_openbsd",
Elliott Hughes8e547bd2016-08-16 15:57:47 -07001482 "libc_openbsd_large_stack",
Dan Willemsen208ae172015-09-16 16:33:27 -07001483 "libc_openbsd_ndk",
Dan Willemsen208ae172015-09-16 16:33:27 -07001484 "libc_syscalls",
Dan Willemsen208ae172015-09-16 16:33:27 -07001485 "libc_tzcode",
Elliott Hughes816fab92016-05-27 17:57:46 -07001486 "libstdc++",
Dan Willemsen208ae172015-09-16 16:33:27 -07001487 ],
1488
1489 arch: {
1490 arm: {
1491 whole_static_libs: ["libc_aeabi"],
1492 },
Dan Willemsen208ae172015-09-16 16:33:27 -07001493 },
Dan Willemsen208ae172015-09-16 16:33:27 -07001494}
1495
1496// ========================================================
Josh Gao0e0e3702017-10-12 13:34:42 -07001497// libc_common.a
1498// ========================================================
1499
1500cc_library_static {
1501 defaults: ["libc_defaults"],
1502 name: "libc_common",
1503
1504 whole_static_libs: [
1505 "libc_nopthread",
1506 "libc_pthread",
1507 ],
1508}
1509
1510// ========================================================
Ryan Prichard249757b2019-11-01 17:18:28 -07001511// libc_static_dispatch.a
Haibo Huangf71edfa2018-11-12 10:06:56 -08001512// ========================================================
1513cc_library_static {
1514 defaults: ["libc_defaults"],
Ryan Prichard249757b2019-11-01 17:18:28 -07001515 name: "libc_static_dispatch",
Haibo Huangf71edfa2018-11-12 10:06:56 -08001516
Haibo Huangb9244ff2018-08-11 10:12:13 -07001517 arch: {
1518 x86: {
1519 srcs: ["arch-x86/static_function_dispatch.S"],
1520 },
Haibo Huangea9957a2018-11-19 11:00:32 -08001521 arm: {
1522 srcs: ["arch-arm/static_function_dispatch.S"],
1523 },
Peter Collingbourne900d07d2019-10-28 13:11:00 -07001524 arm64: {
1525 srcs: ["arch-arm64/static_function_dispatch.S"],
1526 },
Haibo Huangb9244ff2018-08-11 10:12:13 -07001527 },
Haibo Huangf71edfa2018-11-12 10:06:56 -08001528}
1529
1530// ========================================================
Ryan Prichard249757b2019-11-01 17:18:28 -07001531// libc_dynamic_dispatch.a
Haibo Huangf71edfa2018-11-12 10:06:56 -08001532// ========================================================
1533cc_library_static {
1534 defaults: ["libc_defaults"],
Ryan Prichard249757b2019-11-01 17:18:28 -07001535 name: "libc_dynamic_dispatch",
Haibo Huangf71edfa2018-11-12 10:06:56 -08001536
Haibo Huangb9244ff2018-08-11 10:12:13 -07001537 cflags: [
Peter Collingbourne36a56442019-10-31 17:11:54 -07001538 "-ffreestanding",
Haibo Huangb9244ff2018-08-11 10:12:13 -07001539 "-fno-stack-protector",
1540 "-fno-jump-tables",
1541 ],
1542 arch: {
1543 x86: {
1544 srcs: ["arch-x86/dynamic_function_dispatch.cpp"],
1545 },
Haibo Huangea9957a2018-11-19 11:00:32 -08001546 arm: {
Elliott Hughes927fe992019-01-31 22:29:22 +00001547 srcs: ["arch-arm/dynamic_function_dispatch.cpp"],
Haibo Huangea9957a2018-11-19 11:00:32 -08001548 },
Peter Collingbourne900d07d2019-10-28 13:11:00 -07001549 arm64: {
1550 srcs: ["arch-arm64/dynamic_function_dispatch.cpp"],
1551 },
Haibo Huangb9244ff2018-08-11 10:12:13 -07001552 },
Ryan Prichard249757b2019-11-01 17:18:28 -07001553}
1554
1555// ========================================================
1556// libc_common_static.a For static binaries.
1557// ========================================================
1558cc_library_static {
1559 defaults: ["libc_defaults"],
1560 name: "libc_common_static",
Haibo Huangb9244ff2018-08-11 10:12:13 -07001561
Haibo Huangf71edfa2018-11-12 10:06:56 -08001562 whole_static_libs: [
1563 "libc_common",
Ryan Prichard249757b2019-11-01 17:18:28 -07001564 "libc_static_dispatch",
1565 ],
1566}
1567
1568// ========================================================
1569// libc_common_shared.a For shared libraries.
1570// ========================================================
1571cc_library_static {
1572 defaults: ["libc_defaults"],
1573 name: "libc_common_shared",
1574
1575 whole_static_libs: [
1576 "libc_common",
1577 "libc_dynamic_dispatch",
Haibo Huangf71edfa2018-11-12 10:06:56 -08001578 ],
1579}
1580
Ryan Prichard22a6a052019-10-10 23:59:30 -07001581// Versions of dl_iterate_phdr and similar APIs used to lookup unwinding information in a static
1582// executable.
1583cc_library_static {
1584 name: "libc_unwind_static",
1585 defaults: ["libc_defaults"],
1586 cflags: ["-DLIBC_STATIC"],
1587
1588 srcs: ["bionic/dl_iterate_phdr_static.cpp"],
1589 arch: {
1590 // arm32-specific dl_unwind_find_exidx and __gnu_Unwind_Find_exidx APIs
1591 arm: {
1592 srcs: ["arch-arm/bionic/exidx_static.c"],
1593 },
1594 },
1595}
1596
Haibo Huangf71edfa2018-11-12 10:06:56 -08001597// ========================================================
Dan Willemsen208ae172015-09-16 16:33:27 -07001598// libc_nomalloc.a
1599// ========================================================
1600//
Ryan Prichard249757b2019-11-01 17:18:28 -07001601// This is a version of the static C library used by the dynamic linker that exclude malloc. It also
1602// excludes functions selected using ifunc's (e.g. for string.h). Link in either
1603// libc_static_dispatch or libc_dynamic_dispatch to provide those functions.
Dan Willemsen208ae172015-09-16 16:33:27 -07001604
1605cc_library_static {
Dimitry Ivanovfc0d4802016-12-06 11:10:09 -08001606 name: "libc_nomalloc",
Colin Cross50c21ab2015-10-31 23:03:05 -07001607 defaults: ["libc_defaults"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001608
Colin Crossa3f9fca2016-01-11 13:20:55 -08001609 whole_static_libs: [
Ryan Prichard249757b2019-11-01 17:18:28 -07001610 "libc_common",
Colin Crossa3f9fca2016-01-11 13:20:55 -08001611 "libc_init_static",
Ryan Prichard22a6a052019-10-10 23:59:30 -07001612 "libc_unwind_static",
Colin Crossa3f9fca2016-01-11 13:20:55 -08001613 ],
Dan Willemsen208ae172015-09-16 16:33:27 -07001614}
1615
dimitryc0c0ef62018-12-05 16:33:52 +01001616filegroup {
1617 name: "libc_sources_shared",
1618 srcs: [
1619 "arch-common/bionic/crtbegin_so.c",
1620 "arch-common/bionic/crtbrand.S",
Mitch Phillipsf3968e82020-01-31 19:57:04 -08001621 "bionic/gwp_asan_wrappers.cpp",
Peter Collingbourne1e110fb2020-01-09 10:48:22 -08001622 "bionic/heap_tagging.cpp",
dimitryc0c0ef62018-12-05 16:33:52 +01001623 "bionic/icu.cpp",
1624 "bionic/malloc_common.cpp",
Christopher Ferrise4cdbc42019-02-08 17:30:58 -08001625 "bionic/malloc_common_dynamic.cpp",
Ryan Savitski175c8862020-01-02 19:54:57 +00001626 "bionic/android_profiling_dynamic.cpp",
Christopher Ferrise4cdbc42019-02-08 17:30:58 -08001627 "bionic/malloc_heapprofd.cpp",
Christopher Ferris1fc5ccf2019-02-15 18:06:15 -08001628 "bionic/malloc_limit.cpp",
Peter Collingbourne570de332019-12-11 10:00:58 -08001629 "bionic/ndk_cruft.cpp",
1630 "bionic/ndk_cruft_data.cpp",
dimitryc0c0ef62018-12-05 16:33:52 +01001631 "bionic/NetdClient.cpp",
1632 "arch-common/bionic/crtend_so.S",
1633 ],
Jingwen Chend6a3b782021-02-05 10:05:29 -05001634 bazel_module: { bp2build_available: true },
dimitryc0c0ef62018-12-05 16:33:52 +01001635}
1636
1637filegroup {
1638 name: "libc_sources_static",
1639 srcs: [
Mitch Phillipsf3968e82020-01-31 19:57:04 -08001640 "bionic/gwp_asan_wrappers.cpp",
Peter Collingbourne1e110fb2020-01-09 10:48:22 -08001641 "bionic/heap_tagging.cpp",
dimitryc0c0ef62018-12-05 16:33:52 +01001642 "bionic/malloc_common.cpp",
Christopher Ferris1fc5ccf2019-02-15 18:06:15 -08001643 "bionic/malloc_limit.cpp",
dimitryc0c0ef62018-12-05 16:33:52 +01001644 ],
Jingwen Chend6a3b782021-02-05 10:05:29 -05001645 bazel_module: { bp2build_available: true },
dimitryc0c0ef62018-12-05 16:33:52 +01001646}
1647
1648filegroup {
1649 name: "libc_sources_shared_arm",
1650 srcs: [
1651 "arch-arm/bionic/exidx_dynamic.c",
1652 "arch-arm/bionic/atexit_legacy.c",
1653 ],
Jingwen Chend6a3b782021-02-05 10:05:29 -05001654 bazel_module: { bp2build_available: true },
dimitryc0c0ef62018-12-05 16:33:52 +01001655}
1656
Dan Willemsen208ae172015-09-16 16:33:27 -07001657// ========================================================
1658// libc.a + libc.so
1659// ========================================================
1660cc_library {
Christopher Ferrise55e5ee2019-10-01 17:54:42 -07001661 defaults: [
1662 "libc_defaults",
1663 "libc_native_allocator_defaults",
1664 ],
Dan Willemsen208ae172015-09-16 16:33:27 -07001665 name: "libc",
Dan Albert40f15ec2017-10-27 11:21:20 -07001666 static_ndk_lib: true,
Colin Cross50c21ab2015-10-31 23:03:05 -07001667 product_variables: {
Dan Willemsen208ae172015-09-16 16:33:27 -07001668 platform_sdk_version: {
1669 asflags: ["-DPLATFORM_SDK_VERSION=%d"],
1670 },
1671 },
Dan Willemsen208ae172015-09-16 16:33:27 -07001672 static: {
dimitryc0c0ef62018-12-05 16:33:52 +01001673 srcs: [ ":libc_sources_static" ],
Dan Willemsen208ae172015-09-16 16:33:27 -07001674 cflags: ["-DLIBC_STATIC"],
Haibo Huangf71edfa2018-11-12 10:06:56 -08001675 whole_static_libs: [
Mitch Phillipsf3968e82020-01-31 19:57:04 -08001676 "gwp_asan",
Haibo Huangf71edfa2018-11-12 10:06:56 -08001677 "libc_init_static",
1678 "libc_common_static",
Ryan Prichard22a6a052019-10-10 23:59:30 -07001679 "libc_unwind_static",
Haibo Huangf71edfa2018-11-12 10:06:56 -08001680 ],
Dan Willemsen208ae172015-09-16 16:33:27 -07001681 },
1682 shared: {
dimitryc0c0ef62018-12-05 16:33:52 +01001683 srcs: [ ":libc_sources_shared" ],
Haibo Huangf71edfa2018-11-12 10:06:56 -08001684 whole_static_libs: [
Mitch Phillipsf3968e82020-01-31 19:57:04 -08001685 "gwp_asan",
Haibo Huangf71edfa2018-11-12 10:06:56 -08001686 "libc_init_dynamic",
1687 "libc_common_shared",
Ryan Prichardcdf71752020-12-16 03:37:22 -08001688 "libunwind-exported",
Haibo Huangf71edfa2018-11-12 10:06:56 -08001689 ],
Dan Willemsen208ae172015-09-16 16:33:27 -07001690 },
1691
Neil Fullera7db90f2019-04-25 09:28:27 +01001692 required: [
MarkDacekd88d7ea2022-06-28 20:14:58 +00001693 "tzdata_prebuilt",
1694 "tz_version_prebuilt", // Version metadata for tzdata to help debugging.
Neil Fullera7db90f2019-04-25 09:28:27 +01001695 ],
Dan Willemsen208ae172015-09-16 16:33:27 -07001696
Colin Cross4ce94d22016-11-15 13:15:43 -08001697 // Do not pack libc.so relocations; see http://b/20645321 for details.
1698 pack_relocations: false,
1699
dimitry06016f22018-01-05 11:39:28 +01001700 // WARNING: The only libraries libc.so should depend on are libdl.so and ld-android.so!
1701 // If you add other libraries, make sure to add -Wl,--exclude-libs=libgcc.a to the
1702 // LOCAL_LDFLAGS for those libraries. This ensures that symbols that are pulled into
1703 // those new libraries from libgcc.a are not declared external; if that were the case,
1704 // then libc would not pull those symbols from libgcc.a as it should, instead relying
1705 // on the external symbols from the dependent libraries. That would create a "cloaked"
1706 // dependency on libgcc.a in libc though the libraries, which is not what you wanted!
Dan Willemsen208ae172015-09-16 16:33:27 -07001707
dimitry06016f22018-01-05 11:39:28 +01001708 shared_libs: [
1709 "ld-android",
1710 "libdl",
1711 ],
Jiyong Park3ff116a2019-04-02 23:04:52 +09001712 static_libs: [
1713 "libdl_android",
1714 ],
Dan Willemsen208ae172015-09-16 16:33:27 -07001715
1716 nocrt: true,
1717
Dan Willemsen208ae172015-09-16 16:33:27 -07001718 arch: {
1719 arm: {
Elliott Hughesd19b3c52018-09-06 16:04:08 -07001720 // TODO: This is to work around b/24465209. Remove after root cause is fixed.
Chih-Hung Hsiehecbff832018-05-23 18:45:53 -07001721 pack_relocations: false,
Ian Pedowitzb6310c22018-01-18 16:26:19 -08001722 ldflags: ["-Wl,--hash-style=both"],
1723
Elliott Hughesd19b3c52018-09-06 16:04:08 -07001724 version_script: ":libc.arm.map",
Ryan Prichardc22562c2021-01-27 17:27:31 -08001725 no_libcrt: true,
Dan Willemsen9e6f98f2015-11-03 14:30:57 -08001726
Dan Willemsen208ae172015-09-16 16:33:27 -07001727 shared: {
dimitryc0c0ef62018-12-05 16:33:52 +01001728 srcs: [":libc_sources_shared_arm"],
Dan Willemsen0c657082016-05-12 01:43:07 -07001729 // special for arm
1730 cflags: ["-DCRT_LEGACY_WORKAROUND"],
Ryan Prichardc22562c2021-01-27 17:27:31 -08001731 // For backwards-compatibility, some arm32 builtins are exported from libc.so.
Colin Cross335e27b2022-02-10 11:37:28 -08001732 static_libs: ["libclang_rt.builtins-exported"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001733 },
Christopher Ferris0c0f6fb2019-05-17 16:22:56 -07001734
1735 // Arm 32 bit does not produce complete exidx unwind information
1736 // so keep the .debug_frame which is relatively small and does
1737 // include needed unwind information.
1738 // See b/132992102 for details.
1739 strip: {
1740 keep_symbols_and_debug_frame: true,
1741 },
Dan Willemsen208ae172015-09-16 16:33:27 -07001742 },
Dan Willemsen9e6f98f2015-11-03 14:30:57 -08001743 arm64: {
Elliott Hughesd19b3c52018-09-06 16:04:08 -07001744 version_script: ":libc.arm64.map",
Christopher Ferris0c0f6fb2019-05-17 16:22:56 -07001745
1746 // Leave the symbols in the shared library so that stack unwinders can produce
1747 // meaningful name resolution.
1748 strip: {
1749 keep_symbols: true,
1750 },
Dan Willemsen9e6f98f2015-11-03 14:30:57 -08001751 },
Dan Willemsen208ae172015-09-16 16:33:27 -07001752 x86: {
Elliott Hughesd19b3c52018-09-06 16:04:08 -07001753 // TODO: This is to work around b/24465209. Remove after root cause is fixed.
Chih-Hung Hsiehecbff832018-05-23 18:45:53 -07001754 pack_relocations: false,
Ian Pedowitzb6310c22018-01-18 16:26:19 -08001755 ldflags: ["-Wl,--hash-style=both"],
1756
Elliott Hughesd19b3c52018-09-06 16:04:08 -07001757 version_script: ":libc.x86.map",
Ryan Prichardc22562c2021-01-27 17:27:31 -08001758 no_libcrt: true,
1759
1760 shared: {
1761 // For backwards-compatibility, some x86 builtins are exported from libc.so.
Colin Cross335e27b2022-02-10 11:37:28 -08001762 static_libs: ["libclang_rt.builtins-exported"],
Ryan Prichardc22562c2021-01-27 17:27:31 -08001763 },
Christopher Ferris0c0f6fb2019-05-17 16:22:56 -07001764
1765 // Leave the symbols in the shared library so that stack unwinders can produce
1766 // meaningful name resolution.
1767 strip: {
1768 keep_symbols: true,
1769 },
Dan Willemsen208ae172015-09-16 16:33:27 -07001770 },
1771 x86_64: {
Elliott Hughesd19b3c52018-09-06 16:04:08 -07001772 version_script: ":libc.x86_64.map",
Christopher Ferris0c0f6fb2019-05-17 16:22:56 -07001773
1774 // Leave the symbols in the shared library so that stack unwinders can produce
1775 // meaningful name resolution.
1776 strip: {
1777 keep_symbols: true,
1778 },
Dan Willemsen208ae172015-09-16 16:33:27 -07001779 },
1780 },
Jiyong Parkc45fe9f2018-12-13 18:26:48 +09001781
1782 stubs: {
1783 symbol_file: "libc.map.txt",
Jooyung Han26ddc4d2020-02-27 18:33:25 +09001784 versions: [
1785 "29",
Jooyung Handbfa0742020-03-30 13:18:44 +09001786 "R",
Dan Albert48943b22020-07-27 13:28:56 -07001787 "current",
Jooyung Han26ddc4d2020-02-27 18:33:25 +09001788 ],
Jiyong Parkc45fe9f2018-12-13 18:26:48 +09001789 },
Colin Crossa0a4a6c2021-03-02 10:23:04 -08001790 llndk: {
1791 symbol_file: "libc.map.txt",
1792 export_headers_as_system: true,
1793 export_preprocessed_headers: ["include"],
1794 export_llndk_headers: ["libc_llndk_headers"],
1795 },
Jiyong Parke87e0dc2019-10-02 17:09:33 +09001796 apex_available: [
1797 "//apex_available:platform",
1798 "com.android.runtime",
1799 ],
1800
Colin Cross7edd0082021-10-28 13:20:35 -07001801 target: {
1802 native_bridge: {
1803 shared: {
1804 installable: false,
1805 },
1806 },
1807 },
Dan Willemsen208ae172015-09-16 16:33:27 -07001808}
1809
Elliott Hughesd19b3c52018-09-06 16:04:08 -07001810genrule {
1811 name: "libc.arm.map",
1812 out: ["libc.arm.map"],
1813 srcs: ["libc.map.txt"],
Elliott Hughes291f98a2022-06-30 23:35:11 +00001814 tools: ["generate-version-script"],
1815 cmd: "$(location generate-version-script) arm $(in) $(out)",
Jingwen Chend6a3b782021-02-05 10:05:29 -05001816 bazel_module: { bp2build_available: true },
Elliott Hughesd19b3c52018-09-06 16:04:08 -07001817}
1818
1819genrule {
1820 name: "libc.arm64.map",
1821 out: ["libc.arm64.map"],
1822 srcs: ["libc.map.txt"],
Elliott Hughes291f98a2022-06-30 23:35:11 +00001823 tools: ["generate-version-script"],
1824 cmd: "$(location generate-version-script) arm64 $(in) $(out)",
Jingwen Chend6a3b782021-02-05 10:05:29 -05001825 bazel_module: { bp2build_available: true },
Elliott Hughesd19b3c52018-09-06 16:04:08 -07001826}
1827
1828genrule {
1829 name: "libc.x86.map",
1830 out: ["libc.x86.map"],
1831 srcs: ["libc.map.txt"],
Elliott Hughes291f98a2022-06-30 23:35:11 +00001832 tools: ["generate-version-script"],
1833 cmd: "$(location generate-version-script) x86 $(in) $(out)",
Jingwen Chend6a3b782021-02-05 10:05:29 -05001834 bazel_module: { bp2build_available: true },
Elliott Hughesd19b3c52018-09-06 16:04:08 -07001835}
1836
1837genrule {
1838 name: "libc.x86_64.map",
1839 out: ["libc.x86_64.map"],
1840 srcs: ["libc.map.txt"],
Elliott Hughes291f98a2022-06-30 23:35:11 +00001841 tools: ["generate-version-script"],
1842 cmd: "$(location generate-version-script) x86_64 $(in) $(out)",
Jingwen Chend6a3b782021-02-05 10:05:29 -05001843 bazel_module: { bp2build_available: true },
Elliott Hughesd19b3c52018-09-06 16:04:08 -07001844}
1845
Christopher Ferris2b0638e2019-09-11 19:05:29 -07001846// Headers that only other parts of the platform can include.
1847cc_library_headers {
1848 name: "bionic_libc_platform_headers",
Martin Stjernholma2763432020-04-23 16:47:19 +01001849 defaults: ["linux_bionic_supported"],
Christopher Ferris2b0638e2019-09-11 19:05:29 -07001850 visibility: [
Christopher Ferrisc5d3a432019-09-25 17:50:36 -07001851 "//art:__subpackages__",
Josh Gao97271922019-11-06 13:15:00 -08001852 "//bionic:__subpackages__",
Christopher Ferrisc5d3a432019-09-25 17:50:36 -07001853 "//frameworks:__subpackages__",
Roman Kiryanov067f5182020-05-07 14:58:30 -07001854 "//device/generic/goldfish-opengl:__subpackages__",
Mitch Phillips3309b3d2020-03-25 15:05:48 -07001855 "//external/gwp_asan:__subpackages__",
Christopher Ferris2b0638e2019-09-11 19:05:29 -07001856 "//external/perfetto:__subpackages__",
Christopher Ferrisc5d3a432019-09-25 17:50:36 -07001857 "//external/scudo:__subpackages__",
Josh Gao5074e7d2019-12-13 13:55:53 -08001858 "//system/core/debuggerd:__subpackages__",
Steven Moreland0cdf1322020-10-05 21:55:26 +00001859 "//system/core/libcutils:__subpackages__",
Peter Collingbourne6a363f72020-01-13 10:39:33 -08001860 "//system/memory/libmemunreachable:__subpackages__",
Baligh Uddindb0c6de2020-10-15 04:49:00 +00001861 "//system/unwinding/libunwindstack:__subpackages__",
Peter Collingbourne15418002020-05-12 16:02:50 -07001862 "//tools/security/sanitizer-status:__subpackages__",
Christopher Ferris2b0638e2019-09-11 19:05:29 -07001863 ],
Peter Collingbourne6a363f72020-01-13 10:39:33 -08001864 vendor_available: true,
Justin Yun869a0fa2020-11-11 15:16:11 +09001865 product_available: true,
Yifan Hong5a39cee2020-01-21 16:43:56 -08001866 ramdisk_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -07001867 vendor_ramdisk_available: true,
Christopher Ferrisc5d3a432019-09-25 17:50:36 -07001868 recovery_available: true,
1869 native_bridge_supported: true,
Christopher Ferris2b0638e2019-09-11 19:05:29 -07001870 export_include_dirs: [
1871 "platform",
1872 ],
Christopher Ferrise55e5ee2019-10-01 17:54:42 -07001873 system_shared_libs: [],
1874 stl: "none",
Christopher Ferris2b0638e2019-09-11 19:05:29 -07001875 sdk_version: "current",
Jiyong Park4ede1602020-04-28 18:21:08 +09001876
Steven Moreland0cdf1322020-10-05 21:55:26 +00001877 min_sdk_version: "29",
Jiyong Park4ede1602020-04-28 18:21:08 +09001878 apex_available: [
1879 "//apex_available:platform",
Steven Moreland0cdf1322020-10-05 21:55:26 +00001880 "//apex_available:anyapex",
Jiyong Park4ede1602020-04-28 18:21:08 +09001881 ],
Rupert Shuttleworthfd648682021-02-16 03:27:05 +00001882 bazel_module: { bp2build_available: true },
Christopher Ferris2b0638e2019-09-11 19:05:29 -07001883}
1884
Logan Chien17af91b2019-01-15 21:19:56 +08001885cc_library_headers {
Colin Crossa0a4a6c2021-03-02 10:23:04 -08001886 name: "libc_llndk_headers",
Colin Cross5d50dbb2021-06-29 11:35:29 -07001887 visibility: [
1888 "//external/musl",
1889 ],
Colin Crossa0a4a6c2021-03-02 10:23:04 -08001890 llndk: {
1891 llndk_headers: true,
1892 },
Logan Chien17af91b2019-01-15 21:19:56 +08001893 host_supported: true,
1894 vendor_available: true,
Justin Yun869a0fa2020-11-11 15:16:11 +09001895 product_available: true,
Yifan Hong5a39cee2020-01-21 16:43:56 -08001896 ramdisk_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -07001897 vendor_ramdisk_available: true,
Logan Chien17af91b2019-01-15 21:19:56 +08001898 recovery_available: true,
dimitry7f048802019-05-03 15:57:34 +02001899 native_bridge_supported: true,
Jiyong Park922a5c72020-03-07 17:35:02 +09001900 apex_available: [
1901 "//apex_available:platform",
Jiyong Parkad9946c2020-03-30 18:36:07 +09001902 "//apex_available:anyapex",
1903 ],
Jooyung Han15c32a82020-04-16 18:26:45 +09001904 // used by most APEXes indirectly via libunwind_llvm
1905 min_sdk_version: "apex_inherit",
Logan Chien17af91b2019-01-15 21:19:56 +08001906
1907 no_libcrt: true,
Logan Chien17af91b2019-01-15 21:19:56 +08001908 stl: "none",
1909 system_shared_libs: [],
1910
Peter Collingbournef2b1e032019-12-10 17:41:16 -08001911 // The build system generally requires that any dependencies of a target
1912 // with an sdk_version must have a lower sdk_version. By setting sdk_version
1913 // to 1 we let targets with an sdk_version that need to depend on the libc
1914 // headers but cannot depend on libc itself due to circular dependencies
1915 // (such as libunwind_llvm) depend on the headers. Setting sdk_version to 1
1916 // is correct because the headers can support any sdk_version.
1917 sdk_version: "1",
1918
Martin Stjernholm82d84bc2020-04-06 20:32:09 +01001919 export_system_include_dirs: [
Logan Chien17af91b2019-01-15 21:19:56 +08001920 "kernel/uapi",
Martin Stjernholm82d84bc2020-04-06 20:32:09 +01001921 "kernel/android/scsi",
Logan Chien17af91b2019-01-15 21:19:56 +08001922 "kernel/android/uapi",
1923 ],
1924
1925 arch: {
1926 arm: {
Martin Stjernholm82d84bc2020-04-06 20:32:09 +01001927 export_system_include_dirs: ["kernel/uapi/asm-arm"],
Logan Chien17af91b2019-01-15 21:19:56 +08001928 },
1929 arm64: {
Martin Stjernholm82d84bc2020-04-06 20:32:09 +01001930 export_system_include_dirs: ["kernel/uapi/asm-arm64"],
Logan Chien17af91b2019-01-15 21:19:56 +08001931 },
Logan Chien17af91b2019-01-15 21:19:56 +08001932 x86: {
Martin Stjernholm82d84bc2020-04-06 20:32:09 +01001933 export_system_include_dirs: ["kernel/uapi/asm-x86"],
Logan Chien17af91b2019-01-15 21:19:56 +08001934 },
1935 x86_64: {
Martin Stjernholm82d84bc2020-04-06 20:32:09 +01001936 export_system_include_dirs: ["kernel/uapi/asm-x86"],
Logan Chien17af91b2019-01-15 21:19:56 +08001937 },
1938 },
Rupert Shuttleworthfd648682021-02-16 03:27:05 +00001939 bazel_module: { bp2build_available: true },
Logan Chien17af91b2019-01-15 21:19:56 +08001940}
1941
Martin Stjernholm82d84bc2020-04-06 20:32:09 +01001942cc_library_headers {
1943 name: "libc_headers",
1944 host_supported: true,
1945 native_bridge_supported: true,
1946 vendor_available: true,
Justin Yun869a0fa2020-11-11 15:16:11 +09001947 product_available: true,
Martin Stjernholm82d84bc2020-04-06 20:32:09 +01001948 ramdisk_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -07001949 vendor_ramdisk_available: true,
Martin Stjernholm82d84bc2020-04-06 20:32:09 +01001950 recovery_available: true,
1951 sdk_version: "1",
1952
1953 apex_available: [
1954 "//apex_available:platform",
1955 "//apex_available:anyapex",
1956 ],
1957 // used by most APEXes indirectly via libunwind_llvm
1958 min_sdk_version: "apex_inherit",
1959 visibility: [
1960 "//bionic:__subpackages__", // visible to bionic
1961 // ... and only to these places (b/152668052)
1962 "//external/arm-optimized-routines",
1963 "//external/gwp_asan",
1964 "//external/jemalloc_new",
1965 "//external/libunwind_llvm",
1966 "//external/scudo",
1967 "//system/core/property_service/libpropertyinfoparser",
1968 "//system/extras/toolchain-extras",
Martin Stjernholm82d84bc2020-04-06 20:32:09 +01001969 ],
1970
1971 stl: "none",
1972 no_libcrt: true,
1973 system_shared_libs: [],
1974
1975 target: {
1976 android: {
Colin Crossa0a4a6c2021-03-02 10:23:04 -08001977 export_system_include_dirs: ["include"],
1978 header_libs: ["libc_llndk_headers"],
1979 export_header_lib_headers: ["libc_llndk_headers"],
Martin Stjernholm82d84bc2020-04-06 20:32:09 +01001980 },
1981 linux_bionic: {
Colin Crossa0a4a6c2021-03-02 10:23:04 -08001982 export_system_include_dirs: ["include"],
1983 header_libs: ["libc_llndk_headers"],
1984 export_header_lib_headers: ["libc_llndk_headers"],
Martin Stjernholm82d84bc2020-04-06 20:32:09 +01001985 },
Rupert Shuttleworthfd648682021-02-16 03:27:05 +00001986 },
1987 bazel_module: { bp2build_available: true },
Martin Stjernholm82d84bc2020-04-06 20:32:09 +01001988}
1989
Dan Willemsen208ae172015-09-16 16:33:27 -07001990// ========================================================
Elliott Hughesd19b3c52018-09-06 16:04:08 -07001991// libstdc++.so and libstdc++.a.
Dan Willemsen208ae172015-09-16 16:33:27 -07001992// ========================================================
Elliott Hughesd19b3c52018-09-06 16:04:08 -07001993
Dan Willemsen208ae172015-09-16 16:33:27 -07001994cc_library {
Colin Cross50c21ab2015-10-31 23:03:05 -07001995 defaults: ["libc_defaults"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001996 include_dirs: ["bionic/libstdc++/include"],
Dan Willemsen208ae172015-09-16 16:33:27 -07001997 srcs: [
1998 "bionic/__cxa_guard.cpp",
1999 "bionic/__cxa_pure_virtual.cpp",
2000 "bionic/new.cpp",
Dan Willemsen208ae172015-09-16 16:33:27 -07002001 ],
2002 name: "libstdc++",
Dan Albert40f15ec2017-10-27 11:21:20 -07002003 static_ndk_lib: true,
Isaac Chen5e7c90b2017-09-20 14:44:42 +08002004 static_libs: ["libasync_safe"],
Dan Willemsen208ae172015-09-16 16:33:27 -07002005
Dan Willemsen6b3be172018-12-03 13:57:20 -08002006 static: {
2007 system_shared_libs: [],
2008 },
Colin Crossb5bfe0b2021-07-13 16:26:28 -07002009 target: {
2010 bionic: {
2011 shared: {
2012 system_shared_libs: ["libc"],
2013 },
2014 },
Dan Willemsen6b3be172018-12-03 13:57:20 -08002015 },
2016
Ian Pedowitzb6310c22018-01-18 16:26:19 -08002017 //TODO (dimitry): This is to work around b/24465209. Remove after root cause is fixed
Dan Willemsen208ae172015-09-16 16:33:27 -07002018 arch: {
2019 arm: {
Elliott Hughesd19b3c52018-09-06 16:04:08 -07002020 // TODO: This is to work around b/24465209. Remove after root cause is fixed.
Chih-Hung Hsiehecbff832018-05-23 18:45:53 -07002021 pack_relocations: false,
Ian Pedowitzb6310c22018-01-18 16:26:19 -08002022 ldflags: ["-Wl,--hash-style=both"],
Elliott Hughesd19b3c52018-09-06 16:04:08 -07002023 version_script: ":libstdc++.arm.map",
Dimitry Ivanov6cc8d472016-07-28 13:52:17 -07002024 },
2025 arm64: {
Elliott Hughesd19b3c52018-09-06 16:04:08 -07002026 version_script: ":libstdc++.arm64.map",
Dan Willemsen208ae172015-09-16 16:33:27 -07002027 },
2028 x86: {
Chih-Hung Hsiehecbff832018-05-23 18:45:53 -07002029 pack_relocations: false,
Ian Pedowitzb6310c22018-01-18 16:26:19 -08002030 ldflags: ["-Wl,--hash-style=both"],
Elliott Hughesd19b3c52018-09-06 16:04:08 -07002031 version_script: ":libstdc++.x86.map",
Dimitry Ivanov6cc8d472016-07-28 13:52:17 -07002032 },
2033 x86_64: {
Elliott Hughesd19b3c52018-09-06 16:04:08 -07002034 version_script: ":libstdc++.x86_64.map",
Dan Willemsen208ae172015-09-16 16:33:27 -07002035 },
2036 },
2037}
2038
Elliott Hughesd19b3c52018-09-06 16:04:08 -07002039genrule {
2040 name: "libstdc++.arm.map",
2041 out: ["libstdc++.arm.map"],
2042 srcs: ["libstdc++.map.txt"],
Elliott Hughes291f98a2022-06-30 23:35:11 +00002043 tools: ["generate-version-script"],
2044 cmd: "$(location generate-version-script) arm $(in) $(out)",
Elliott Hughesd19b3c52018-09-06 16:04:08 -07002045}
2046
2047genrule {
2048 name: "libstdc++.arm64.map",
2049 out: ["libstdc++.arm64.map"],
2050 srcs: ["libstdc++.map.txt"],
Elliott Hughes291f98a2022-06-30 23:35:11 +00002051 tools: ["generate-version-script"],
2052 cmd: "$(location generate-version-script) arm64 $(in) $(out)",
Elliott Hughesd19b3c52018-09-06 16:04:08 -07002053}
2054
2055genrule {
2056 name: "libstdc++.x86.map",
2057 out: ["libstdc++.x86.map"],
2058 srcs: ["libstdc++.map.txt"],
Elliott Hughes291f98a2022-06-30 23:35:11 +00002059 tools: ["generate-version-script"],
2060 cmd: "$(location generate-version-script) x86 $(in) $(out)",
Elliott Hughesd19b3c52018-09-06 16:04:08 -07002061}
2062
2063genrule {
2064 name: "libstdc++.x86_64.map",
2065 out: ["libstdc++.x86_64.map"],
2066 srcs: ["libstdc++.map.txt"],
Elliott Hughes291f98a2022-06-30 23:35:11 +00002067 tools: ["generate-version-script"],
2068 cmd: "$(location generate-version-script) x86_64 $(in) $(out)",
Elliott Hughesd19b3c52018-09-06 16:04:08 -07002069}
2070
2071// ========================================================
2072// crt object files.
2073// ========================================================
2074
Colin Cross50c21ab2015-10-31 23:03:05 -07002075cc_defaults {
Colin Cross10d92682021-06-22 13:25:46 -07002076 name: "crt_and_memtag_defaults",
Dan Willemsen7ec52b12016-11-28 17:02:25 -08002077 defaults: ["linux_bionic_supported"],
Dan Willemsen230a7a42017-04-07 14:09:05 -07002078 vendor_available: true,
Justin Yun869a0fa2020-11-11 15:16:11 +09002079 product_available: true,
Yifan Hong5a39cee2020-01-21 16:43:56 -08002080 ramdisk_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -07002081 vendor_ramdisk_available: true,
Jiyong Park5603c6e2018-04-27 21:53:11 +09002082 recovery_available: true,
dimitry7f048802019-05-03 15:57:34 +02002083 native_bridge_supported: true,
Jiyong Park922a5c72020-03-07 17:35:02 +09002084 apex_available: [
2085 "//apex_available:platform",
2086 "//apex_available:anyapex",
2087 ],
Dan Albertdc503f62020-07-15 17:22:18 -07002088 // Generate NDK variants of the CRT objects for every supported API level.
2089 min_sdk_version: "16",
2090 stl: "none",
2091 crt: true,
Elliott Hughesd50a1de2018-02-05 17:30:57 -08002092 cflags: [
2093 "-Wno-gcc-compat",
2094 "-Wall",
2095 "-Werror",
2096 ],
Peter Collingbourne7eb851c2019-09-26 12:16:06 -07002097 sanitize: {
2098 never: true,
2099 },
Dan Willemsen208ae172015-09-16 16:33:27 -07002100}
2101
Colin Cross50c21ab2015-10-31 23:03:05 -07002102cc_defaults {
Colin Cross10d92682021-06-22 13:25:46 -07002103 name: "crt_defaults",
2104 defaults: ["crt_and_memtag_defaults"],
Colin Cross02f81372021-07-22 12:02:10 -07002105 system_shared_libs: [],
Colin Cross10d92682021-06-22 13:25:46 -07002106}
2107
2108cc_defaults {
Colin Cross50c21ab2015-10-31 23:03:05 -07002109 name: "crt_so_defaults",
Colin Cross7d7b3682017-11-03 13:38:40 -07002110 defaults: ["crt_defaults"],
Colin Cross50c21ab2015-10-31 23:03:05 -07002111
2112 arch: {
Colin Cross50c21ab2015-10-31 23:03:05 -07002113 x86: {
2114 cflags: ["-fPIC"],
2115 },
2116 x86_64: {
2117 cflags: ["-fPIC"],
2118 },
Dan Willemsen208ae172015-09-16 16:33:27 -07002119 },
Colin Crossab179442018-09-27 11:03:22 -07002120 stl: "none",
Dan Willemsen208ae172015-09-16 16:33:27 -07002121}
2122
Dan Willemsen208ae172015-09-16 16:33:27 -07002123cc_object {
2124 name: "crtbrand",
Dan Willemsena3ed9012017-04-04 15:51:26 -07002125 // crtbrand.c needs <stdint.h> and a #define for the platform SDK version.
Jingwen Chen7e13cf22021-02-23 00:43:01 -05002126 local_include_dirs: [
2127 "include",
2128 "private", // crtbrand.S depends on private/bionic_asm_note.h
2129 ],
Dan Willemsen208ae172015-09-16 16:33:27 -07002130 product_variables: {
2131 platform_sdk_version: {
2132 asflags: ["-DPLATFORM_SDK_VERSION=%d"],
2133 },
2134 },
2135 srcs: ["arch-common/bionic/crtbrand.S"],
Dan Willemsen208ae172015-09-16 16:33:27 -07002136
Colin Cross7d7b3682017-11-03 13:38:40 -07002137 defaults: ["crt_so_defaults"],
Jingwen Chen7e13cf22021-02-23 00:43:01 -05002138
2139 bazel_module: { bp2build_available: true },
Dan Willemsen208ae172015-09-16 16:33:27 -07002140}
2141
Dan Willemsen208ae172015-09-16 16:33:27 -07002142cc_object {
Liz Kammere718dd72021-03-09 15:00:06 -05002143 name: "crtbegin_so",
Dan Willemsen208ae172015-09-16 16:33:27 -07002144 local_include_dirs: ["include"],
2145 srcs: ["arch-common/bionic/crtbegin_so.c"],
Dan Willemsen208ae172015-09-16 16:33:27 -07002146
Colin Cross7d7b3682017-11-03 13:38:40 -07002147 defaults: ["crt_so_defaults"],
Colin Cross77d57bf2016-04-11 14:34:18 -07002148 objs: [
Dan Willemsen208ae172015-09-16 16:33:27 -07002149 "crtbrand",
2150 ],
Jingwen Chen7e13cf22021-02-23 00:43:01 -05002151
2152 bazel_module: { bp2build_available: true },
Dan Willemsen208ae172015-09-16 16:33:27 -07002153}
2154
Dan Willemsen208ae172015-09-16 16:33:27 -07002155cc_object {
2156 name: "crtend_so",
Liz Kammeraab2ad72021-03-15 18:03:24 -04002157 local_include_dirs: [
2158 "include",
2159 "private", // crtend_so.S depends on private/bionic_asm_arm64.h
2160 ],
Dan Willemsen208ae172015-09-16 16:33:27 -07002161 srcs: ["arch-common/bionic/crtend_so.S"],
Dan Willemsen208ae172015-09-16 16:33:27 -07002162
Colin Cross7d7b3682017-11-03 13:38:40 -07002163 defaults: ["crt_so_defaults"],
Jingwen Chen0b1611e2021-02-18 23:22:03 -05002164
2165 bazel_module: { bp2build_available: true },
Dan Willemsen208ae172015-09-16 16:33:27 -07002166}
2167
Dan Willemsen208ae172015-09-16 16:33:27 -07002168cc_object {
Liz Kammere718dd72021-03-09 15:00:06 -05002169 name: "crtbegin_static",
2170
Jingwen Chen0b1611e2021-02-18 23:22:03 -05002171 local_include_dirs: [
2172 "include",
2173 "bionic", // crtbegin.c includes bionic/libc_init_common.h
2174 ],
Liz Kammere718dd72021-03-09 15:00:06 -05002175
Dan Willemsen208ae172015-09-16 16:33:27 -07002176 srcs: ["arch-common/bionic/crtbegin.c"],
Colin Cross77d57bf2016-04-11 14:34:18 -07002177 objs: [
Dan Willemsen208ae172015-09-16 16:33:27 -07002178 "crtbrand",
2179 ],
Colin Cross50c21ab2015-10-31 23:03:05 -07002180 defaults: ["crt_defaults"],
Jiyong Park268a6002021-01-12 23:14:37 +09002181 // When using libc.a, we're using the latest library regardless of target API level.
2182 min_sdk_version: "current",
Jingwen Chen7e13cf22021-02-23 00:43:01 -05002183
2184 bazel_module: { bp2build_available: true },
Dan Willemsen208ae172015-09-16 16:33:27 -07002185}
2186
Dan Willemsen208ae172015-09-16 16:33:27 -07002187cc_object {
Liz Kammere718dd72021-03-09 15:00:06 -05002188 name: "crtbegin_dynamic",
2189
Jingwen Chen0b1611e2021-02-18 23:22:03 -05002190 local_include_dirs: [
2191 "include",
2192 "bionic", // crtbegin.c includes bionic/libc_init_common.h
2193 ],
Dan Willemsen208ae172015-09-16 16:33:27 -07002194 srcs: ["arch-common/bionic/crtbegin.c"],
Colin Cross77d57bf2016-04-11 14:34:18 -07002195 objs: [
Dan Willemsen208ae172015-09-16 16:33:27 -07002196 "crtbrand",
2197 ],
Dan Willemsen7ccc50d2017-09-18 21:28:14 -07002198 target: {
2199 linux_bionic: {
2200 generated_sources: ["host_bionic_linker_asm"],
2201 objs: [
2202 "linker_wrapper",
2203 ],
2204 },
2205 },
Colin Cross50c21ab2015-10-31 23:03:05 -07002206 defaults: ["crt_defaults"],
Jingwen Chen7e13cf22021-02-23 00:43:01 -05002207
2208 bazel_module: { bp2build_available: true },
Dan Willemsen208ae172015-09-16 16:33:27 -07002209}
2210
Dan Willemsen208ae172015-09-16 16:33:27 -07002211cc_object {
2212 // We rename crtend.o to crtend_android.o to avoid a
2213 // name clash between gcc and bionic.
2214 name: "crtend_android",
Liz Kammeraab2ad72021-03-15 18:03:24 -04002215 local_include_dirs: [
2216 "include",
2217 "private", // crtend.S depends on private/bionic_asm_arm64.h
2218 ],
Dan Willemsen208ae172015-09-16 16:33:27 -07002219 srcs: ["arch-common/bionic/crtend.S"],
Dan Willemsen208ae172015-09-16 16:33:27 -07002220
Colin Cross50c21ab2015-10-31 23:03:05 -07002221 defaults: ["crt_defaults"],
Jingwen Chen0b1611e2021-02-18 23:22:03 -05002222
2223 bazel_module: { bp2build_available: true },
Dan Willemsen208ae172015-09-16 16:33:27 -07002224}
Colin Crossbaa48992016-07-13 11:15:21 -07002225
Evgenii Stepanov8564b8d2020-12-15 13:55:32 -08002226cc_library_static {
2227 name: "note_memtag_heap_async",
2228 arch: {
2229 arm64: {
2230 srcs: ["arch-arm64/bionic/note_memtag_heap_async.S"],
2231 }
2232 },
Mitch Phillips22c90752021-03-03 15:39:57 -08002233 sdk_version: "minimum",
Evgenii Stepanov8564b8d2020-12-15 13:55:32 -08002234
Colin Cross10d92682021-06-22 13:25:46 -07002235 defaults: ["crt_and_memtag_defaults"],
Evgenii Stepanov8564b8d2020-12-15 13:55:32 -08002236}
2237
2238cc_library_static {
2239 name: "note_memtag_heap_sync",
2240 arch: {
2241 arm64: {
2242 srcs: ["arch-arm64/bionic/note_memtag_heap_sync.S"],
2243 }
2244 },
Mitch Phillips22c90752021-03-03 15:39:57 -08002245 sdk_version: "minimum",
Evgenii Stepanov8564b8d2020-12-15 13:55:32 -08002246
Colin Cross10d92682021-06-22 13:25:46 -07002247 defaults: ["crt_and_memtag_defaults"],
Evgenii Stepanov8564b8d2020-12-15 13:55:32 -08002248}
2249
Elliott Hughesd19b3c52018-09-06 16:04:08 -07002250// ========================================================
2251// NDK headers.
2252// ========================================================
2253
Dan Albert26e1c412018-05-24 14:56:46 -07002254versioned_ndk_headers {
Dan Albert22805ea2017-03-22 15:28:05 -07002255 name: "common_libc",
2256 from: "include",
2257 to: "",
2258 license: "NOTICE",
2259}
Dan Albert4238a352016-06-28 11:18:05 -07002260
2261ndk_headers {
Dan Albert063e86a2016-11-29 11:09:12 -08002262 name: "libc_uapi",
2263 from: "kernel/uapi",
2264 to: "",
2265 srcs: [
2266 "kernel/uapi/asm-generic/**/*.h",
2267 "kernel/uapi/drm/**/*.h",
2268 "kernel/uapi/linux/**/*.h",
2269 "kernel/uapi/misc/**/*.h",
2270 "kernel/uapi/mtd/**/*.h",
2271 "kernel/uapi/rdma/**/*.h",
2272 "kernel/uapi/scsi/**/*.h",
2273 "kernel/uapi/sound/**/*.h",
2274 "kernel/uapi/video/**/*.h",
2275 "kernel/uapi/xen/**/*.h",
2276 ],
Dan Albert92592652016-10-20 01:42:54 -07002277 license: "NOTICE",
Dan Albert4238a352016-06-28 11:18:05 -07002278}
2279
2280ndk_headers {
Elliott Hughes2fad0d52017-04-27 16:26:55 -07002281 name: "libc_kernel_android_uapi_linux",
Dan Albertbae16ef2016-09-14 17:15:48 -07002282 from: "kernel/android/uapi/linux",
2283 to: "linux",
2284 srcs: ["kernel/android/uapi/linux/**/*.h"],
Dan Albert92592652016-10-20 01:42:54 -07002285 license: "NOTICE",
Dan Albertbae16ef2016-09-14 17:15:48 -07002286}
2287
2288ndk_headers {
Elliott Hughes2fad0d52017-04-27 16:26:55 -07002289 name: "libc_kernel_android_scsi",
Elliott Hughes50599392017-05-25 17:13:32 -07002290 from: "kernel/android/scsi/scsi",
Elliott Hughes2fad0d52017-04-27 16:26:55 -07002291 to: "scsi",
2292 srcs: ["kernel/android/scsi/**/*.h"],
2293 license: "NOTICE",
2294}
2295
2296ndk_headers {
Dan Albert4238a352016-06-28 11:18:05 -07002297 name: "libc_asm_arm",
2298 from: "kernel/uapi/asm-arm",
2299 to: "arm-linux-androideabi",
2300 srcs: ["kernel/uapi/asm-arm/**/*.h"],
Dan Albert92592652016-10-20 01:42:54 -07002301 license: "NOTICE",
Dan Albert4238a352016-06-28 11:18:05 -07002302}
2303
2304ndk_headers {
2305 name: "libc_asm_arm64",
2306 from: "kernel/uapi/asm-arm64",
2307 to: "aarch64-linux-android",
2308 srcs: ["kernel/uapi/asm-arm64/**/*.h"],
Dan Albert92592652016-10-20 01:42:54 -07002309 license: "NOTICE",
Dan Albert4238a352016-06-28 11:18:05 -07002310}
2311
Lazar Trsic790d2f72017-11-27 11:54:11 +01002312ndk_headers {
Dan Albert4238a352016-06-28 11:18:05 -07002313 name: "libc_asm_x86",
2314 from: "kernel/uapi/asm-x86",
2315 to: "i686-linux-android",
2316 srcs: ["kernel/uapi/asm-x86/**/*.h"],
Dan Albert92592652016-10-20 01:42:54 -07002317 license: "NOTICE",
Dan Albert4238a352016-06-28 11:18:05 -07002318}
2319
2320ndk_headers {
2321 name: "libc_asm_x86_64",
2322 from: "kernel/uapi/asm-x86",
2323 to: "x86_64-linux-android",
2324 srcs: ["kernel/uapi/asm-x86/**/*.h"],
Dan Albert92592652016-10-20 01:42:54 -07002325 license: "NOTICE",
Dan Albert4238a352016-06-28 11:18:05 -07002326}
2327
Dan Albert4238a352016-06-28 11:18:05 -07002328ndk_library {
Dan Willemsen51a9bf12017-04-07 14:09:18 -07002329 name: "libc",
Dan Albert4238a352016-06-28 11:18:05 -07002330 symbol_file: "libc.map.txt",
2331 first_version: "9",
Dan Albert2d8d2a02021-10-20 13:11:46 -07002332 // APIs implemented in asm don't have debug info: http://b/190554910.
2333 allow_untyped_symbols: true,
Dan Albert4238a352016-06-28 11:18:05 -07002334}
2335
Dan Albertdf31aff2016-10-06 15:50:41 -07002336ndk_library {
Dan Willemsen51a9bf12017-04-07 14:09:18 -07002337 name: "libstdc++",
Dan Albertdf31aff2016-10-06 15:50:41 -07002338 symbol_file: "libstdc++.map.txt",
2339 first_version: "9",
2340}
2341
Dan Willemsenca056d72018-01-08 14:00:24 -08002342// Export these headers for toolbox to process
2343filegroup {
2344 name: "kernel_input_headers",
2345 srcs: [
2346 "kernel/uapi/linux/input.h",
2347 "kernel/uapi/linux/input-event-codes.h",
2348 ],
Jingwen Chen19787b92021-02-22 03:06:20 -05002349 bazel_module: { bp2build_available: true },
Dan Willemsenca056d72018-01-08 14:00:24 -08002350}
Luis Hector Chavezfa09b3c2018-08-03 20:53:28 -07002351
2352// Generate a syscall name / number mapping. These objects are text files
2353// (thanks to the -dD -E flags) and not binary files. They will then be
2354// consumed by the genseccomp.py script and converted into C++ code.
2355cc_defaults {
2356 name: "libseccomp_gen_syscall_nrs_defaults",
2357 recovery_available: true,
2358 srcs: ["seccomp/gen_syscall_nrs.cpp"],
2359 cflags: [
2360 "-dD",
2361 "-E",
2362 "-Wall",
2363 "-Werror",
2364 "-nostdinc",
2365 ],
2366}
2367
2368cc_object {
2369 name: "libseccomp_gen_syscall_nrs_arm",
2370 defaults: ["libseccomp_gen_syscall_nrs_defaults"],
2371 local_include_dirs: [
2372 "kernel/uapi/asm-arm",
2373 "kernel/uapi",
2374 ],
Jingwen Chen7e13cf22021-02-23 00:43:01 -05002375
2376 bazel_module: { bp2build_available: true },
Luis Hector Chavezfa09b3c2018-08-03 20:53:28 -07002377}
2378
2379cc_object {
2380 name: "libseccomp_gen_syscall_nrs_arm64",
2381 defaults: ["libseccomp_gen_syscall_nrs_defaults"],
2382 local_include_dirs: [
2383 "kernel/uapi/asm-arm64",
2384 "kernel/uapi",
2385 ],
Jingwen Chen7e13cf22021-02-23 00:43:01 -05002386
2387 bazel_module: { bp2build_available: true },
Luis Hector Chavezfa09b3c2018-08-03 20:53:28 -07002388}
2389
2390cc_object {
2391 name: "libseccomp_gen_syscall_nrs_x86",
2392 defaults: ["libseccomp_gen_syscall_nrs_defaults"],
2393 srcs: ["seccomp/gen_syscall_nrs_x86.cpp"],
2394 exclude_srcs: ["seccomp/gen_syscall_nrs.cpp"],
2395 local_include_dirs: [
2396 "kernel/uapi/asm-x86",
2397 "kernel/uapi",
2398 ],
Jingwen Chen7e13cf22021-02-23 00:43:01 -05002399
2400 bazel_module: { bp2build_available: true },
Luis Hector Chavezfa09b3c2018-08-03 20:53:28 -07002401}
2402
2403cc_object {
2404 name: "libseccomp_gen_syscall_nrs_x86_64",
2405 defaults: ["libseccomp_gen_syscall_nrs_defaults"],
2406 srcs: ["seccomp/gen_syscall_nrs_x86_64.cpp"],
2407 exclude_srcs: ["seccomp/gen_syscall_nrs.cpp"],
2408 local_include_dirs: [
2409 "kernel/uapi/asm-x86",
2410 "kernel/uapi",
2411 ],
Jingwen Chen7e13cf22021-02-23 00:43:01 -05002412
2413 bazel_module: { bp2build_available: true },
Luis Hector Chavezfa09b3c2018-08-03 20:53:28 -07002414}
2415
Jingwen Chenca366332021-01-29 05:16:32 -05002416filegroup {
2417 name: "all_kernel_uapi_headers",
2418 srcs: ["kernel/uapi/**/*.h"],
Jingwen Chen19787b92021-02-22 03:06:20 -05002419 bazel_module: { bp2build_available: true },
Luis Hector Chavezfa09b3c2018-08-03 20:53:28 -07002420}
2421
Martijn Coenen0c6de752019-01-02 12:52:51 +01002422
2423cc_genrule {
2424 name: "func_to_syscall_nrs",
2425 recovery_available: true,
2426 cmd: "$(location genfunctosyscallnrs) --out-dir=$(genDir) $(in)",
2427
2428 tools: [ "genfunctosyscallnrs" ],
2429
2430 srcs: [
2431 "SYSCALLS.TXT",
2432 ":libseccomp_gen_syscall_nrs_arm",
2433 ":libseccomp_gen_syscall_nrs_arm64",
Martijn Coenen0c6de752019-01-02 12:52:51 +01002434 ":libseccomp_gen_syscall_nrs_x86",
2435 ":libseccomp_gen_syscall_nrs_x86_64",
2436 ],
2437
2438 out: [
2439 "func_to_syscall_nrs.h",
2440 ],
2441}
2442
Victor Hsiehdbb86702020-06-15 09:29:07 -07002443// SECCOMP_BLOCKLIST_APP_ZYGOTE.TXT = SECCOMP_BLOCKLIST_APP.txt - setresgid*
Martijn Coenenc3752be2019-01-09 16:19:57 +01002444genrule {
Victor Hsiehdbb86702020-06-15 09:29:07 -07002445 name: "generate_app_zygote_blocklist",
2446 out: ["SECCOMP_BLOCKLIST_APP_ZYGOTE.TXT"],
2447 srcs: ["SECCOMP_BLOCKLIST_APP.TXT"],
Martijn Coenenc3752be2019-01-09 16:19:57 +01002448 cmd: "grep -v '^int[ \t]*setresgid' $(in) > $(out)",
2449}
2450
2451cc_genrule {
2452 name: "libseccomp_policy_app_zygote_sources",
2453 recovery_available: true,
2454 cmd: "$(location genseccomp) --out-dir=$(genDir) --name-modifier=app_zygote $(in)",
2455
2456 tools: [ "genseccomp" ],
2457
2458 srcs: [
2459 "SYSCALLS.TXT",
Victor Hsiehdbb86702020-06-15 09:29:07 -07002460 "SECCOMP_ALLOWLIST_COMMON.TXT",
2461 "SECCOMP_ALLOWLIST_APP.TXT",
2462 "SECCOMP_BLOCKLIST_COMMON.TXT",
Bram Bonnéacadd092020-05-06 13:49:55 +02002463 "SECCOMP_PRIORITY.TXT",
Victor Hsiehdbb86702020-06-15 09:29:07 -07002464 ":generate_app_zygote_blocklist",
Martijn Coenenc3752be2019-01-09 16:19:57 +01002465 ":libseccomp_gen_syscall_nrs_arm",
2466 ":libseccomp_gen_syscall_nrs_arm64",
Martijn Coenenc3752be2019-01-09 16:19:57 +01002467 ":libseccomp_gen_syscall_nrs_x86",
2468 ":libseccomp_gen_syscall_nrs_x86_64",
2469 ],
2470
2471 out: [
2472 "arm64_app_zygote_policy.cpp",
2473 "arm_app_zygote_policy.cpp",
Martijn Coenenc3752be2019-01-09 16:19:57 +01002474 "x86_64_app_zygote_policy.cpp",
2475 "x86_app_zygote_policy.cpp",
2476 ],
2477}
2478
Luis Hector Chavezfa09b3c2018-08-03 20:53:28 -07002479cc_genrule {
2480 name: "libseccomp_policy_app_sources",
2481 recovery_available: true,
2482 cmd: "$(location genseccomp) --out-dir=$(genDir) --name-modifier=app $(in)",
2483
2484 tools: [ "genseccomp" ],
2485
2486 srcs: [
2487 "SYSCALLS.TXT",
Victor Hsiehdbb86702020-06-15 09:29:07 -07002488 "SECCOMP_ALLOWLIST_COMMON.TXT",
2489 "SECCOMP_ALLOWLIST_APP.TXT",
2490 "SECCOMP_BLOCKLIST_COMMON.TXT",
2491 "SECCOMP_BLOCKLIST_APP.TXT",
Bram Bonnéacadd092020-05-06 13:49:55 +02002492 "SECCOMP_PRIORITY.TXT",
Luis Hector Chavezfa09b3c2018-08-03 20:53:28 -07002493 ":libseccomp_gen_syscall_nrs_arm",
2494 ":libseccomp_gen_syscall_nrs_arm64",
Luis Hector Chavezfa09b3c2018-08-03 20:53:28 -07002495 ":libseccomp_gen_syscall_nrs_x86",
2496 ":libseccomp_gen_syscall_nrs_x86_64",
2497 ],
2498
2499 out: [
2500 "arm64_app_policy.cpp",
2501 "arm_app_policy.cpp",
Luis Hector Chavezfa09b3c2018-08-03 20:53:28 -07002502 "x86_64_app_policy.cpp",
2503 "x86_app_policy.cpp",
2504 ],
2505}
2506
2507cc_genrule {
2508 name: "libseccomp_policy_system_sources",
2509 recovery_available: true,
2510 cmd: "$(location genseccomp) --out-dir=$(genDir) --name-modifier=system $(in)",
2511
2512 tools: [ "genseccomp" ],
2513
2514 srcs: [
2515 "SYSCALLS.TXT",
Victor Hsiehdbb86702020-06-15 09:29:07 -07002516 "SECCOMP_ALLOWLIST_COMMON.TXT",
2517 "SECCOMP_ALLOWLIST_SYSTEM.TXT",
2518 "SECCOMP_BLOCKLIST_COMMON.TXT",
Bram Bonnéacadd092020-05-06 13:49:55 +02002519 "SECCOMP_PRIORITY.TXT",
Luis Hector Chavezfa09b3c2018-08-03 20:53:28 -07002520 ":libseccomp_gen_syscall_nrs_arm",
2521 ":libseccomp_gen_syscall_nrs_arm64",
Luis Hector Chavezfa09b3c2018-08-03 20:53:28 -07002522 ":libseccomp_gen_syscall_nrs_x86",
2523 ":libseccomp_gen_syscall_nrs_x86_64",
2524 ],
2525
2526 out: [
2527 "arm64_system_policy.cpp",
2528 "arm_system_policy.cpp",
Luis Hector Chavezfa09b3c2018-08-03 20:53:28 -07002529 "x86_64_system_policy.cpp",
2530 "x86_system_policy.cpp",
2531 ],
2532}
2533
Luis Hector Chavezfa09b3c2018-08-03 20:53:28 -07002534cc_library {
2535 name: "libseccomp_policy",
2536 recovery_available: true,
Martijn Coenend269d9b2018-11-08 16:41:42 +01002537 generated_headers: ["func_to_syscall_nrs"],
Luis Hector Chavezfa09b3c2018-08-03 20:53:28 -07002538 generated_sources: [
2539 "libseccomp_policy_app_sources",
Martijn Coenenc3752be2019-01-09 16:19:57 +01002540 "libseccomp_policy_app_zygote_sources",
Luis Hector Chavezfa09b3c2018-08-03 20:53:28 -07002541 "libseccomp_policy_system_sources",
2542 ],
2543
2544 srcs: [
2545 "seccomp/seccomp_policy.cpp",
2546 ],
2547
2548 export_include_dirs: ["seccomp/include"],
2549 cflags: [
2550 "-Wall",
2551 "-Werror",
2552 ],
2553 shared: {
2554 shared_libs: ["libbase"],
2555 },
2556 static: {
2557 static_libs: ["libbase"],
2558 },
2559}
Christopher Ferrisfc26d712019-02-27 18:07:55 -08002560
Colin Cross048f24e2021-09-01 17:26:00 -07002561cc_library_host_static {
2562 name: "libfts",
2563 srcs: [
2564 "bionic/fts.c",
2565 "upstream-openbsd/lib/libc/stdlib/recallocarray.c",
2566 ],
2567 export_include_dirs: ["fts/include"],
2568 local_include_dirs: [
2569 "private",
2570 "upstream-openbsd/android/include",
2571 ],
2572 cflags: [
2573 "-include openbsd-compat.h",
2574 "-Wno-unused-parameter",
2575 ],
2576 enabled: false,
2577 target: {
2578 musl: {
2579 enabled: true,
2580 },
2581 },
Colin Cross2a9843f2022-01-13 12:26:30 -08002582 stl: "none",
2583}
2584
2585cc_library_host_static {
2586 name: "libexecinfo",
2587 visibility: ["//external/musl"],
2588 srcs: ["bionic/execinfo.cpp"],
2589 export_include_dirs: ["execinfo/include"],
2590 local_include_dirs: ["private"],
2591 enabled: false,
2592 target: {
2593 musl: {
2594 enabled: true,
2595 system_shared_libs: [],
2596 header_libs: ["libc_musl_headers"],
2597 },
2598 },
2599 stl: "none",
Colin Cross048f24e2021-09-01 17:26:00 -07002600}
2601
Colin Cross9da85fa2022-01-24 18:20:05 -08002602cc_library_host_static {
2603 name: "libb64",
2604 visibility: ["//external/musl"],
2605 srcs: ["upstream-openbsd/lib/libc/net/base64.c"],
2606 export_include_dirs: ["b64/include"],
2607 local_include_dirs: [
2608 "private",
2609 "upstream-openbsd/android/include",
2610 ],
2611 cflags: [
2612 "-include openbsd-compat.h",
2613 ],
2614 enabled: false,
2615 target: {
2616 musl: {
2617 enabled: true,
2618 system_shared_libs: [],
2619 header_libs: ["libc_musl_headers"],
2620 },
2621 },
2622 stl: "none",
2623}
2624
Colin Cross9d4a56e2022-02-03 10:20:32 -08002625// Export kernel uapi headers to be used in the musl sysroot.
2626// Also include the execinfo headers for the libexecinfo and the
2627// b64 headers for libb64 embedded in musl libc.
2628cc_genrule {
2629 name: "libc_musl_sysroot_bionic_headers",
2630 visibility: ["//external/musl"],
2631 host_supported: true,
2632 device_supported: false,
2633 enabled: false,
2634 target: {
2635 musl: {
2636 enabled: true,
2637 },
2638 },
2639 srcs: [
2640 "kernel/uapi/**/*.h",
2641 "kernel/android/**/*.h",
Colin Cross9d4a56e2022-02-03 10:20:32 -08002642 "execinfo/include/**/*.h",
Colin Cross9d4a56e2022-02-03 10:20:32 -08002643 "b64/include/**/*.h",
Colin Crossaeef9f02022-02-07 21:01:26 -08002644
Colin Crossaeef9f02022-02-07 21:01:26 -08002645 "NOTICE",
Colin Cross9d4a56e2022-02-03 10:20:32 -08002646
2647 ":libc_musl_sysroot_bionic_arch_headers",
2648 ],
2649 out: ["libc_musl_sysroot_bionic_headers.zip"],
2650 tools: [
2651 "soong_zip",
2652 "merge_zips",
2653 "zip2zip",
2654 ],
Colin Crossaeef9f02022-02-07 21:01:26 -08002655 cmd: "BIONIC_LIBC_DIR=$$(dirname $(location NOTICE)) && " +
2656 "$(location soong_zip) -o $(genDir)/sysroot.zip -symlinks=false" +
Colin Crossad33d022022-02-25 18:27:04 -08002657 // NOTICE
2658 " -j -f $(location NOTICE) " +
Colin Cross9d4a56e2022-02-03 10:20:32 -08002659 // headers
2660 " -P include " +
Colin Crossaeef9f02022-02-07 21:01:26 -08002661 " -C $${BIONIC_LIBC_DIR}/kernel/uapi " +
2662 " -D $${BIONIC_LIBC_DIR}/kernel/uapi " +
2663 " -C $${BIONIC_LIBC_DIR}/kernel/android/scsi " +
2664 " -D $${BIONIC_LIBC_DIR}/kernel/android/scsi " +
2665 " -C $${BIONIC_LIBC_DIR}/kernel/android/uapi " +
2666 " -D $${BIONIC_LIBC_DIR}/kernel/android/uapi " +
2667 " -C $${BIONIC_LIBC_DIR}/execinfo/include " +
2668 " -D $${BIONIC_LIBC_DIR}/execinfo/include " +
2669 " -C $${BIONIC_LIBC_DIR}/b64/include " +
2670 " -D $${BIONIC_LIBC_DIR}/b64/include " +
Colin Cross9d4a56e2022-02-03 10:20:32 -08002671 " && " +
Colin Crossad33d022022-02-25 18:27:04 -08002672 "$(location zip2zip) -i $(genDir)/sysroot.zip -o $(genDir)/sysroot-renamed.zip " +
2673 " include/**/*:include/ " +
2674 " NOTICE:NOTICE.bionic " +
2675 " && " +
2676 "$(location merge_zips) $(out) $(location :libc_musl_sysroot_bionic_arch_headers) $(genDir)/sysroot-renamed.zip",
Colin Cross9d4a56e2022-02-03 10:20:32 -08002677}
2678
2679// The architecture-specific bits have to be handled separately because the label varies based
2680// on architecture, which prevents using $(locations) to find them and requires using $(in)
2681// instead, which would mix in all the other files if this were part of the main libc_musl_sysroot
2682// genrule.
2683cc_genrule {
2684 name: "libc_musl_sysroot_bionic_arch_headers",
2685 visibility: ["//visibility:private"],
2686 host_supported: true,
2687 device_supported: false,
2688 enabled: false,
2689 target: {
2690 musl: {
2691 enabled: true,
2692 },
2693 },
2694 arch: {
2695 arm: {
2696 srcs: ["kernel/uapi/asm-arm/**/*.h"],
2697 },
2698 arm64: {
2699 srcs: ["kernel/uapi/asm-arm64/**/*.h"],
2700 },
2701 x86: {
2702 srcs: ["kernel/uapi/asm-x86/**/*.h"],
2703 },
2704 x86_64: {
2705 srcs: ["kernel/uapi/asm-x86/**/*.h"],
2706 },
2707 },
2708 out: ["libc_musl_sysroot_bionic_arch_headers.zip"],
2709 tools: ["soong_zip"],
2710 cmd: "includes=($(in)) && $(location soong_zip) -o $(out) -P include/asm -j -D $$(dirname $${includes[0]})",
2711}