Android.mk revision 90a29db0f4a0893bdbd12f656d8869bb79ec3900
1e210488e0d4082b9a0c55195c22191f29ed56bf8Serban ConstantinescuLOCAL_PATH := $(call my-dir)
21dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
3c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan Albertbionic_coverage := false
4c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan Albert
5d7a632948d5b3128cc536a2c4db3124b4fa57a80Christopher Ferris# Make everything depend on any changes to included makefiles.
6f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wanglibc_common_additional_dependencies := $(LOCAL_PATH)/Android.mk
7f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang
8f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang# Load config for TARGET_ARCH
9f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wangmy_2nd_arch_prefix :=
10f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wanginclude $(LOCAL_PATH)/arch-$(TARGET_ARCH)/$(TARGET_ARCH).mk
11f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wanglibc_common_additional_dependencies += \
12f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    $(LOCAL_PATH)/arch-$(TARGET_ARCH)/$(TARGET_ARCH).mk
13f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang
14f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang
15f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wangifdef TARGET_2ND_ARCH
16f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang# Load config for TARGET_2ND_ARCH
17f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wangmy_2nd_arch_prefix := $(TARGET_2ND_ARCH_VAR_PREFIX)
18f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wanginclude $(LOCAL_PATH)/arch-$(TARGET_2ND_ARCH)/$(TARGET_2ND_ARCH).mk
19f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wangmy_2nd_arch_prefix :=
20f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wanglibc_common_additional_dependencies += \
21f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    $(LOCAL_PATH)/arch-$(TARGET_2ND_ARCH)/$(TARGET_2ND_ARCH).mk
22f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wangendif
23f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang
24f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang# crt obj files
25f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang# ========================================================
26f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang# crtbrand.c needs <stdint.h> and a #define for the platform SDK version.
27f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wanglibc_crt_target_cflags := \
28f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    -I$(LOCAL_PATH)/include \
29f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION) \
30f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang
31f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wangmy_2nd_arch_prefix :=
32f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wanginclude $(LOCAL_PATH)/crt.mk
33f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wangifdef TARGET_2ND_ARCH
34f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wangmy_2nd_arch_prefix := $(TARGET_2ND_ARCH_VAR_PREFIX)
35f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wanginclude $(LOCAL_PATH)/crt.mk
36f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wangmy_2nd_arch_prefix :=
37f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wangendif
38d7a632948d5b3128cc536a2c4db3124b4fa57a80Christopher Ferris
39ca122b0e34df0e8c485be0d3ab1b80f728b76276Dima Zavin# Define the common source files for all the libc instances
40ca122b0e34df0e8c485be0d3ab1b80f728b76276Dima Zavin# =========================================================
411dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Projectlibc_common_src_files := \
4276c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/bindresvport.c \
4376c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/ether_aton.c \
4476c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/ether_ntoa.c \
4576c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/fts.c \
4676c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/gethostname.c \
4776c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/getpriority.c \
4876c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/if_indextoname.c \
4976c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/if_nametoindex.c \
5076c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/initgroups.c \
5176c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/ioctl.c \
5276c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/isatty.c \
5376c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/memmem.c \
5476c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/pututline.c \
5576c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/sched_cpualloc.c \
5676c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/sched_cpucount.c \
5776c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/sigblock.c \
5876c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/siginterrupt.c \
5976c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/sigsetmask.c \
6076c8b882690dd9025caa625a023996c136377cb1Ying Wang    bionic/system_properties_compat.c \
61aa0ebdafc71e1ceac78e0929b94f3bb117d0c8e9Elliott Hughes    stdio/snprintf.c\
62aa0ebdafc71e1ceac78e0929b94f3bb117d0c8e9Elliott Hughes    stdio/sprintf.c \
632b021e10664c3938249eb18b48eeac253cbb3e20Elliott Hughes    stdio/stdio_ext.cpp \
64eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughes
6559a13c122ebc4191583b67c846a95d690dcda5cfChristopher Ferris# Fortify implementations of libc functions.
6659a13c122ebc4191583b67c846a95d690dcda5cfChristopher Ferrislibc_common_src_files += \
6790201d5eca050414d50a433866ccb580415bb0d4Nick Kralevich    bionic/__FD_chk.cpp \
6859a13c122ebc4191583b67c846a95d690dcda5cfChristopher Ferris    bionic/__fgets_chk.cpp \
6959a13c122ebc4191583b67c846a95d690dcda5cfChristopher Ferris    bionic/__memmove_chk.cpp \
70b036b5ca36c1e12b075909b3eca6eab73ee611cfNick Kralevich    bionic/__read_chk.cpp \
7160f4f9a5b99a0a66817f50edfc2194a49f8b5146Nick Kralevich    bionic/__recvfrom_chk.cpp \
72950a58e24d1019eb9d814dbb16f111a6b61e3f23Christopher Ferris    bionic/__stpcpy_chk.cpp \
73950a58e24d1019eb9d814dbb16f111a6b61e3f23Christopher Ferris    bionic/__stpncpy_chk.cpp \
7459a13c122ebc4191583b67c846a95d690dcda5cfChristopher Ferris    bionic/__strchr_chk.cpp \
7559a13c122ebc4191583b67c846a95d690dcda5cfChristopher Ferris    bionic/__strlcat_chk.cpp \
7659a13c122ebc4191583b67c846a95d690dcda5cfChristopher Ferris    bionic/__strlcpy_chk.cpp \
7759a13c122ebc4191583b67c846a95d690dcda5cfChristopher Ferris    bionic/__strlen_chk.cpp \
7859a13c122ebc4191583b67c846a95d690dcda5cfChristopher Ferris    bionic/__strncat_chk.cpp \
7959a13c122ebc4191583b67c846a95d690dcda5cfChristopher Ferris    bionic/__strncpy_chk.cpp \
8059a13c122ebc4191583b67c846a95d690dcda5cfChristopher Ferris    bionic/__strrchr_chk.cpp \
8159a13c122ebc4191583b67c846a95d690dcda5cfChristopher Ferris    bionic/__umask_chk.cpp \
8259a13c122ebc4191583b67c846a95d690dcda5cfChristopher Ferris    bionic/__vsnprintf_chk.cpp \
8359a13c122ebc4191583b67c846a95d690dcda5cfChristopher Ferris    bionic/__vsprintf_chk.cpp \
8459a13c122ebc4191583b67c846a95d690dcda5cfChristopher Ferris
8529c7f0b4d18f812267c2194b85204e19e41d0387Elliott Hugheslibc_bionic_src_files := \
8661e699a133a4807fe878a6cb0d7190d7c96e21f8Elliott Hughes    bionic/abort.cpp \
878f0cd8aa22906c3e678738eeba20fc1a5c399b6cSreeram Ramachandran    bionic/accept.cpp \
88903b78873a744d3fba187e4bd22008ba21162e51Sreeram Ramachandran    bionic/accept4.cpp \
89f8fcfbc85a3ce3e195626b90736d3a484331494bElliott Hughes    bionic/access.cpp \
90063cfb2084ea4b12d3c85b2d2c44e888f0857eb4Elliott Hughes    bionic/assert.cpp \
915a8173860d65182af022be88fed0c5d8d5dcb69dElliott Hughes    bionic/atof.cpp \
92a406ee6d5f616192e9a13afad6ac6a9969814fc1Brigid Smith    bionic/bionic_systrace.cpp \
9311952073af22568bba0b661f7a9d4402c443a888Elliott Hughes    bionic/bionic_time_conversions.cpp \
94428f5567be25b8090e3dd72e2d3d337c305b514eElliott Hughes    bionic/brk.cpp \
957a7f9952c12b216fbf91fc4cdbb97045e8861115Dan Albert    bionic/c16rtomb.cpp \
967a7f9952c12b216fbf91fc4cdbb97045e8861115Dan Albert    bionic/c32rtomb.cpp \
97f8fcfbc85a3ce3e195626b90736d3a484331494bElliott Hughes    bionic/chmod.cpp \
98f8fcfbc85a3ce3e195626b90736d3a484331494bElliott Hughes    bionic/chown.cpp \
9958d9e280d459225aa8dc4533e883182b08215f7dElliott Hughes    bionic/clearenv.cpp \
100cccfe1e17c47799deee67fa23f48d8c860390ac8Elliott Hughes    bionic/clock.cpp \
10136d6188f8cd8b948fb797f11d9620d63d0c2215aElliott Hughes    bionic/clone.cpp \
102f8408c58fa61540d8b6b5afec4246284482d89c2Calin Juravle    bionic/__cmsg_nxthdr.cpp \
103ceb5bd787c8ce281e5f4343c5d4f77b41c3e2919Sreeram Ramachandran    bionic/connect.cpp \
104dfb5ce42bcc5a275af49211c0bbe64c5ec3d2668Dan Albert    bionic/ctype.cpp \
105c30396f5f225e0b5a83a35432e2d82a7063cfdb9David 'Digit' Turner    bionic/dirent.cpp \
106cac7b9d6ec1a09814bc028e2f768db732f018891Elliott Hughes    bionic/dup2.cpp \
107cac7b9d6ec1a09814bc028e2f768db732f018891Elliott Hughes    bionic/epoll_create.cpp \
10811952073af22568bba0b661f7a9d4402c443a888Elliott Hughes    bionic/epoll_pwait.cpp \
109aa0ebdafc71e1ceac78e0929b94f3bb117d0c8e9Elliott Hughes    bionic/epoll_wait.cpp \
1102a0b873065edb304fa2d1c54f8de663ea638b8abElliott Hughes    bionic/__errno.cpp \
1119b84824dfd597d8137137fa33295faa26cc70ae0Kito Cheng    bionic/eventfd_read.cpp \
1129b84824dfd597d8137137fa33295faa26cc70ae0Kito Cheng    bionic/eventfd_write.cpp \
113bf425680e484486803bf21e4c4cd1e3f36614a3cElliott Hughes    bionic/ffs.cpp \
11453e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    bionic/flockfile.cpp \
115232163cf70712fe00436b70dd495f4cf405e9eabElliott Hughes    bionic/fork.cpp \
11602c78a386739a8a2b3007efeb00a9ca04132100aElliott Hughes    bionic/fpclassify.cpp \
117d0be7c8f9a06b3ca8ea7647ea35c8f9dc63f0fe1Elliott Hughes    bionic/futimens.cpp \
1182c5153b043b44e9935a334ae9b2d5a4bc5258b40Nick Kralevich    bionic/getauxval.cpp \
119063cfb2084ea4b12d3c85b2d2c44e888f0857eb4Elliott Hughes    bionic/getcwd.cpp \
1202b67d7dee09852789d9ac7d8972ed6cdb2c18430Elliott Hughes    bionic/getentropy_linux.c \
121247dc91889ffc8b71fc3371edba9d834afab96abElliott Hughes    bionic/getpgrp.cpp \
1227086ad6919feb2415c6027163f5c63323bcca27cElliott Hughes    bionic/getpid.cpp \
1235d9a7ba0dc9c24ed4e4efa9cac0e796fd524b308Elliott Hughes    bionic/gettid.cpp \
12409c39d6df0e952620f8c1751377b559a04e023aaElliott Hughes    bionic/__gnu_basename.cpp \
125cac7b9d6ec1a09814bc028e2f768db732f018891Elliott Hughes    bionic/inotify_init.cpp \
126f8fcfbc85a3ce3e195626b90736d3a484331494bElliott Hughes    bionic/lchown.cpp \
127fe317a3775e16d466bb884a8e054fd77f7087bb3Calin Juravle    bionic/lfs64_support.cpp \
1280990d4fda898ada86e557f872f5cb7d16b138e3cElliott Hughes    bionic/__libc_current_sigrtmax.cpp \
1290990d4fda898ada86e557f872f5cb7d16b138e3cElliott Hughes    bionic/__libc_current_sigrtmin.cpp \
13042b2c6a5eed5e4ef35315b8cd32d1355f12a69b6Elliott Hughes    bionic/libc_init_common.cpp \
1318f2a5a0b40fc82126c691d5c30131d908772aab7Elliott Hughes    bionic/libc_logging.cpp \
13258b575485c446f9d76ee00f67516ed42cf017769Elliott Hughes    bionic/libgen.cpp \
133f8fcfbc85a3ce3e195626b90736d3a484331494bElliott Hughes    bionic/link.cpp \
1345363a45f2b6d4eeb054710d0886bbadea8a15273Elliott Hughes    bionic/locale.cpp \
135f8fcfbc85a3ce3e195626b90736d3a484331494bElliott Hughes    bionic/lstat.cpp \
1364caa1f09770ea3e5ca22afbe8aa0900810a0dbfeDan Albert    bionic/malloc_info.cpp \
1377a7f9952c12b216fbf91fc4cdbb97045e8861115Dan Albert    bionic/mbrtoc16.cpp \
1387a7f9952c12b216fbf91fc4cdbb97045e8861115Dan Albert    bionic/mbrtoc32.cpp \
1397a7f9952c12b216fbf91fc4cdbb97045e8861115Dan Albert    bionic/mbstate.cpp \
140f8fcfbc85a3ce3e195626b90736d3a484331494bElliott Hughes    bionic/mkdir.cpp \
141594b1a4af204aa9de2b4913182f4556e38d71648Elliott Hughes    bionic/mkfifo.cpp \
142f8fcfbc85a3ce3e195626b90736d3a484331494bElliott Hughes    bionic/mknod.cpp \
143eb664e24c074b88539b743668109d8b4eaa925bdElliott Hughes    bionic/mntent.cpp \
1448205a61248973ac13716ae80e712c80e126b0541Sreeram Ramachandran    bionic/NetdClientDispatch.cpp \
145f8fcfbc85a3ce3e195626b90736d3a484331494bElliott Hughes    bionic/open.cpp \
146a186b2e0ca19620a52b4a49c17835532d13eb30aElliott Hughes    bionic/pathconf.cpp \
14711952073af22568bba0b661f7a9d4402c443a888Elliott Hughes    bionic/pause.cpp \
148cac7b9d6ec1a09814bc028e2f768db732f018891Elliott Hughes    bionic/pipe.cpp \
14911952073af22568bba0b661f7a9d4402c443a888Elliott Hughes    bionic/poll.cpp \
150b587f339db269abf08a2c311a7263dd218cb23d3Elliott Hughes    bionic/posix_fadvise.cpp \
151f64b8ea09db3bdd84eed59f7721301743332b3feElliott Hughes    bionic/posix_fallocate.cpp \
1524b558f50a42c97d461f1dede5aaaae490ea99e2eElliott Hughes    bionic/posix_timers.cpp \
153c3f114037dbf028896310609fd28cf2b3da99c4dElliott Hughes    bionic/pthread_atfork.cpp \
1543e898476c7230b60a0f76968e64ff25f475b48c0Elliott Hughes    bionic/pthread_attr.cpp \
155c3f114037dbf028896310609fd28cf2b3da99c4dElliott Hughes    bionic/pthread_cond.cpp \
156c3f114037dbf028896310609fd28cf2b3da99c4dElliott Hughes    bionic/pthread_create.cpp \
1579d23e04c43dbb8480bea8be28b8a2f37423bec49Elliott Hughes    bionic/pthread_detach.cpp \
1589d23e04c43dbb8480bea8be28b8a2f37423bec49Elliott Hughes    bionic/pthread_equal.cpp \
159c3f114037dbf028896310609fd28cf2b3da99c4dElliott Hughes    bionic/pthread_exit.cpp \
1609d23e04c43dbb8480bea8be28b8a2f37423bec49Elliott Hughes    bionic/pthread_getcpuclockid.cpp \
1619d23e04c43dbb8480bea8be28b8a2f37423bec49Elliott Hughes    bionic/pthread_getschedparam.cpp \
162a4831cb4a3f44b93788488db8ff9ea76613f0355Elliott Hughes    bionic/pthread_gettid_np.cpp \
1639d23e04c43dbb8480bea8be28b8a2f37423bec49Elliott Hughes    bionic/pthread_internals.cpp \
1649d23e04c43dbb8480bea8be28b8a2f37423bec49Elliott Hughes    bionic/pthread_join.cpp \
165c3f114037dbf028896310609fd28cf2b3da99c4dElliott Hughes    bionic/pthread_key.cpp \
1669d23e04c43dbb8480bea8be28b8a2f37423bec49Elliott Hughes    bionic/pthread_kill.cpp \
167c3f114037dbf028896310609fd28cf2b3da99c4dElliott Hughes    bionic/pthread_mutex.cpp \
168c3f114037dbf028896310609fd28cf2b3da99c4dElliott Hughes    bionic/pthread_once.cpp \
169c3f114037dbf028896310609fd28cf2b3da99c4dElliott Hughes    bionic/pthread_rwlock.cpp \
1709d23e04c43dbb8480bea8be28b8a2f37423bec49Elliott Hughes    bionic/pthread_self.cpp \
1713e898476c7230b60a0f76968e64ff25f475b48c0Elliott Hughes    bionic/pthread_setname_np.cpp \
1729d23e04c43dbb8480bea8be28b8a2f37423bec49Elliott Hughes    bionic/pthread_setschedparam.cpp \
173c5d028fc913de84a781bd61084bf7ae2182fd48eElliott Hughes    bionic/pthread_sigmask.cpp \
174c3f114037dbf028896310609fd28cf2b3da99c4dElliott Hughes    bionic/ptrace.cpp \
1754916706cfe590eb06c9b5bd4bd402ce056034d51Elliott Hughes    bionic/pty.cpp \
176d8a5a6f513c6fa99229e9c82c5c308c7cd6b3d54Chris Dearman    bionic/raise.cpp \
17776c241b091b4d9d9a9237d40e814e52ce2917f47Elliott Hughes    bionic/rand.cpp \
178f8fcfbc85a3ce3e195626b90736d3a484331494bElliott Hughes    bionic/readlink.cpp \
179a38cb088619d3e2f2194247038c10897d1c5036eElliott Hughes    bionic/reboot.cpp \
180247dc91889ffc8b71fc3371edba9d834afab96abElliott Hughes    bionic/recv.cpp \
181f8fcfbc85a3ce3e195626b90736d3a484331494bElliott Hughes    bionic/rename.cpp \
182f8fcfbc85a3ce3e195626b90736d3a484331494bElliott Hughes    bionic/rmdir.cpp \
183701bec2af33feaa9dddf12ccf8e4c714441b7f2eElliott Hughes    bionic/scandir.cpp \
1844ca685e36e9d7f53c135eba2b4b8ece152129dbeKito Cheng    bionic/sched_getaffinity.cpp \
185887e1140fe7596fa1239a0bc802d2cdb51c57d3cElliott Hughes    bionic/sched_getcpu.cpp \
18604303f5a8ab9a992f3671d46b6ee2171582cbd61Elliott Hughes    bionic/semaphore.cpp \
187247dc91889ffc8b71fc3371edba9d834afab96abElliott Hughes    bionic/send.cpp \
188232163cf70712fe00436b70dd495f4cf405e9eabElliott Hughes    bionic/setegid.cpp \
1894a9e837840fda3aaea48aeba85c7c7a8782d2586Elliott Hughes    bionic/__set_errno.cpp \
190232163cf70712fe00436b70dd495f4cf405e9eabElliott Hughes    bionic/seteuid.cpp \
1915a8173860d65182af022be88fed0c5d8d5dcb69dElliott Hughes    bionic/setpgrp.cpp \
192c7e9b2331771e5e87c34a8ee3dc6cc41d35b02feElliott Hughes    bionic/sigaction.cpp \
193c7e9b2331771e5e87c34a8ee3dc6cc41d35b02feElliott Hughes    bionic/sigaddset.cpp \
194c7e9b2331771e5e87c34a8ee3dc6cc41d35b02feElliott Hughes    bionic/sigdelset.cpp \
195c7e9b2331771e5e87c34a8ee3dc6cc41d35b02feElliott Hughes    bionic/sigemptyset.cpp \
196c7e9b2331771e5e87c34a8ee3dc6cc41d35b02feElliott Hughes    bionic/sigfillset.cpp \
197c7e9b2331771e5e87c34a8ee3dc6cc41d35b02feElliott Hughes    bionic/sigismember.cpp \
198c7e9b2331771e5e87c34a8ee3dc6cc41d35b02feElliott Hughes    bionic/signal.cpp \
199aa0ebdafc71e1ceac78e0929b94f3bb117d0c8e9Elliott Hughes    bionic/signalfd.cpp \
20040d105ccb3e6283566ce54b693b3088f31aa4f26Elliott Hughes    bionic/sigpending.cpp \
20119e62325c268a668692e2b65fde2284079f369aaElliott Hughes    bionic/sigprocmask.cpp \
2021f5af926fa626734981d6b4dcc0ab54e520032a9Elliott Hughes    bionic/sigsuspend.cpp \
203c5d028fc913de84a781bd61084bf7ae2182fd48eElliott Hughes    bionic/sigwait.cpp \
204903b78873a744d3fba187e4bd22008ba21162e51Sreeram Ramachandran    bionic/socket.cpp \
205f8fcfbc85a3ce3e195626b90736d3a484331494bElliott Hughes    bionic/stat.cpp \
20606040fd75c1edff9e5ffb2b3d3e2a6e66d57c11dElliott Hughes    bionic/statvfs.cpp \
207dfb5ce42bcc5a275af49211c0bbe64c5ec3d2668Dan Albert    bionic/strcoll_l.cpp \
208063cfb2084ea4b12d3c85b2d2c44e888f0857eb4Elliott Hughes    bionic/strerror.cpp \
209063cfb2084ea4b12d3c85b2d2c44e888f0857eb4Elliott Hughes    bionic/strerror_r.cpp \
210dfb5ce42bcc5a275af49211c0bbe64c5ec3d2668Dan Albert    bionic/strftime_l.cpp \
211063cfb2084ea4b12d3c85b2d2c44e888f0857eb4Elliott Hughes    bionic/strsignal.cpp \
2125a8173860d65182af022be88fed0c5d8d5dcb69dElliott Hughes    bionic/strtold.cpp \
213dfb5ce42bcc5a275af49211c0bbe64c5ec3d2668Dan Albert    bionic/strtold_l.cpp \
214dfb5ce42bcc5a275af49211c0bbe64c5ec3d2668Dan Albert    bionic/strtoll_l.cpp \
215dfb5ce42bcc5a275af49211c0bbe64c5ec3d2668Dan Albert    bionic/strtoull_l.cpp \
216dfb5ce42bcc5a275af49211c0bbe64c5ec3d2668Dan Albert    bionic/strxfrm_l.cpp \
217063cfb2084ea4b12d3c85b2d2c44e888f0857eb4Elliott Hughes    bionic/stubs.cpp \
218f8fcfbc85a3ce3e195626b90736d3a484331494bElliott Hughes    bionic/symlink.cpp \
21991a9925998f2b878f0245ce03aab22cc412a4d8bElliott Hughes    bionic/sysconf.cpp \
2203ad8ecb64e9dd5614169232b84a93eb3b8aa32d7Elliott Hughes    bionic/syslog.cpp \
221aa0ebdafc71e1ceac78e0929b94f3bb117d0c8e9Elliott Hughes    bionic/sys_siglist.c \
222aa0ebdafc71e1ceac78e0929b94f3bb117d0c8e9Elliott Hughes    bionic/sys_signame.c \
2235a8173860d65182af022be88fed0c5d8d5dcb69dElliott Hughes    bionic/system_properties.cpp \
224063cfb2084ea4b12d3c85b2d2c44e888f0857eb4Elliott Hughes    bionic/tdestroy.cpp \
2258d4b5849f21dc4115ad66944dc11df838b3faa52Elliott Hughes    bionic/termios.cpp \
2260468feb28696751efcddada8de69a622afffdba8Elliott Hughes    bionic/thread_private.cpp \
227063cfb2084ea4b12d3c85b2d2c44e888f0857eb4Elliott Hughes    bionic/tmpfile.cpp \
228247dc91889ffc8b71fc3371edba9d834afab96abElliott Hughes    bionic/umount.cpp \
229f8fcfbc85a3ce3e195626b90736d3a484331494bElliott Hughes    bionic/unlink.cpp \
230f8fcfbc85a3ce3e195626b90736d3a484331494bElliott Hughes    bionic/utimes.cpp \
231625993dfbb085a3cde7492eda8ec1cdc1ee39a78Elliott Hughes    bionic/vdso.cpp \
23217a8b0db63d54e9d79bf11112ace0c4fe9606289Elliott Hughes    bionic/wait.cpp \
233063cfb2084ea4b12d3c85b2d2c44e888f0857eb4Elliott Hughes    bionic/wchar.cpp \
2345a0aa3dee247a313f04252cf45608097695d5953Elliott Hughes    bionic/wctype.cpp \
23529c7f0b4d18f812267c2194b85204e19e41d0387Elliott Hughes
236fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albertlibc_cxa_src_files := \
237fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert    bionic/__cxa_guard.cpp \
238fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert    bionic/__cxa_pure_virtual.cpp \
239fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert    bionic/new.cpp \
240fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert
241f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hugheslibc_upstream_freebsd_src_files := \
24257a883640f3b43bf5e332d64489b3eab67a5ac3fElliott Hughes    upstream-freebsd/lib/libc/gen/ldexp.c \
243ab61eb366ac48addf2bca6093a34455193f5c8dfElliott Hughes    upstream-freebsd/lib/libc/gen/sleep.c \
244ab61eb366ac48addf2bca6093a34455193f5c8dfElliott Hughes    upstream-freebsd/lib/libc/gen/usleep.c \
245aec2ffbc5a7b45368ceab3663265fbb659968fe7Elliott Hughes    upstream-freebsd/lib/libc/stdlib/abs.c \
246d278b828fef47fb2d7098f8ec70867fbd3da09d6Elliott Hughes    upstream-freebsd/lib/libc/stdlib/getopt_long.c \
247aec2ffbc5a7b45368ceab3663265fbb659968fe7Elliott Hughes    upstream-freebsd/lib/libc/stdlib/imaxabs.c \
248aec2ffbc5a7b45368ceab3663265fbb659968fe7Elliott Hughes    upstream-freebsd/lib/libc/stdlib/imaxdiv.c \
249aec2ffbc5a7b45368ceab3663265fbb659968fe7Elliott Hughes    upstream-freebsd/lib/libc/stdlib/labs.c \
250aec2ffbc5a7b45368ceab3663265fbb659968fe7Elliott Hughes    upstream-freebsd/lib/libc/stdlib/llabs.c \
2510b25f633a23e575c8a1f9547d1af5dc5b0157a1cElliott Hughes    upstream-freebsd/lib/libc/stdlib/qsort.c \
252b8425c549a0bfe08b01b5906b95603d8523c1b16Dan Albert    upstream-freebsd/lib/libc/stdlib/quick_exit.c \
253f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hughes    upstream-freebsd/lib/libc/stdlib/realpath.c \
254eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wcpcpy.c \
255eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wcpncpy.c \
256eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wcscasecmp.c \
257eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wcscspn.c \
258eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wcsdup.c \
259eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wcslcat.c \
260eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wcsncasecmp.c \
261eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wcsncat.c \
262eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wcsncmp.c \
263eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wcsncpy.c \
264eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wcsnlen.c \
265eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wcspbrk.c \
266eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wcsspn.c \
267eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wcstok.c \
268eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wmemchr.c \
269eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wmemcpy.c \
270eb93ebffba21e2c9b8a12bb86db60d38c7750270Elliott Hughes    upstream-freebsd/lib/libc/string/wmemset.c \
271f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hughes
272f8b3a920a895a53b207017249080087d562bd0d2Elliott Hugheslibc_upstream_netbsd_src_files := \
273a0beeeabbc8735bc830544cbbb1d920122b8d958Elliott Hughes    upstream-netbsd/common/lib/libc/stdlib/random.c \
274677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/gen/ftw.c \
275677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/gen/nftw.c \
276677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/gen/nice.c \
277677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/gen/popen.c \
278677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/gen/psignal.c \
279677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/gen/utime.c \
28019f58efa22357bfaa6a63a0940928830e95c5123Elliott Hughes    upstream-netbsd/lib/libc/gen/utmp.c \
281a210cae724313604f8cbd49cc6deab1be5239083Elliott Hughes    upstream-netbsd/lib/libc/inet/nsap_addr.c \
282677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/regex/regcomp.c \
283677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/regex/regerror.c \
284677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/regex/regexec.c \
285677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/regex/regfree.c \
286677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/stdlib/bsearch.c \
287677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/stdlib/div.c \
288677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/stdlib/drand48.c \
289677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/stdlib/erand48.c \
290677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/stdlib/jrand48.c \
291677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/stdlib/ldiv.c \
292677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/stdlib/lldiv.c \
293677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/stdlib/lrand48.c \
294677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/stdlib/mrand48.c \
295677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/stdlib/nrand48.c \
296677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/stdlib/_rand48.c \
297a0beeeabbc8735bc830544cbbb1d920122b8d958Elliott Hughes    upstream-netbsd/lib/libc/stdlib/rand_r.c \
298677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/stdlib/seed48.c \
299677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/stdlib/srand48.c \
300677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/string/memccpy.c \
301677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/string/strcasestr.c \
302677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/string/strcoll.c \
303677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    upstream-netbsd/lib/libc/string/strxfrm.c \
304f8b3a920a895a53b207017249080087d562bd0d2Elliott Hughes
3054bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hugheslibc_upstream_openbsd_gdtoa_src_files := \
306d39f3f2c2e7fc73ddb019695f0df3417deef5bf4Elliott Hughes    upstream-openbsd/android/gdtoa_support.cpp \
3074bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/dmisc.c \
3084bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/dtoa.c \
3094bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/gdtoa.c \
3104bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/gethex.c \
3114bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/gmisc.c \
3124bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/hd_init.c \
3134bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/hdtoa.c \
3144bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/hexnan.c \
3154bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/ldtoa.c \
3164bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/misc.c \
3174bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/smisc.c \
3184bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/strtod.c \
3194bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/strtodg.c \
3204bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/strtof.c \
3214bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/strtord.c \
3224bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/sum.c \
3234bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/ulp.c \
3244bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes
3254bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hugheslibc_upstream_openbsd_gdtoa_src_files_32 := \
3264bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    $(libc_upstream_openbsd_gdtoa_src_files) \
3274bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes
3284bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hugheslibc_upstream_openbsd_gdtoa_src_files_64 := \
3294bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    $(libc_upstream_openbsd_gdtoa_src_files) \
3304bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    upstream-openbsd/lib/libc/gdtoa/strtorQ.c \
3314bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes
33253e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hugheslibc_upstream_openbsd_src_files := \
33349eed7db79bd2664a2a13552ad81d445c93ba462Elliott Hughes    upstream-openbsd/lib/libc/compat-43/killpg.c \
3342b67d7dee09852789d9ac7d8972ed6cdb2c18430Elliott Hughes    upstream-openbsd/lib/libc/crypt/arc4random.c \
3352b67d7dee09852789d9ac7d8972ed6cdb2c18430Elliott Hughes    upstream-openbsd/lib/libc/crypt/arc4random_uniform.c \
336aedb00d04eb7f0b20b6abde702ba94a46577ca68Elliott Hughes    upstream-openbsd/lib/libc/gen/alarm.c \
337f3c73901cb5ca4de2651151cf2c65b31a729466eElliott Hughes    upstream-openbsd/lib/libc/gen/ctype_.c \
338e5055179fd92ae243741d778426e1da03539165fElliott Hughes    upstream-openbsd/lib/libc/gen/daemon.c \
339cc7e5f489f02ceee46e315af4f78559d3ad6c962Elliott Hughes    upstream-openbsd/lib/libc/gen/err.c \
340cc7e5f489f02ceee46e315af4f78559d3ad6c962Elliott Hughes    upstream-openbsd/lib/libc/gen/errx.c \
34153e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/gen/exec.c \
34253e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/gen/fnmatch.c \
343692207eb457f9b4bf6cb4301d710d19b6e85c902Elliott Hughes    upstream-openbsd/lib/libc/gen/ftok.c \
344692207eb457f9b4bf6cb4301d710d19b6e85c902Elliott Hughes    upstream-openbsd/lib/libc/gen/getprogname.c \
345f3c73901cb5ca4de2651151cf2c65b31a729466eElliott Hughes    upstream-openbsd/lib/libc/gen/isctype.c \
346692207eb457f9b4bf6cb4301d710d19b6e85c902Elliott Hughes    upstream-openbsd/lib/libc/gen/setprogname.c \
347cccfe1e17c47799deee67fa23f48d8c860390ac8Elliott Hughes    upstream-openbsd/lib/libc/gen/time.c \
34853e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/gen/tolower_.c \
349692207eb457f9b4bf6cb4301d710d19b6e85c902Elliott Hughes    upstream-openbsd/lib/libc/gen/toupper_.c \
350cc7e5f489f02ceee46e315af4f78559d3ad6c962Elliott Hughes    upstream-openbsd/lib/libc/gen/verr.c \
351cc7e5f489f02ceee46e315af4f78559d3ad6c962Elliott Hughes    upstream-openbsd/lib/libc/gen/verrx.c \
352cc7e5f489f02ceee46e315af4f78559d3ad6c962Elliott Hughes    upstream-openbsd/lib/libc/gen/vwarn.c \
353cc7e5f489f02ceee46e315af4f78559d3ad6c962Elliott Hughes    upstream-openbsd/lib/libc/gen/vwarnx.c \
354cc7e5f489f02ceee46e315af4f78559d3ad6c962Elliott Hughes    upstream-openbsd/lib/libc/gen/warn.c \
355cc7e5f489f02ceee46e315af4f78559d3ad6c962Elliott Hughes    upstream-openbsd/lib/libc/gen/warnx.c \
3563d7a0d9b08ecab054b2dff8332507644de3690b0Elliott Hughes    upstream-openbsd/lib/libc/locale/btowc.c \
3573d7a0d9b08ecab054b2dff8332507644de3690b0Elliott Hughes    upstream-openbsd/lib/libc/locale/mbrlen.c \
3583d7a0d9b08ecab054b2dff8332507644de3690b0Elliott Hughes    upstream-openbsd/lib/libc/locale/mbstowcs.c \
3590a5e26da1eae6b75a89695faf2e057c5c4717721Elliott Hughes    upstream-openbsd/lib/libc/locale/mbtowc.c \
360c8937eadf4a45afebe586dcea7a8ed882f3bec3bElliott Hughes    upstream-openbsd/lib/libc/locale/wcscoll.c \
3613d7a0d9b08ecab054b2dff8332507644de3690b0Elliott Hughes    upstream-openbsd/lib/libc/locale/wcstod.c \
3623d7a0d9b08ecab054b2dff8332507644de3690b0Elliott Hughes    upstream-openbsd/lib/libc/locale/wcstof.c \
36301ae00f3170ad0e36c1657f6ff8c89dfa730fd37Elliott Hughes    upstream-openbsd/lib/libc/locale/wcstoimax.c \
3643d7a0d9b08ecab054b2dff8332507644de3690b0Elliott Hughes    upstream-openbsd/lib/libc/locale/wcstol.c \
3653d7a0d9b08ecab054b2dff8332507644de3690b0Elliott Hughes    upstream-openbsd/lib/libc/locale/wcstold.c \
3663d7a0d9b08ecab054b2dff8332507644de3690b0Elliott Hughes    upstream-openbsd/lib/libc/locale/wcstoll.c \
3673d7a0d9b08ecab054b2dff8332507644de3690b0Elliott Hughes    upstream-openbsd/lib/libc/locale/wcstombs.c \
3683d7a0d9b08ecab054b2dff8332507644de3690b0Elliott Hughes    upstream-openbsd/lib/libc/locale/wcstoul.c \
3693d7a0d9b08ecab054b2dff8332507644de3690b0Elliott Hughes    upstream-openbsd/lib/libc/locale/wcstoull.c \
37001ae00f3170ad0e36c1657f6ff8c89dfa730fd37Elliott Hughes    upstream-openbsd/lib/libc/locale/wcstoumax.c \
371ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/locale/wcsxfrm.c \
3723d7a0d9b08ecab054b2dff8332507644de3690b0Elliott Hughes    upstream-openbsd/lib/libc/locale/wctob.c \
3735a0aa3dee247a313f04252cf45608097695d5953Elliott Hughes    upstream-openbsd/lib/libc/locale/wctomb.c \
3746a41b0fb0e589c4afc4ecbcf7c425f0aa40eaea4Elliott Hughes    upstream-openbsd/lib/libc/net/htonl.c \
3756a41b0fb0e589c4afc4ecbcf7c425f0aa40eaea4Elliott Hughes    upstream-openbsd/lib/libc/net/htons.c \
3766a41b0fb0e589c4afc4ecbcf7c425f0aa40eaea4Elliott Hughes    upstream-openbsd/lib/libc/net/inet_addr.c \
3776a41b0fb0e589c4afc4ecbcf7c425f0aa40eaea4Elliott Hughes    upstream-openbsd/lib/libc/net/inet_lnaof.c \
3786a41b0fb0e589c4afc4ecbcf7c425f0aa40eaea4Elliott Hughes    upstream-openbsd/lib/libc/net/inet_makeaddr.c \
3796a41b0fb0e589c4afc4ecbcf7c425f0aa40eaea4Elliott Hughes    upstream-openbsd/lib/libc/net/inet_netof.c \
3806a41b0fb0e589c4afc4ecbcf7c425f0aa40eaea4Elliott Hughes    upstream-openbsd/lib/libc/net/inet_network.c \
3816a41b0fb0e589c4afc4ecbcf7c425f0aa40eaea4Elliott Hughes    upstream-openbsd/lib/libc/net/inet_ntoa.c \
382f51d3e87671110c508f0f71d9bcb1bf54c22ca3bElliott Hughes    upstream-openbsd/lib/libc/net/inet_ntop.c \
3836a41b0fb0e589c4afc4ecbcf7c425f0aa40eaea4Elliott Hughes    upstream-openbsd/lib/libc/net/inet_pton.c \
3846a41b0fb0e589c4afc4ecbcf7c425f0aa40eaea4Elliott Hughes    upstream-openbsd/lib/libc/net/ntohl.c \
3856a41b0fb0e589c4afc4ecbcf7c425f0aa40eaea4Elliott Hughes    upstream-openbsd/lib/libc/net/ntohs.c \
386ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/asprintf.c \
387ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/clrerr.c \
388fcac8ff97f6b6cced6546e0096cadc1039b68b5eElliott Hughes    upstream-openbsd/lib/libc/stdio/dprintf.c \
3895a69da8d7af6a388a4ad5b3dd619017b0030031aElliott Hughes    upstream-openbsd/lib/libc/stdio/fclose.c \
390ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/fdopen.c \
391ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/feof.c \
39253e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/stdio/ferror.c \
39353e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/stdio/fflush.c \
394ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/fgetc.c \
395ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/fgetln.c \
396ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/fgetpos.c \
397ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/fgets.c \
39801ae00f3170ad0e36c1657f6ff8c89dfa730fd37Elliott Hughes    upstream-openbsd/lib/libc/stdio/fgetwc.c \
399c932225e1061dc57fc4bf2d6203d9737f4f989faElliott Hughes    upstream-openbsd/lib/libc/stdio/fgetws.c \
400ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/fileno.c \
401623b0d05bd924e7fa3c155492695123c87c3a2b1Dmitriy Ivanov    upstream-openbsd/lib/libc/stdio/findfp.c \
402a71b4c3f144a516826e8ac5b262099b920c49ce0Elliott Hughes    upstream-openbsd/lib/libc/stdio/flags.c \
4036b841db2baa24ffcf2a4e5f975d1d07f1699b918Elliott Hughes    upstream-openbsd/lib/libc/stdio/fmemopen.c \
4045a69da8d7af6a388a4ad5b3dd619017b0030031aElliott Hughes    upstream-openbsd/lib/libc/stdio/fopen.c \
405ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/fprintf.c \
40653e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/stdio/fpurge.c \
407ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/fputc.c \
40853e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/stdio/fputs.c \
409c932225e1061dc57fc4bf2d6203d9737f4f989faElliott Hughes    upstream-openbsd/lib/libc/stdio/fputwc.c \
410c932225e1061dc57fc4bf2d6203d9737f4f989faElliott Hughes    upstream-openbsd/lib/libc/stdio/fputws.c \
4119d3c2dd11f5e796cd814cddc5b907494f859058eElliott Hughes    upstream-openbsd/lib/libc/stdio/fread.c \
412ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/freopen.c \
413ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/fscanf.c \
41453e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/stdio/fseek.c \
415ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/fsetpos.c \
416ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/ftell.c \
417ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/funopen.c \
4189d3c2dd11f5e796cd814cddc5b907494f859058eElliott Hughes    upstream-openbsd/lib/libc/stdio/fvwrite.c \
419ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/fwalk.c \
420c932225e1061dc57fc4bf2d6203d9737f4f989faElliott Hughes    upstream-openbsd/lib/libc/stdio/fwide.c \
42194336d8ecf795cfdde874a1e15977d68cfc7afc1Elliott Hughes    upstream-openbsd/lib/libc/stdio/fwprintf.c \
422792ae72e41923800ba8797d87a76346cb2de14b9Elliott Hughes    upstream-openbsd/lib/libc/stdio/fwrite.c \
42301ae00f3170ad0e36c1657f6ff8c89dfa730fd37Elliott Hughes    upstream-openbsd/lib/libc/stdio/fwscanf.c \
424ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/getc.c \
425ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/getchar.c \
426ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/getdelim.c \
42753e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/stdio/getline.c \
42853e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/stdio/gets.c \
429c932225e1061dc57fc4bf2d6203d9737f4f989faElliott Hughes    upstream-openbsd/lib/libc/stdio/getwc.c \
430c932225e1061dc57fc4bf2d6203d9737f4f989faElliott Hughes    upstream-openbsd/lib/libc/stdio/getwchar.c \
431623b0d05bd924e7fa3c155492695123c87c3a2b1Dmitriy Ivanov    upstream-openbsd/lib/libc/stdio/makebuf.c \
43265935979311373f2c7fa27cbfc189f49b188ca3aElliott Hughes    upstream-openbsd/lib/libc/stdio/mktemp.c \
4336b841db2baa24ffcf2a4e5f975d1d07f1699b918Elliott Hughes    upstream-openbsd/lib/libc/stdio/open_memstream.c \
4346b841db2baa24ffcf2a4e5f975d1d07f1699b918Elliott Hughes    upstream-openbsd/lib/libc/stdio/open_wmemstream.c \
435ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/perror.c \
436ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/printf.c \
43753e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/stdio/putc.c \
438ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/putchar.c \
439ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/puts.c \
440c932225e1061dc57fc4bf2d6203d9737f4f989faElliott Hughes    upstream-openbsd/lib/libc/stdio/putwc.c \
441c932225e1061dc57fc4bf2d6203d9737f4f989faElliott Hughes    upstream-openbsd/lib/libc/stdio/putwchar.c \
442ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/refill.c \
443ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/remove.c \
444ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/rewind.c \
44553e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/stdio/rget.c \
44653e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/stdio/scanf.c \
447ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/setbuf.c \
448ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/setbuffer.c \
449623b0d05bd924e7fa3c155492695123c87c3a2b1Dmitriy Ivanov    upstream-openbsd/lib/libc/stdio/setvbuf.c \
450603332fc4c2d073f0e197f9ce4517710e9b3a6d0Elliott Hughes    upstream-openbsd/lib/libc/stdio/sscanf.c \
451ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/stdio.c \
45294336d8ecf795cfdde874a1e15977d68cfc7afc1Elliott Hughes    upstream-openbsd/lib/libc/stdio/swprintf.c \
45301ae00f3170ad0e36c1657f6ff8c89dfa730fd37Elliott Hughes    upstream-openbsd/lib/libc/stdio/swscanf.c \
454ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/tempnam.c \
455ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/tmpnam.c \
456ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/ungetc.c \
45701ae00f3170ad0e36c1657f6ff8c89dfa730fd37Elliott Hughes    upstream-openbsd/lib/libc/stdio/ungetwc.c \
458ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/vasprintf.c \
459fcac8ff97f6b6cced6546e0096cadc1039b68b5eElliott Hughes    upstream-openbsd/lib/libc/stdio/vdprintf.c \
4600549371bd74ba7c7a5a16c2a7d6cc17dbe0e6f97Elliott Hughes    upstream-openbsd/lib/libc/stdio/vfprintf.c \
461603332fc4c2d073f0e197f9ce4517710e9b3a6d0Elliott Hughes    upstream-openbsd/lib/libc/stdio/vfscanf.c \
46294336d8ecf795cfdde874a1e15977d68cfc7afc1Elliott Hughes    upstream-openbsd/lib/libc/stdio/vfwprintf.c \
46301ae00f3170ad0e36c1657f6ff8c89dfa730fd37Elliott Hughes    upstream-openbsd/lib/libc/stdio/vfwscanf.c \
464ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/vprintf.c \
465ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/vscanf.c \
466ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/vsnprintf.c \
467ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/vsprintf.c \
468603332fc4c2d073f0e197f9ce4517710e9b3a6d0Elliott Hughes    upstream-openbsd/lib/libc/stdio/vsscanf.c \
46994336d8ecf795cfdde874a1e15977d68cfc7afc1Elliott Hughes    upstream-openbsd/lib/libc/stdio/vswprintf.c \
47001ae00f3170ad0e36c1657f6ff8c89dfa730fd37Elliott Hughes    upstream-openbsd/lib/libc/stdio/vswscanf.c \
47194336d8ecf795cfdde874a1e15977d68cfc7afc1Elliott Hughes    upstream-openbsd/lib/libc/stdio/vwprintf.c \
47201ae00f3170ad0e36c1657f6ff8c89dfa730fd37Elliott Hughes    upstream-openbsd/lib/libc/stdio/vwscanf.c \
473ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdio/wbuf.c \
47494336d8ecf795cfdde874a1e15977d68cfc7afc1Elliott Hughes    upstream-openbsd/lib/libc/stdio/wprintf.c \
47501ae00f3170ad0e36c1657f6ff8c89dfa730fd37Elliott Hughes    upstream-openbsd/lib/libc/stdio/wscanf.c \
47653b24382f5299931af5d08c933a765334a092c56Elliott Hughes    upstream-openbsd/lib/libc/stdio/wsetup.c \
47753c3c271dc9927dd280981fc23409af60f460007Dmitriy Ivanov    upstream-openbsd/lib/libc/stdlib/atexit.c \
47853e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/stdlib/atoi.c \
47953e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/stdlib/atol.c \
480ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdlib/atoll.c \
481623b0d05bd924e7fa3c155492695123c87c3a2b1Dmitriy Ivanov    upstream-openbsd/lib/libc/stdlib/exit.c \
48258d9e280d459225aa8dc4533e883182b08215f7dElliott Hughes    upstream-openbsd/lib/libc/stdlib/getenv.c \
48349eed7db79bd2664a2a13552ad81d445c93ba462Elliott Hughes    upstream-openbsd/lib/libc/stdlib/insque.c \
4843e424d0a241f8ae5194514dabc4ad899f5a5416dElliott Hughes    upstream-openbsd/lib/libc/stdlib/lsearch.c \
48549eed7db79bd2664a2a13552ad81d445c93ba462Elliott Hughes    upstream-openbsd/lib/libc/stdlib/remque.c \
48658d9e280d459225aa8dc4533e883182b08215f7dElliott Hughes    upstream-openbsd/lib/libc/stdlib/setenv.c \
48753e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/stdlib/strtoimax.c \
48853e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes    upstream-openbsd/lib/libc/stdlib/strtol.c \
489ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdlib/strtoll.c \
490ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdlib/strtoul.c \
491ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdlib/strtoull.c \
492ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/stdlib/strtoumax.c \
4931e4378ea06d06f57027a97714f076ad4f417a705Elliott Hughes    upstream-openbsd/lib/libc/stdlib/system.c \
4943e424d0a241f8ae5194514dabc4ad899f5a5416dElliott Hughes    upstream-openbsd/lib/libc/stdlib/tfind.c \
4953e424d0a241f8ae5194514dabc4ad899f5a5416dElliott Hughes    upstream-openbsd/lib/libc/stdlib/tsearch.c \
496ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/string/strcasecmp.c \
497ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/string/strcspn.c \
498ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/string/strdup.c \
499ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/string/strndup.c \
500ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/string/strpbrk.c \
501ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/string/strsep.c \
502ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/string/strspn.c \
503ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/string/strstr.c \
504ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/string/strtok.c \
505ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/string/wcslcpy.c \
506d299bcfdad959a3a0adf1683605b15a1c3b3ab66Elliott Hughes    upstream-openbsd/lib/libc/string/wcsstr.c \
507ad41e9a4eb957ea318bbc93dd49dbe76b89df1e9Elliott Hughes    upstream-openbsd/lib/libc/string/wcswidth.c \
50853e43292aac91bf62995788cd5ca2ceb7caea283Elliott Hughes
509f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wanglibc_arch_static_src_files := \
510f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    bionic/dl_iterate_phdr_static.cpp \
5117c83a1ed81a15f3e75836c1ac7d500a952f02e10Christopher Ferris
512ca122b0e34df0e8c485be0d3ab1b80f728b76276Dima Zavin# Define some common cflags
513ca122b0e34df0e8c485be0d3ab1b80f728b76276Dima Zavin# ========================================================
5141dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Projectlibc_common_cflags := \
515470631ed79538ce912edb94505dee3e24af8db89Elliott Hughes    -D_LIBC=1 \
516d286796fce1e6fff407b719a53eb2afbeb96c327Elliott Hughes    -Wall -Wextra -Wunused \
5172ec400bfc7d1605b68ae3f5501add7bf2647b9ddElliott Hughes
518dda1c6c466c4f31de31d76c8be7e46c16b4b4209Christopher Ferrisifneq ($(TARGET_USES_LOGD),false)
519dda1c6c466c4f31de31d76c8be7e46c16b4b4209Christopher Ferrislibc_common_cflags += -DTARGET_USES_LOGD
520dda1c6c466c4f31de31d76c8be7e46c16b4b4209Christopher Ferrisendif
521dda1c6c466c4f31de31d76c8be7e46c16b4b4209Christopher Ferris
522b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsiehuse_clang := $(USE_CLANG_PLATFORM_BUILD)
523b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsiehifeq ($(use_clang),)
524b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsieh  use_clang := false
525b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsiehendif
526c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott Hughes
5272ec400bfc7d1605b68ae3f5501add7bf2647b9ddElliott Hughes# Try to catch typical 32-bit assumptions that break with 64-bit pointers.
5282ec400bfc7d1605b68ae3f5501add7bf2647b9ddElliott Hugheslibc_common_cflags += \
5292ec400bfc7d1605b68ae3f5501add7bf2647b9ddElliott Hughes    -Werror=pointer-to-int-cast \
5302ec400bfc7d1605b68ae3f5501add7bf2647b9ddElliott Hughes    -Werror=int-to-pointer-cast \
5312ec400bfc7d1605b68ae3f5501add7bf2647b9ddElliott Hughes    -Werror=type-limits \
53265935979311373f2c7fa27cbfc189f49b188ca3aElliott Hughes    -Werror \
5331dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
534d2c9dcc9265e66f6432ec39dcc7378b944449e60Dave Bortifeq ($(strip $(DEBUG_BIONIC_LIBC)),true)
5351dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project  libc_common_cflags += -DDEBUG
5361dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Projectendif
5371dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
5388e32b7b3543eadbb58a92443fb57d60aac92ef88Christopher Ferrisifeq ($(MALLOC_IMPL),dlmalloc)
53972bbd423579bb971dc06cdd3c06201faf3fe95e6Christopher Ferris  libc_common_cflags += -DUSE_DLMALLOC
5408d2410d33d2c4eba6319664c965a750d863c7e05Christopher Ferris  libc_malloc_src := bionic/dlmalloc.c
5418e32b7b3543eadbb58a92443fb57d60aac92ef88Christopher Ferriselse
5428e32b7b3543eadbb58a92443fb57d60aac92ef88Christopher Ferris  libc_common_cflags += -DUSE_JEMALLOC
5438e32b7b3543eadbb58a92443fb57d60aac92ef88Christopher Ferris  libc_malloc_src := bionic/jemalloc_wrapper.cpp
5448e32b7b3543eadbb58a92443fb57d60aac92ef88Christopher Ferris  libc_common_c_includes += external/jemalloc/include
54572bbd423579bb971dc06cdd3c06201faf3fe95e6Christopher Ferrisendif
54672bbd423579bb971dc06cdd3c06201faf3fe95e6Christopher Ferris
5472fd81ef71c10aecf6583facdd79f8f60f3eed678Jack Ren# To customize dlmalloc's alignment, set BOARD_MALLOC_ALIGNMENT in
5482fd81ef71c10aecf6583facdd79f8f60f3eed678Jack Ren# the appropriate BoardConfig.mk file.
5492fd81ef71c10aecf6583facdd79f8f60f3eed678Jack Ren#
5502fd81ef71c10aecf6583facdd79f8f60f3eed678Jack Renifneq ($(BOARD_MALLOC_ALIGNMENT),)
5512fd81ef71c10aecf6583facdd79f8f60f3eed678Jack Ren  libc_common_cflags += -DMALLOC_ALIGNMENT=$(BOARD_MALLOC_ALIGNMENT)
5522fd81ef71c10aecf6583facdd79f8f60f3eed678Jack Renendif
5532fd81ef71c10aecf6583facdd79f8f60f3eed678Jack Ren
554fcd00ebbdf3e7f4e1e7782a65ae10fb0fc03a1aaAndy McFadden# Define ANDROID_SMP appropriately.
555fcd00ebbdf3e7f4e1e7782a65ae10fb0fc03a1aaAndy McFaddenifeq ($(TARGET_CPU_SMP),true)
556fcd00ebbdf3e7f4e1e7782a65ae10fb0fc03a1aaAndy McFadden    libc_common_cflags += -DANDROID_SMP=1
557fcd00ebbdf3e7f4e1e7782a65ae10fb0fc03a1aaAndy McFaddenelse
558fcd00ebbdf3e7f4e1e7782a65ae10fb0fc03a1aaAndy McFadden    libc_common_cflags += -DANDROID_SMP=0
559fcd00ebbdf3e7f4e1e7782a65ae10fb0fc03a1aaAndy McFaddenendif
560fcd00ebbdf3e7f4e1e7782a65ae10fb0fc03a1aaAndy McFadden
561762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen Hines# Define some common conlyflags
562762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen Hineslibc_common_conlyflags := \
563762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen Hines    -std=gnu99
564762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen Hines
565762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen Hines# Define some common cppflags
566762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen Hineslibc_common_cppflags := \
567762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen Hines    -std=gnu++11
568762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen Hines
569ca122b0e34df0e8c485be0d3ab1b80f728b76276Dima Zavin# Define some common includes
570ca122b0e34df0e8c485be0d3ab1b80f728b76276Dima Zavin# ========================================================
5718e32b7b3543eadbb58a92443fb57d60aac92ef88Christopher Ferrislibc_common_c_includes += \
57276c8b882690dd9025caa625a023996c136377cb1Ying Wang    $(LOCAL_PATH)/stdio   \
5731dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
574f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang# ========================================================
575f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang# Add in the arch-specific flags.
576f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang# Must be called with $(eval).
577f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang# $(1): the LOCAL_ variable name
578f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang# $(2): the bionic variable name to pull in
579f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wangdefine patch-up-arch-specific-flags
580f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(1)_$(TARGET_ARCH) += $($(2)_$(TARGET_ARCH))
581f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wangifdef TARGET_2ND_ARCH
582f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(1)_$(TARGET_2ND_ARCH) += $($(2)_$(TARGET_2ND_ARCH))
583a4c7933b49f1d43579f184167e79a5fb237bd206Raghu Gandhamendif
584f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wangendef
585f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang
5861dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
587ca122b0e34df0e8c485be0d3ab1b80f728b76276Dima Zavin# ========================================================
5886380b51a8d775a3b572b2db15195f279cb5565f6Elliott Hughes# libc_stack_protector.a - stack protector code
5896334c662cae4cd9b61f5f3185048b0cd3633dad7Nick Kralevich# ========================================================
5906334c662cae4cd9b61f5f3185048b0cd3633dad7Nick Kralevich#
5916334c662cae4cd9b61f5f3185048b0cd3633dad7Nick Kralevich# The stack protector code needs to be compiled
5926334c662cae4cd9b61f5f3185048b0cd3633dad7Nick Kralevich# with -fno-stack-protector, since it modifies the
5936334c662cae4cd9b61f5f3185048b0cd3633dad7Nick Kralevich# stack canary.
5946334c662cae4cd9b61f5f3185048b0cd3633dad7Nick Kralevich
5956334c662cae4cd9b61f5f3185048b0cd3633dad7Nick Kralevichinclude $(CLEAR_VARS)
5966334c662cae4cd9b61f5f3185048b0cd3633dad7Nick Kralevich
597642331b5dd5647e7d196ac4f44406fd435478a56Elliott HughesLOCAL_SRC_FILES := bionic/__stack_chk_fail.cpp
59865935979311373f2c7fa27cbfc189f49b188ca3aElliott HughesLOCAL_CFLAGS := $(libc_common_cflags) -fno-stack-protector
599762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CONLYFLAGS := $(libc_common_conlyflags)
600762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CPPFLAGS := $(libc_common_cppflags)
6016334c662cae4cd9b61f5f3185048b0cd3633dad7Nick KralevichLOCAL_C_INCLUDES := $(libc_common_c_includes)
6026380b51a8d775a3b572b2db15195f279cb5565f6Elliott HughesLOCAL_MODULE := libc_stack_protector
603c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_CLANG := $(use_clang)
604d7a632948d5b3128cc536a2c4db3124b4fa57a80Christopher FerrisLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
6053ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
6066334c662cae4cd9b61f5f3185048b0cd3633dad7Nick KralevichLOCAL_SYSTEM_SHARED_LIBRARIES :=
607c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
6086334c662cae4cd9b61f5f3185048b0cd3633dad7Nick Kralevich
609f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
6106334c662cae4cd9b61f5f3185048b0cd3633dad7Nick Kralevichinclude $(BUILD_STATIC_LIBRARY)
6116334c662cae4cd9b61f5f3185048b0cd3633dad7Nick Kralevich
6126334c662cae4cd9b61f5f3185048b0cd3633dad7Nick Kralevich
6136334c662cae4cd9b61f5f3185048b0cd3633dad7Nick Kralevich# ========================================================
614ce4783ce76a4ef888466e02e4c6f3a0a3910bce8Elliott Hughes# libc_tzcode.a - upstream 'tzcode' code
615ce4783ce76a4ef888466e02e4c6f3a0a3910bce8Elliott Hughes# ========================================================
616ce4783ce76a4ef888466e02e4c6f3a0a3910bce8Elliott Hughes
617ce4783ce76a4ef888466e02e4c6f3a0a3910bce8Elliott Hughesinclude $(CLEAR_VARS)
618ce4783ce76a4ef888466e02e4c6f3a0a3910bce8Elliott Hughes
6191fbe6213cdd9fda7e7b816e608b887ad8a0ad265Elliott HughesLOCAL_SRC_FILES := $(call all-c-files-under,tzcode)
620efaa461bd67cfdfcbc2b4c6b69805bc5b929ae05Elliott Hughes# tzcode doesn't include wcsftime, so we use the OpenBSD one.
621efaa461bd67cfdfcbc2b4c6b69805bc5b929ae05Elliott HughesLOCAL_SRC_FILES += upstream-openbsd/lib/libc/time/wcsftime.c
622329103d3e2f42d3e35a060c3e0d326d6476eb2efElliott Hughes
623d10db8261949e4d84b65f5c369153d0ca86ab22cElliott HughesLOCAL_CFLAGS := $(libc_common_cflags) \
624d10db8261949e4d84b65f5c369153d0ca86ab22cElliott Hughes    -fvisibility=hidden \
625d10db8261949e4d84b65f5c369153d0ca86ab22cElliott Hughes
626329103d3e2f42d3e35a060c3e0d326d6476eb2efElliott Hughes# Don't use ridiculous amounts of stack.
627329103d3e2f42d3e35a060c3e0d326d6476eb2efElliott HughesLOCAL_CFLAGS += -DALL_STATE
628329103d3e2f42d3e35a060c3e0d326d6476eb2efElliott Hughes# Include tzsetwall, timelocal, timegm, time2posix, and posix2time.
629329103d3e2f42d3e35a060c3e0d326d6476eb2efElliott HughesLOCAL_CFLAGS += -DSTD_INSPIRED
630329103d3e2f42d3e35a060c3e0d326d6476eb2efElliott Hughes# The name of the tm_gmtoff field in our struct tm.
631329103d3e2f42d3e35a060c3e0d326d6476eb2efElliott HughesLOCAL_CFLAGS += -DTM_GMTOFF=tm_gmtoff
632329103d3e2f42d3e35a060c3e0d326d6476eb2efElliott Hughes# Where we store our tzdata.
633329103d3e2f42d3e35a060c3e0d326d6476eb2efElliott HughesLOCAL_CFLAGS += -DTZDIR=\"/system/usr/share/zoneinfo\"
634329103d3e2f42d3e35a060c3e0d326d6476eb2efElliott Hughes# Include timezone and daylight globals.
635329103d3e2f42d3e35a060c3e0d326d6476eb2efElliott HughesLOCAL_CFLAGS += -DUSG_COMPAT=1
6369a5a3e8e74e2c6d7850ab29711189acf0f7378a2Elliott HughesLOCAL_CFLAGS += -DNO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU
637d10db8261949e4d84b65f5c369153d0ca86ab22cElliott HughesLOCAL_CFLAGS += -Dlint
638329103d3e2f42d3e35a060c3e0d326d6476eb2efElliott Hughes
639762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CONLYFLAGS := $(libc_common_conlyflags)
640762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CPPFLAGS := $(libc_common_cppflags)
641efaa461bd67cfdfcbc2b4c6b69805bc5b929ae05Elliott HughesLOCAL_C_INCLUDES := $(libc_common_c_includes) $(LOCAL_PATH)/tzcode/
642ce4783ce76a4ef888466e02e4c6f3a0a3910bce8Elliott HughesLOCAL_MODULE := libc_tzcode
643c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_CLANG := $(use_clang)
644d7a632948d5b3128cc536a2c4db3124b4fa57a80Christopher FerrisLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
6453ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
646ce4783ce76a4ef888466e02e4c6f3a0a3910bce8Elliott HughesLOCAL_SYSTEM_SHARED_LIBRARIES :=
647c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
648ce4783ce76a4ef888466e02e4c6f3a0a3910bce8Elliott Hughes
649f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
650ce4783ce76a4ef888466e02e4c6f3a0a3910bce8Elliott Hughesinclude $(BUILD_STATIC_LIBRARY)
651ce4783ce76a4ef888466e02e4c6f3a0a3910bce8Elliott Hughes
652ce4783ce76a4ef888466e02e4c6f3a0a3910bce8Elliott Hughes
653ce4783ce76a4ef888466e02e4c6f3a0a3910bce8Elliott Hughes# ========================================================
654eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughes# libc_dns.a - modified NetBSD DNS code
655eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughes# ========================================================
656eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughes
657eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughesinclude $(CLEAR_VARS)
658eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughes
6598563802b04347951d8878747a830987e5ca145f5Elliott HughesLOCAL_SRC_FILES := \
6608563802b04347951d8878747a830987e5ca145f5Elliott Hughes    $(call all-c-files-under,dns) \
6618563802b04347951d8878747a830987e5ca145f5Elliott Hughes    upstream-netbsd/lib/libc/isc/ev_streams.c \
6628563802b04347951d8878747a830987e5ca145f5Elliott Hughes    upstream-netbsd/lib/libc/isc/ev_timers.c \
663891ec7a6e46e60d7dfa1cf229e14a8e8634e272bDan Albert    upstream-netbsd/lib/libc/resolv/mtctxres.c \
6648563802b04347951d8878747a830987e5ca145f5Elliott Hughes
6650f7d882bb7661f9601f3843b0e393b6155cd9571Elliott Hughes# We use the OpenBSD res_random.
6660f7d882bb7661f9601f3843b0e393b6155cd9571Elliott HughesLOCAL_CFLAGS += \
6670f7d882bb7661f9601f3843b0e393b6155cd9571Elliott Hughes    -Dres_randomid=__res_randomid
6680f7d882bb7661f9601f3843b0e393b6155cd9571Elliott HughesLOCAL_SRC_FILES += \
6690f7d882bb7661f9601f3843b0e393b6155cd9571Elliott Hughes    upstream-openbsd/lib/libc/net/res_random.c \
6700f7d882bb7661f9601f3843b0e393b6155cd9571Elliott Hughes
6710f7d882bb7661f9601f3843b0e393b6155cd9571Elliott HughesLOCAL_CFLAGS += \
672eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughes    $(libc_common_cflags) \
673205c7887add8b8c85434c35158138f16265beb28Elliott Hughes    -DANDROID_CHANGES \
674eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughes    -DINET6 \
6758563802b04347951d8878747a830987e5ca145f5Elliott Hughes    -fvisibility=hidden \
67665935979311373f2c7fa27cbfc189f49b188ca3aElliott Hughes    -Wno-unused-parameter \
677cecc036970fba8b319cca302768865677f2be094Calin Juravle    -I$(LOCAL_PATH)/dns/include \
678eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughes    -I$(LOCAL_PATH)/private \
679fcb502e3ec032497bba7f8634fb214e0c05394d8Calin Juravle    -I$(LOCAL_PATH)/upstream-netbsd/lib/libc/include \
6808563802b04347951d8878747a830987e5ca145f5Elliott Hughes    -I$(LOCAL_PATH)/upstream-netbsd/android/include \
6818563802b04347951d8878747a830987e5ca145f5Elliott Hughes    -include netbsd-compat.h \
6824c2da039baa6c621c78afa47ead85ec9e028f56dElliott Hughes
683eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott HughesLOCAL_CONLYFLAGS := $(libc_common_conlyflags)
684eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott HughesLOCAL_CPPFLAGS := $(libc_common_cppflags)
685eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott HughesLOCAL_C_INCLUDES := $(libc_common_c_includes)
686eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott HughesLOCAL_MODULE := libc_dns
687c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_CLANG := $(use_clang)
688eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott HughesLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
6893ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
690eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott HughesLOCAL_SYSTEM_SHARED_LIBRARIES :=
691c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
692eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughes
693f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
694eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughesinclude $(BUILD_STATIC_LIBRARY)
695eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughes
696eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughes
697eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughes# ========================================================
698f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hughes# libc_freebsd.a - upstream FreeBSD C library code
699f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hughes# ========================================================
700f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hughes#
701f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hughes# These files are built with the freebsd-compat.h header file
702f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hughes# automatically included.
703f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hughes
704f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hughesinclude $(CLEAR_VARS)
705f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hughes
706f0777843c03deb26b1f78c8edd17c557041696e9Elliott HughesLOCAL_SRC_FILES := $(libc_upstream_freebsd_src_files)
707f0777843c03deb26b1f78c8edd17c557041696e9Elliott HughesLOCAL_CFLAGS := \
708f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hughes    $(libc_common_cflags) \
7099a5a3e8e74e2c6d7850ab29711189acf0f7378a2Elliott Hughes    -Wno-sign-compare -Wno-uninitialized \
710d39f3f2c2e7fc73ddb019695f0df3417deef5bf4Elliott Hughes    -I$(LOCAL_PATH)/upstream-freebsd/android/include \
71102c78a386739a8a2b3007efeb00a9ca04132100aElliott Hughes    -I$(LOCAL_PATH)/upstream-freebsd/lib/libc/include \
7124c2da039baa6c621c78afa47ead85ec9e028f56dElliott Hughes    -include freebsd-compat.h \
7134c2da039baa6c621c78afa47ead85ec9e028f56dElliott Hughes
714762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CONLYFLAGS := $(libc_common_conlyflags)
715762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CPPFLAGS := $(libc_common_cppflags)
716f0777843c03deb26b1f78c8edd17c557041696e9Elliott HughesLOCAL_C_INCLUDES := $(libc_common_c_includes)
717f0777843c03deb26b1f78c8edd17c557041696e9Elliott HughesLOCAL_MODULE := libc_freebsd
718c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_CLANG := $(use_clang)
719d7a632948d5b3128cc536a2c4db3124b4fa57a80Christopher FerrisLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
7203ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
721f0777843c03deb26b1f78c8edd17c557041696e9Elliott HughesLOCAL_SYSTEM_SHARED_LIBRARIES :=
722c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
723f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hughes
724f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
7257c02d9428ca18ac600f7ba7d51bb24ca71e733f6Elliott Hughes$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_freebsd_src_files))
726f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hughesinclude $(BUILD_STATIC_LIBRARY)
727f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hughes
728f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hughes
729f0777843c03deb26b1f78c8edd17c557041696e9Elliott Hughes# ========================================================
730f8b3a920a895a53b207017249080087d562bd0d2Elliott Hughes# libc_netbsd.a - upstream NetBSD C library code
731f8b3a920a895a53b207017249080087d562bd0d2Elliott Hughes# ========================================================
732f8b3a920a895a53b207017249080087d562bd0d2Elliott Hughes#
733f8b3a920a895a53b207017249080087d562bd0d2Elliott Hughes# These files are built with the netbsd-compat.h header file
734f8b3a920a895a53b207017249080087d562bd0d2Elliott Hughes# automatically included.
735f8b3a920a895a53b207017249080087d562bd0d2Elliott Hughes
736f8b3a920a895a53b207017249080087d562bd0d2Elliott Hughesinclude $(CLEAR_VARS)
737f8b3a920a895a53b207017249080087d562bd0d2Elliott Hughes
738f8b3a920a895a53b207017249080087d562bd0d2Elliott HughesLOCAL_SRC_FILES := $(libc_upstream_netbsd_src_files)
739f8b3a920a895a53b207017249080087d562bd0d2Elliott HughesLOCAL_CFLAGS := \
740f8b3a920a895a53b207017249080087d562bd0d2Elliott Hughes    $(libc_common_cflags) \
7419a5a3e8e74e2c6d7850ab29711189acf0f7378a2Elliott Hughes    -Wno-sign-compare -Wno-uninitialized \
742eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughes    -DPOSIX_MISTAKE \
743d39f3f2c2e7fc73ddb019695f0df3417deef5bf4Elliott Hughes    -I$(LOCAL_PATH)/upstream-netbsd/android/include \
744677b6e605be95f434602f19a627ea0dea2927ccdElliott Hughes    -I$(LOCAL_PATH)/upstream-netbsd/lib/libc/include \
7454c2da039baa6c621c78afa47ead85ec9e028f56dElliott Hughes    -include netbsd-compat.h \
7464c2da039baa6c621c78afa47ead85ec9e028f56dElliott Hughes
747762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CONLYFLAGS := $(libc_common_conlyflags)
748762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CPPFLAGS := $(libc_common_cppflags)
749f8b3a920a895a53b207017249080087d562bd0d2Elliott HughesLOCAL_C_INCLUDES := $(libc_common_c_includes)
750f8b3a920a895a53b207017249080087d562bd0d2Elliott HughesLOCAL_MODULE := libc_netbsd
751c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_CLANG := $(use_clang)
752d7a632948d5b3128cc536a2c4db3124b4fa57a80Christopher FerrisLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
7533ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
754f8b3a920a895a53b207017249080087d562bd0d2Elliott HughesLOCAL_SYSTEM_SHARED_LIBRARIES :=
755c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
756f8b3a920a895a53b207017249080087d562bd0d2Elliott Hughes
757f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
758c82c0b7e072491da4818e7de37411fbb2055fce1Dan Albert$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_netbsd_src_files))
759f8b3a920a895a53b207017249080087d562bd0d2Elliott Hughesinclude $(BUILD_STATIC_LIBRARY)
760f8b3a920a895a53b207017249080087d562bd0d2Elliott Hughes
761f8b3a920a895a53b207017249080087d562bd0d2Elliott Hughes
762f8b3a920a895a53b207017249080087d562bd0d2Elliott Hughes# ========================================================
7630133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughes# libc_openbsd.a - upstream OpenBSD C library code
7640133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughes# ========================================================
7650133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughes#
7660133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughes# These files are built with the openbsd-compat.h header file
7670133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughes# automatically included.
7680133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughes
7690133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughesinclude $(CLEAR_VARS)
7700133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughes
77153e43292aac91bf62995788cd5ca2ceb7caea283Elliott HughesLOCAL_SRC_FILES := $(libc_upstream_openbsd_src_files)
772b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsiehifneq (,$(filter $(TARGET_ARCH),x86 x86_64))
773b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsieh  # Clang has wrong long double size or LDBL_MANT_DIG, http://b/17163651.
774b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsieh  LOCAL_CLANG := false
775b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsiehelse
776b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsieh  LOCAL_CLANG := $(use_clang)
777b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsiehendif
778b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsieh
7790133944b09d1c0a35041f7a41eb6bfb660144f4fElliott HughesLOCAL_CFLAGS := \
7800133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughes    $(libc_common_cflags) \
781c08c25b4c9bdd95bfbda56a8c21f51b88c8a692eElliott Hughes    -Wno-missing-field-initializers \
782c08c25b4c9bdd95bfbda56a8c21f51b88c8a692eElliott Hughes    -Wno-sign-compare \
783c08c25b4c9bdd95bfbda56a8c21f51b88c8a692eElliott Hughes    -Wno-uninitialized \
784c08c25b4c9bdd95bfbda56a8c21f51b88c8a692eElliott Hughes    -Wno-unused-parameter \
78553c3c271dc9927dd280981fc23409af60f460007Dmitriy Ivanov    -I$(LOCAL_PATH)/private \
786d39f3f2c2e7fc73ddb019695f0df3417deef5bf4Elliott Hughes    -I$(LOCAL_PATH)/upstream-openbsd/android/include \
7870133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughes    -I$(LOCAL_PATH)/upstream-openbsd/lib/libc/include \
788f1ada79a83f6ac42f5efd995bf04374005ac532bElliott Hughes    -I$(LOCAL_PATH)/upstream-openbsd/lib/libc/gdtoa/ \
7894c2da039baa6c621c78afa47ead85ec9e028f56dElliott Hughes    -include openbsd-compat.h \
7904c2da039baa6c621c78afa47ead85ec9e028f56dElliott Hughes
7910133944b09d1c0a35041f7a41eb6bfb660144f4fElliott HughesLOCAL_CONLYFLAGS := $(libc_common_conlyflags)
7920133944b09d1c0a35041f7a41eb6bfb660144f4fElliott HughesLOCAL_CPPFLAGS := $(libc_common_cppflags)
7930133944b09d1c0a35041f7a41eb6bfb660144f4fElliott HughesLOCAL_C_INCLUDES := $(libc_common_c_includes)
7940133944b09d1c0a35041f7a41eb6bfb660144f4fElliott HughesLOCAL_MODULE := libc_openbsd
7950133944b09d1c0a35041f7a41eb6bfb660144f4fElliott HughesLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
7963ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
7970133944b09d1c0a35041f7a41eb6bfb660144f4fElliott HughesLOCAL_SYSTEM_SHARED_LIBRARIES :=
798c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
7990133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughes
8000133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughes$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
8017c02d9428ca18ac600f7ba7d51bb24ca71e733f6Elliott Hughes$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_openbsd_src_files))
8020133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughesinclude $(BUILD_STATIC_LIBRARY)
8030133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughes
8040133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughes
8050133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughes# ========================================================
8064bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes# libc_gdtoa.a - upstream OpenBSD C library gdtoa code
8074bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes# ========================================================
8084bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes#
8094bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes# These files are built with the openbsd-compat.h header file
8104bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes# automatically included.
8114bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes
8124bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughesinclude $(CLEAR_VARS)
8134bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes
8144bd97cee28dd815fff54fc97560be60d566c1fa5Elliott HughesLOCAL_SRC_FILES_32 := $(libc_upstream_openbsd_gdtoa_src_files_32)
8154bd97cee28dd815fff54fc97560be60d566c1fa5Elliott HughesLOCAL_SRC_FILES_64 := $(libc_upstream_openbsd_gdtoa_src_files_64)
816b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsiehifneq (,$(filter $(TARGET_ARCH),x86 x86_64))
817b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsieh  # Clang has wrong long double size or LDBL_MANT_DIG, http://b/17163651.
818b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsieh  LOCAL_CLANG := false
819b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsiehelse
820b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsieh  LOCAL_CLANG := $(use_clang)
821b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsiehendif
822b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsieh
8234bd97cee28dd815fff54fc97560be60d566c1fa5Elliott HughesLOCAL_CFLAGS := \
8244bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    $(libc_common_cflags) \
8259a5a3e8e74e2c6d7850ab29711189acf0f7378a2Elliott Hughes    -Wno-sign-compare -Wno-uninitialized \
826cce36c187896fb0d4bd36519c4b2e90c502137dcElliott Hughes    -fvisibility=hidden \
82753c3c271dc9927dd280981fc23409af60f460007Dmitriy Ivanov    -I$(LOCAL_PATH)/private \
828d39f3f2c2e7fc73ddb019695f0df3417deef5bf4Elliott Hughes    -I$(LOCAL_PATH)/upstream-openbsd/android/include \
8294bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    -I$(LOCAL_PATH)/upstream-openbsd/lib/libc/include \
830d39f3f2c2e7fc73ddb019695f0df3417deef5bf4Elliott Hughes    -include openbsd-compat.h \
8314bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes
8324bd97cee28dd815fff54fc97560be60d566c1fa5Elliott HughesLOCAL_CONLYFLAGS := $(libc_common_conlyflags)
8334bd97cee28dd815fff54fc97560be60d566c1fa5Elliott HughesLOCAL_CPPFLAGS := $(libc_common_cppflags)
8344bd97cee28dd815fff54fc97560be60d566c1fa5Elliott HughesLOCAL_C_INCLUDES := $(libc_common_c_includes)
8354bd97cee28dd815fff54fc97560be60d566c1fa5Elliott HughesLOCAL_MODULE := libc_gdtoa
8364bd97cee28dd815fff54fc97560be60d566c1fa5Elliott HughesLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
8373ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
8384bd97cee28dd815fff54fc97560be60d566c1fa5Elliott HughesLOCAL_SYSTEM_SHARED_LIBRARIES :=
839c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
8404bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes
8414bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
8424bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughesinclude $(BUILD_STATIC_LIBRARY)
8434bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes
8444bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes
8454bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes# ========================================================
84629c7f0b4d18f812267c2194b85204e19e41d0387Elliott Hughes# libc_bionic.a - home-grown C library code
84729c7f0b4d18f812267c2194b85204e19e41d0387Elliott Hughes# ========================================================
848e7c59f9e2041812c597ff1c8689d47d1bfd32883Elliott Hughes
84929c7f0b4d18f812267c2194b85204e19e41d0387Elliott Hughesinclude $(CLEAR_VARS)
85029c7f0b4d18f812267c2194b85204e19e41d0387Elliott Hughes
85129c7f0b4d18f812267c2194b85204e19e41d0387Elliott HughesLOCAL_SRC_FILES := $(libc_bionic_src_files)
852b6943186ce78105155ba67ab261a970859b190dfElliott HughesLOCAL_CFLAGS := $(libc_common_cflags) \
853b6943186ce78105155ba67ab261a970859b190dfElliott Hughes    -Wframe-larger-than=2048 \
854b6943186ce78105155ba67ab261a970859b190dfElliott Hughes
855b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsiehifeq ($(TARGET_ARCH),x86_64)
856b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsieh  # Clang assembler has problem with ssse3-strcmp-slm.S, http://b/17302991
857b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsieh  LOCAL_CLANG_ASFLAGS += -no-integrated-as
858b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsiehendif
859b58db8b083ce41798a5310616e4f20885cec611fChih-Hung Hsieh
860762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CONLYFLAGS := $(libc_common_conlyflags)
861762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CPPFLAGS := $(libc_common_cppflags)
8623ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_C_INCLUDES := $(libc_common_c_includes) bionic/libstdc++/include
86329c7f0b4d18f812267c2194b85204e19e41d0387Elliott HughesLOCAL_MODULE := libc_bionic
864c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_CLANG := $(use_clang)
865d7a632948d5b3128cc536a2c4db3124b4fa57a80Christopher FerrisLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
8663ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
86729c7f0b4d18f812267c2194b85204e19e41d0387Elliott HughesLOCAL_SYSTEM_SHARED_LIBRARIES :=
868c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
86929c7f0b4d18f812267c2194b85204e19e41d0387Elliott Hughes
870f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
871f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_bionic_src_files))
87229c7f0b4d18f812267c2194b85204e19e41d0387Elliott Hughesinclude $(BUILD_STATIC_LIBRARY)
87329c7f0b4d18f812267c2194b85204e19e41d0387Elliott Hughes
87429c7f0b4d18f812267c2194b85204e19e41d0387Elliott Hughes
87529c7f0b4d18f812267c2194b85204e19e41d0387Elliott Hughes# ========================================================
876fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert# libc_cxa.a - Things traditionally in libstdc++
877fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert# ========================================================
878fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert
879fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albertinclude $(CLEAR_VARS)
880fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert
881fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_SRC_FILES := $(libc_cxa_src_files)
882fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_CFLAGS := $(libc_common_cflags) \
883fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert    -fvisibility=hidden \
884fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert
885fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_CONLYFLAGS := $(libc_common_conlyflags)
886fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_CPPFLAGS := $(libc_common_cppflags)
8873ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_C_INCLUDES := $(libc_common_c_includes) bionic/libstdc++/include
888fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_MODULE := libc_cxa
889fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_CLANG := true # GCC refuses to hide new/delete
890fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
8913ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
892fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_SYSTEM_SHARED_LIBRARIES :=
893c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
894fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert
895fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albertinclude $(BUILD_STATIC_LIBRARY)
896fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert
897fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert
898fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert# ========================================================
899b3a23bd0178c8edbb34e310be08e6fb73ac6ba09Elliott Hughes# libc_syscalls.a
900b3a23bd0178c8edbb34e310be08e6fb73ac6ba09Elliott Hughes# ========================================================
901b3a23bd0178c8edbb34e310be08e6fb73ac6ba09Elliott Hughes
902b3a23bd0178c8edbb34e310be08e6fb73ac6ba09Elliott Hughesinclude $(CLEAR_VARS)
903b3a23bd0178c8edbb34e310be08e6fb73ac6ba09Elliott Hughes
904f25d677147ae55a1f3b6ef7fa3ee27921792813fYing WangLOCAL_SRC_FILES_$(TARGET_ARCH) := $(call all-S-files-under,arch-$(TARGET_ARCH)/syscalls)
905f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wangifdef TARGET_2ND_ARCH
906f25d677147ae55a1f3b6ef7fa3ee27921792813fYing WangLOCAL_SRC_FILES_$(TARGET_2ND_ARCH) := $(call all-S-files-under,arch-$(TARGET_2ND_ARCH)/syscalls)
907f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wangendif
908b3a23bd0178c8edbb34e310be08e6fb73ac6ba09Elliott HughesLOCAL_MODULE := libc_syscalls
909c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_CLANG := $(use_clang)
910b3a23bd0178c8edbb34e310be08e6fb73ac6ba09Elliott HughesLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
9113ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
912b3a23bd0178c8edbb34e310be08e6fb73ac6ba09Elliott HughesLOCAL_SYSTEM_SHARED_LIBRARIES :=
913c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
914b3a23bd0178c8edbb34e310be08e6fb73ac6ba09Elliott Hughes
915b3a23bd0178c8edbb34e310be08e6fb73ac6ba09Elliott Hughesinclude $(BUILD_STATIC_LIBRARY)
916b3a23bd0178c8edbb34e310be08e6fb73ac6ba09Elliott Hughes
917b3a23bd0178c8edbb34e310be08e6fb73ac6ba09Elliott Hughes
918b3a23bd0178c8edbb34e310be08e6fb73ac6ba09Elliott Hughes# ========================================================
919c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott Hughes# libc_aeabi.a
920c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott Hughes# This is an LP32 ARM-only library that needs to be built with -fno-builtin
921c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott Hughes# to avoid infinite recursion. For the other architectures we just build an
922c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott Hughes# empty library to keep this makefile simple.
923c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott Hughes# ========================================================
924c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott Hughes
925c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott Hughesinclude $(CLEAR_VARS)
926c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott Hughes
927c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_SRC_FILES_arm := arch-arm/bionic/__aeabi.c
928c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_MODULE := libc_aeabi
929c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_CLANG := $(use_clang)
930c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_CFLAGS := $(libc_common_cflags) -fno-builtin
931c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
9323ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
933c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_SYSTEM_SHARED_LIBRARIES :=
934c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
935c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott Hughes
936c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott Hughesinclude $(BUILD_STATIC_LIBRARY)
937c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott Hughes
938c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott Hughes# ========================================================
939ca122b0e34df0e8c485be0d3ab1b80f728b76276Dima Zavin# libc_common.a
940ca122b0e34df0e8c485be0d3ab1b80f728b76276Dima Zavin# ========================================================
941f8b3a920a895a53b207017249080087d562bd0d2Elliott Hughes
942ca122b0e34df0e8c485be0d3ab1b80f728b76276Dima Zavininclude $(CLEAR_VARS)
9431dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
944ca122b0e34df0e8c485be0d3ab1b80f728b76276Dima ZavinLOCAL_SRC_FILES := $(libc_common_src_files)
945eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott HughesLOCAL_CFLAGS := $(libc_common_cflags)
946762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CONLYFLAGS := $(libc_common_conlyflags)
947762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CPPFLAGS := $(libc_common_cppflags)
948ca122b0e34df0e8c485be0d3ab1b80f728b76276Dima ZavinLOCAL_C_INCLUDES := $(libc_common_c_includes)
9491dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source ProjectLOCAL_MODULE := libc_common
950c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_CLANG := $(use_clang)
951d7a632948d5b3128cc536a2c4db3124b4fa57a80Christopher FerrisLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
952ce4783ce76a4ef888466e02e4c6f3a0a3910bce8Elliott HughesLOCAL_WHOLE_STATIC_LIBRARIES := \
953ce4783ce76a4ef888466e02e4c6f3a0a3910bce8Elliott Hughes    libc_bionic \
954fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert    libc_cxa \
955eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughes    libc_dns \
956ce4783ce76a4ef888466e02e4c6f3a0a3910bce8Elliott Hughes    libc_freebsd \
9574bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes    libc_gdtoa \
9589b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott Hughes    libc_malloc \
959ce4783ce76a4ef888466e02e4c6f3a0a3910bce8Elliott Hughes    libc_netbsd \
9600133944b09d1c0a35041f7a41eb6bfb660144f4fElliott Hughes    libc_openbsd \
9616380b51a8d775a3b572b2db15195f279cb5565f6Elliott Hughes    libc_stack_protector \
962b3a23bd0178c8edbb34e310be08e6fb73ac6ba09Elliott Hughes    libc_syscalls \
963eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughes    libc_tzcode \
964eb847bc8666842a3cfc9c06e8458ad1abebebaf0Elliott Hughes
965c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_WHOLE_STATIC_LIBRARIES_arm := libc_aeabi
966c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott Hughes
9678e32b7b3543eadbb58a92443fb57d60aac92ef88Christopher Ferrisifneq ($(MALLOC_IMPL),dlmalloc)
9689b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott HughesLOCAL_WHOLE_STATIC_LIBRARIES += libjemalloc
96972bbd423579bb971dc06cdd3c06201faf3fe95e6Christopher Ferrisendif
97072bbd423579bb971dc06cdd3c06201faf3fe95e6Christopher Ferris
9713ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
9721dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source ProjectLOCAL_SYSTEM_SHARED_LIBRARIES :=
9731dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
974c97c5fc7880267fd835d22946a920bf370461cf2Ying Wang# TODO: split out the asflags.
975c97c5fc7880267fd835d22946a920bf370461cf2Ying WangLOCAL_ASFLAGS := $(LOCAL_CFLAGS)
976c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
977c97c5fc7880267fd835d22946a920bf370461cf2Ying Wang
978f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
979f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_common_src_files))
980f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_ASFLAGS,LOCAL_CFLAGS))
9811dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Projectinclude $(BUILD_STATIC_LIBRARY)
9821dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
9831dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
984ca122b0e34df0e8c485be0d3ab1b80f728b76276Dima Zavin# ========================================================
98549e55332784b82f7112ee7c1ea3c176c9dc32d7aDima Zavin# libc_nomalloc.a
98649e55332784b82f7112ee7c1ea3c176c9dc32d7aDima Zavin# ========================================================
98749e55332784b82f7112ee7c1ea3c176c9dc32d7aDima Zavin#
98849e55332784b82f7112ee7c1ea3c176c9dc32d7aDima Zavin# This is a version of the static C library that does not
98991a9925998f2b878f0245ce03aab22cc412a4d8bElliott Hughes# include malloc. It's useful in situations when the user wants
99091a9925998f2b878f0245ce03aab22cc412a4d8bElliott Hughes# to provide their own malloc implementation, or wants to
9919029d2f638160b37f65da176acd7ccb3aa0ba891Christopher Ferris# explicitly disallow the use of malloc, such as in the
9929029d2f638160b37f65da176acd7ccb3aa0ba891Christopher Ferris# dynamic linker.
99349e55332784b82f7112ee7c1ea3c176c9dc32d7aDima Zavin
99449e55332784b82f7112ee7c1ea3c176c9dc32d7aDima Zavininclude $(CLEAR_VARS)
99549e55332784b82f7112ee7c1ea3c176c9dc32d7aDima Zavin
99649e55332784b82f7112ee7c1ea3c176c9dc32d7aDima ZavinLOCAL_SRC_FILES := \
997f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    $(libc_arch_static_src_files) \
998f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    $(libc_static_common_src_files) \
999f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    bionic/libc_init_static.cpp
100049e55332784b82f7112ee7c1ea3c176c9dc32d7aDima Zavin
100149e55332784b82f7112ee7c1ea3c176c9dc32d7aDima ZavinLOCAL_C_INCLUDES := $(libc_common_c_includes)
10026a51defa034a1c033ed01f7de444c0a4fc615249David 'Digit' TurnerLOCAL_CFLAGS := $(libc_common_cflags) \
10034c2da039baa6c621c78afa47ead85ec9e028f56dElliott Hughes    -DLIBC_STATIC \
10044c2da039baa6c621c78afa47ead85ec9e028f56dElliott Hughes
1005762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CONLYFLAGS := $(libc_common_conlyflags)
1006762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CPPFLAGS := $(libc_common_cppflags)
100749e55332784b82f7112ee7c1ea3c176c9dc32d7aDima Zavin
100849e55332784b82f7112ee7c1ea3c176c9dc32d7aDima ZavinLOCAL_MODULE := libc_nomalloc
1009c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_CLANG := $(use_clang)
1010d7a632948d5b3128cc536a2c4db3124b4fa57a80Christopher FerrisLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
101149e55332784b82f7112ee7c1ea3c176c9dc32d7aDima ZavinLOCAL_WHOLE_STATIC_LIBRARIES := libc_common
10123ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
101349e55332784b82f7112ee7c1ea3c176c9dc32d7aDima ZavinLOCAL_SYSTEM_SHARED_LIBRARIES :=
1014c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
101549e55332784b82f7112ee7c1ea3c176c9dc32d7aDima Zavin
1016f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
1017f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_arch_static_src_files))
101849e55332784b82f7112ee7c1ea3c176c9dc32d7aDima Zavininclude $(BUILD_STATIC_LIBRARY)
101949e55332784b82f7112ee7c1ea3c176c9dc32d7aDima Zavin
102049e55332784b82f7112ee7c1ea3c176c9dc32d7aDima Zavin
102149e55332784b82f7112ee7c1ea3c176c9dc32d7aDima Zavin# ========================================================
10229b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott Hughes# libc_malloc.a: the _prefixed_ malloc functions (like dlcalloc).
10239b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott Hughes# ========================================================
10249b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott Hughes
10259b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott Hughesinclude $(CLEAR_VARS)
10269b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott HughesLOCAL_SRC_FILES := $(libc_malloc_src)
10279b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott HughesLOCAL_CFLAGS := $(libc_common_cflags) \
10289b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott Hughes    -fvisibility=hidden \
10299b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott Hughes
10309b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott HughesLOCAL_CONLYFLAGS := $(libc_common_conlyflags)
10319b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott HughesLOCAL_CPPFLAGS := $(libc_common_cppflags)
10329b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott HughesLOCAL_C_INCLUDES := $(libc_common_c_includes)
10339b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott HughesLOCAL_MODULE := libc_malloc
1034c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_CLANG := $(use_clang)
10353ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
1036c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
10379b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott HughesLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
10389b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott Hughesinclude $(BUILD_STATIC_LIBRARY)
10399b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott Hughes
10409b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott Hughes
10419b5235d74e794d29fa912fe95ca3d5ec488dd371Elliott Hughes# ========================================================
10421dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project# libc.a
10431dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project# ========================================================
10441dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Projectinclude $(CLEAR_VARS)
10451dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
10461dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source ProjectLOCAL_SRC_FILES := \
1047f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    $(libc_arch_static_src_files) \
1048f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    $(libc_static_common_src_files) \
1049f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    bionic/malloc_debug_common.cpp \
1050f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    bionic/libc_init_static.cpp \
10511dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
1052b74ceb25aae555570df64fa4d4076272733a9a20Vladimir ChtchetkineLOCAL_CFLAGS := $(libc_common_cflags) \
10534c2da039baa6c621c78afa47ead85ec9e028f56dElliott Hughes    -DLIBC_STATIC \
10544c2da039baa6c621c78afa47ead85ec9e028f56dElliott Hughes
1055762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CONLYFLAGS := $(libc_common_conlyflags)
1056762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CPPFLAGS := $(libc_common_cppflags)
10571dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source ProjectLOCAL_C_INCLUDES := $(libc_common_c_includes)
1058ca122b0e34df0e8c485be0d3ab1b80f728b76276Dima ZavinLOCAL_MODULE := libc
1059c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_CLANG := $(use_clang)
1060d7a632948d5b3128cc536a2c4db3124b4fa57a80Christopher FerrisLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
10611dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source ProjectLOCAL_WHOLE_STATIC_LIBRARIES := libc_common
10623ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
10631dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source ProjectLOCAL_SYSTEM_SHARED_LIBRARIES :=
1064c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
10651dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
1066f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
1067f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_arch_static_src_files))
10681dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Projectinclude $(BUILD_STATIC_LIBRARY)
10691dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
10701dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
1071ca122b0e34df0e8c485be0d3ab1b80f728b76276Dima Zavin# ========================================================
10721dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project# libc.so
10731dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project# ========================================================
10741dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Projectinclude $(CLEAR_VARS)
10751dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
107665935979311373f2c7fa27cbfc189f49b188ca3aElliott HughesLOCAL_CFLAGS := $(libc_common_cflags)
1077762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CONLYFLAGS := $(libc_common_conlyflags)
1078762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CPPFLAGS := $(libc_common_cppflags)
10791dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source ProjectLOCAL_C_INCLUDES := $(libc_common_c_includes)
10801dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source ProjectLOCAL_SRC_FILES := \
1081e7c59f9e2041812c597ff1c8689d47d1bfd32883Elliott Hughes    $(libc_arch_dynamic_src_files) \
1082e7c59f9e2041812c597ff1c8689d47d1bfd32883Elliott Hughes    $(libc_static_common_src_files) \
1083e7c59f9e2041812c597ff1c8689d47d1bfd32883Elliott Hughes    bionic/malloc_debug_common.cpp \
1084e7c59f9e2041812c597ff1c8689d47d1bfd32883Elliott Hughes    bionic/libc_init_dynamic.cpp \
108506e8796ee95793435c194b0a55e26d7b568c7409Sreeram Ramachandran    bionic/NetdClient.cpp \
10861dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
10874bd97cee28dd815fff54fc97560be60d566c1fa5Elliott HughesLOCAL_MODULE := libc
1088c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_CLANG := $(use_clang)
1089d7a632948d5b3128cc536a2c4db3124b4fa57a80Christopher FerrisLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
1090914d8d4cff10f023ccd382fb43b2c7833dd34f72Elliott HughesLOCAL_REQUIRED_MODULES := tzdata
10911dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
10920ae6445e9a85291b3a20da7f7a5b948cd18d3424Christopher Ferris# Leave the symbols in the shared library so that stack unwinders can produce
10930ae6445e9a85291b3a20da7f7a5b948cd18d3424Christopher Ferris# meaningful name resolution.
10940ae6445e9a85291b3a20da7f7a5b948cd18d3424Christopher FerrisLOCAL_STRIP_MODULE := keep_symbols
10950ae6445e9a85291b3a20da7f7a5b948cd18d3424Christopher Ferris
10961dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project# WARNING: The only library libc.so should depend on is libdl.so!  If you add other libraries,
10971dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project# make sure to add -Wl,--exclude-libs=libgcc.a to the LOCAL_LDFLAGS for those libraries.  This
10981dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project# ensures that symbols that are pulled into those new libraries from libgcc.a are not declared
10991dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project# external; if that were the case, then libc would not pull those symbols from libgcc.a as it
11001dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project# should, instead relying on the external symbols from the dependent libraries.  That would
11014bd97cee28dd815fff54fc97560be60d566c1fa5Elliott Hughes# create a "cloaked" dependency on libgcc.a in libc though the libraries, which is not what
11021dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project# you wanted!
11031dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
11041dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source ProjectLOCAL_SHARED_LIBRARIES := libdl
11051dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source ProjectLOCAL_WHOLE_STATIC_LIBRARIES := libc_common
11063ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
11071dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source ProjectLOCAL_SYSTEM_SHARED_LIBRARIES :=
11081dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
110971f9b34fbeef00f3bd34364dadad41bff60b6b1dDan Albert# We'd really like to do this for all architectures, but since this wasn't done
111071f9b34fbeef00f3bd34364dadad41bff60b6b1dDan Albert# before, these symbols must continue to be exported on LP32 for binary
111171f9b34fbeef00f3bd34364dadad41bff60b6b1dDan Albert# compatibility.
111271f9b34fbeef00f3bd34364dadad41bff60b6b1dDan AlbertLOCAL_LDFLAGS_arm64 := -Wl,--exclude-libs,libgcc.a
111371f9b34fbeef00f3bd34364dadad41bff60b6b1dDan AlbertLOCAL_LDFLAGS_mips64 := -Wl,--exclude-libs,libgcc.a
111471f9b34fbeef00f3bd34364dadad41bff60b6b1dDan AlbertLOCAL_LDFLAGS_x86_64 := -Wl,--exclude-libs,libgcc.a
111571f9b34fbeef00f3bd34364dadad41bff60b6b1dDan Albert
1116f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
111776c8b882690dd9025caa625a023996c136377cb1Ying Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_arch_dynamic_src_files))
111876c8b882690dd9025caa625a023996c136377cb1Ying Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_static_common_src_files))
1119f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang# special for arm
1120f25d677147ae55a1f3b6ef7fa3ee27921792813fYing WangLOCAL_NO_CRT_arm := true
1121f25d677147ae55a1f3b6ef7fa3ee27921792813fYing WangLOCAL_CFLAGS_arm += -DCRT_LEGACY_WORKAROUND
1122f25d677147ae55a1f3b6ef7fa3ee27921792813fYing WangLOCAL_SRC_FILES_arm += \
1123f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    arch-common/bionic/crtbegin_so.c \
1124f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    arch-arm/bionic/atexit_legacy.c \
1125f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    arch-common/bionic/crtend_so.S
1126c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
1127f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang
11281dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Projectinclude $(BUILD_SHARED_LIBRARY)
11291dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
11301dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
1131b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine# For all builds, except for the -user build we will enable memory
1132b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine# allocation checking (including memory leaks, buffer overwrites, etc.)
1133b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine# Note that all these checks are also controlled by env. settings
1134b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine# that can enable, or disable specific checks. Note also that some of
1135b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine# the checks are available only in emulator and are implemeted in
1136b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine# libc_malloc_qemu_instrumented.so.
1137b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkineifneq ($(TARGET_BUILD_VARIANT),user)
1138b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine
1139ca122b0e34df0e8c485be0d3ab1b80f728b76276Dima Zavin# ========================================================
1140b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine# libc_malloc_debug_leak.so
11411dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project# ========================================================
11421dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Projectinclude $(CLEAR_VARS)
11431dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
11446fe376d3925a788f60fd44280b00008af60b9334Christopher FerrisLOCAL_CFLAGS := $(libc_common_cflags)
1145762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CONLYFLAGS := $(libc_common_conlyflags)
1146762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CPPFLAGS := $(libc_common_cppflags)
11471dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
1148861c0ef37bcfcae56d88572cb01c18bcfe1fadedChristopher Ferris# Make sure that unwind.h comes from libunwind.
1149861c0ef37bcfcae56d88572cb01c18bcfe1fadedChristopher FerrisLOCAL_C_INCLUDES := \
1150861c0ef37bcfcae56d88572cb01c18bcfe1fadedChristopher Ferris    $(libc_common_c_includes) \
11511dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
11521dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source ProjectLOCAL_SRC_FILES := \
1153f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    bionic/debug_mapinfo.cpp \
1154f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    bionic/debug_stacktrace.cpp \
1155dda1c6c466c4f31de31d76c8be7e46c16b4b4209Christopher Ferris    bionic/libc_logging.cpp \
1156f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    bionic/malloc_debug_leak.cpp \
1157f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    bionic/malloc_debug_check.cpp \
11581dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
11594bd97cee28dd815fff54fc97560be60d566c1fa5Elliott HughesLOCAL_MODULE := libc_malloc_debug_leak
1160c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_CLANG := $(use_clang)
1161d7a632948d5b3128cc536a2c4db3124b4fa57a80Christopher FerrisLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
11621dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
1163e007775f4b21f6b94078ed1d34b753435ba28fdaPavel ChupinLOCAL_SHARED_LIBRARIES := libc libdl
116490a29db0f4a0893bdbd12f656d8869bb79ec3900Dan Albertifeq ($(TARGET_ARCH),arm)
1165b78e60e7b7de02fed474f170c5c7a8f78f5a0e5cChristopher Ferris# Only need this for arm since libc++ uses its own unwind code that
1166b78e60e7b7de02fed474f170c5c7a8f78f5a0e5cChristopher Ferris# doesn't mix with the other default unwind code.
116790a29db0f4a0893bdbd12f656d8869bb79ec3900Dan AlbertLOCAL_CXX_STL := libc++_static
116890a29db0f4a0893bdbd12f656d8869bb79ec3900Dan Albertelse
116990a29db0f4a0893bdbd12f656d8869bb79ec3900Dan AlbertLOCAL_CXX_STL := none
117090a29db0f4a0893bdbd12f656d8869bb79ec3900Dan Albertendif
117190a29db0f4a0893bdbd12f656d8869bb79ec3900Dan AlbertLOCAL_SYSTEM_SHARED_LIBRARIES :=
1172aa46fa24035f3ab020f9a7abd86c25ae2196bb32Bruce BeareLOCAL_ALLOW_UNDEFINED_SYMBOLS := true
1173368070454b1349d1fcf29a5d1eb51c869fb538f6Iliyan Malchev
1174b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine# Don't install on release build
1175b74ceb25aae555570df64fa4d4076272733a9a20Vladimir ChtchetkineLOCAL_MODULE_TAGS := eng debug
1176c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
11771dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
1178f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
1179b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkineinclude $(BUILD_SHARED_LIBRARY)
1180b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine
1181b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine
1182b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine# ========================================================
1183b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine# libc_malloc_debug_qemu.so
1184b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine# ========================================================
1185b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkineinclude $(CLEAR_VARS)
1186b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine
1187b74ceb25aae555570df64fa4d4076272733a9a20Vladimir ChtchetkineLOCAL_CFLAGS := \
1188f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang    $(libc_common_cflags) \
11894c2da039baa6c621c78afa47ead85ec9e028f56dElliott Hughes    -DMALLOC_QEMU_INSTRUMENT \
11904c2da039baa6c621c78afa47ead85ec9e028f56dElliott Hughes
1191762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CONLYFLAGS := $(libc_common_conlyflags)
1192762cea46f070e25b33de6f36a54fb7c293f0fee5Stephen HinesLOCAL_CPPFLAGS := $(libc_common_cppflags)
1193b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine
1194b74ceb25aae555570df64fa4d4076272733a9a20Vladimir ChtchetkineLOCAL_C_INCLUDES := $(libc_common_c_includes)
1195b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine
1196b74ceb25aae555570df64fa4d4076272733a9a20Vladimir ChtchetkineLOCAL_SRC_FILES := \
1197dda1c6c466c4f31de31d76c8be7e46c16b4b4209Christopher Ferris    bionic/libc_logging.cpp \
1198dda1c6c466c4f31de31d76c8be7e46c16b4b4209Christopher Ferris    bionic/malloc_debug_qemu.cpp \
1199b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine
12004bd97cee28dd815fff54fc97560be60d566c1fa5Elliott HughesLOCAL_MODULE := libc_malloc_debug_qemu
1201c999f76977d2389a3e2dcbdd98f20d93c3193727Elliott HughesLOCAL_CLANG := $(use_clang)
1202d7a632948d5b3128cc536a2c4db3124b4fa57a80Christopher FerrisLOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
1203b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine
12047c0c3793722aea293c45921ef50e4adcdf9645ceMathias AgopianLOCAL_SHARED_LIBRARIES := libc libdl
12053ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
12061dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source ProjectLOCAL_SYSTEM_SHARED_LIBRARIES :=
1207368070454b1349d1fcf29a5d1eb51c869fb538f6Iliyan Malchev
12081dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project# Don't install on release build
1209b74ceb25aae555570df64fa4d4076272733a9a20Vladimir ChtchetkineLOCAL_MODULE_TAGS := eng debug
1210c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
12111dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
1212f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wang$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
12131dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Projectinclude $(BUILD_SHARED_LIBRARY)
12141dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project
1215f25d677147ae55a1f3b6ef7fa3ee27921792813fYing Wangendif  #!user
1216b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine
1217fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert# ========================================================
1218fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert# libstdc++.so
1219fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert# ========================================================
1220fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albertlibstdcxx_common_src_files := \
1221fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert    bionic/__cxa_guard.cpp \
1222fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert    bionic/__cxa_pure_virtual.cpp \
1223fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert    bionic/new.cpp \
1224fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert    bionic/libc_logging.cpp \
1225fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert
1226fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albertinclude $(CLEAR_VARS)
12273ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_C_INCLUDES := $(libc_common_c_includes) bionic/libstdc++/include
1228fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_CFLAGS := $(libc_common_cflags)
1229d9ff7226613014056c9edd79a68dc5af939107a0Dmitriy IvanovLOCAL_CPPFLAGS := $(libc_common_cppflags)
1230fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_SRC_FILES := $(libstdcxx_common_src_files)
1231fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_MODULE:= libstdc++
1232fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
12333ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
1234fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_SYSTEM_SHARED_LIBRARIES := libc
1235c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
1236fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albertinclude $(BUILD_SHARED_LIBRARY)
1237fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert
1238fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert# ========================================================
1239fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert# libstdc++.a
1240fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert# ========================================================
1241fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albertinclude $(CLEAR_VARS)
12423ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_C_INCLUDES := $(libc_common_c_includes) bionic/libstdc++/include
1243fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_CFLAGS := $(libc_common_cflags)
1244d9ff7226613014056c9edd79a68dc5af939107a0Dmitriy IvanovLOCAL_CPPFLAGS := $(libc_common_cppflags)
1245fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_SRC_FILES := $(libstdcxx_common_src_files)
1246fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_MODULE:= libstdc++
1247fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
12483ec67de0513c1d7e5f41f7f17e8251122a0cc9d2Dan AlbertLOCAL_CXX_STL := none
1249fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan AlbertLOCAL_SYSTEM_SHARED_LIBRARIES := libc
1250c2d39088d8c6f621dbde0410a1fc24b9f9e7f824Dan AlbertLOCAL_NATIVE_COVERAGE := $(bionic_coverage)
1251fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albertinclude $(BUILD_STATIC_LIBRARY)
1252fd5ee9aebc0a43c7f36a0778c7f416b39ddb870eDan Albert
1253b74ceb25aae555570df64fa4d4076272733a9a20Vladimir Chtchetkine
12541dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Project# ========================================================
12551dc9e472e19acfe6dc7f41e429236e7eef7ceda1The Android Open Source Projectinclude $(call all-makefiles-under,$(LOCAL_PATH))
1256