blob: 3eaed90484fed750c6fcf469adee78f98551e15e [file] [log] [blame]
Serban Constantinescue2104882013-09-26 11:37:10 +01001LOCAL_PATH := $(call my-dir)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08002
Christopher Ferrisd7a63292013-10-03 13:26:22 -07003# Make everything depend on any changes to included makefiles.
Ying Wangf25d6772014-01-23 15:17:50 -08004libc_common_additional_dependencies := $(LOCAL_PATH)/Android.mk
5
6# Load config for TARGET_ARCH
7my_2nd_arch_prefix :=
8include $(LOCAL_PATH)/arch-$(TARGET_ARCH)/$(TARGET_ARCH).mk
9libc_common_additional_dependencies += \
10 $(LOCAL_PATH)/arch-$(TARGET_ARCH)/$(TARGET_ARCH).mk
11
12
13ifdef TARGET_2ND_ARCH
14# Load config for TARGET_2ND_ARCH
15my_2nd_arch_prefix := $(TARGET_2ND_ARCH_VAR_PREFIX)
16include $(LOCAL_PATH)/arch-$(TARGET_2ND_ARCH)/$(TARGET_2ND_ARCH).mk
17my_2nd_arch_prefix :=
18libc_common_additional_dependencies += \
19 $(LOCAL_PATH)/arch-$(TARGET_2ND_ARCH)/$(TARGET_2ND_ARCH).mk
20endif
21
22# crt obj files
23# ========================================================
24# crtbrand.c needs <stdint.h> and a #define for the platform SDK version.
25libc_crt_target_cflags := \
26 -I$(LOCAL_PATH)/include \
27 -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION) \
28
29my_2nd_arch_prefix :=
30include $(LOCAL_PATH)/crt.mk
31ifdef TARGET_2ND_ARCH
32my_2nd_arch_prefix := $(TARGET_2ND_ARCH_VAR_PREFIX)
33include $(LOCAL_PATH)/crt.mk
34my_2nd_arch_prefix :=
35endif
Christopher Ferrisd7a63292013-10-03 13:26:22 -070036
Dima Zavinca122b02009-05-27 10:52:37 -070037# Define the common source files for all the libc instances
38# =========================================================
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080039libc_common_src_files := \
Ying Wang76c8b882014-02-12 16:40:55 -080040 bionic/arc4random.c \
Ying Wang76c8b882014-02-12 16:40:55 -080041 bionic/bindresvport.c \
Ying Wang76c8b882014-02-12 16:40:55 -080042 bionic/daemon.c \
43 bionic/err.c \
44 bionic/ether_aton.c \
45 bionic/ether_ntoa.c \
Dan Albert09212042014-06-05 00:50:43 +000046 bionic/ftime.c \
Ying Wang76c8b882014-02-12 16:40:55 -080047 bionic/fts.c \
48 bionic/getdtablesize.c \
49 bionic/gethostname.c \
Ying Wang76c8b882014-02-12 16:40:55 -080050 bionic/getpriority.c \
51 bionic/getpt.c \
52 bionic/if_indextoname.c \
53 bionic/if_nametoindex.c \
54 bionic/initgroups.c \
55 bionic/ioctl.c \
56 bionic/isatty.c \
Ying Wang76c8b882014-02-12 16:40:55 -080057 bionic/memmem.c \
Ying Wang76c8b882014-02-12 16:40:55 -080058 bionic/pathconf.c \
Ying Wang76c8b882014-02-12 16:40:55 -080059 bionic/ptsname.c \
60 bionic/ptsname_r.c \
61 bionic/pututline.c \
Ying Wang76c8b882014-02-12 16:40:55 -080062 bionic/sched_cpualloc.c \
63 bionic/sched_cpucount.c \
64 bionic/semaphore.c \
Ying Wang76c8b882014-02-12 16:40:55 -080065 bionic/sigblock.c \
66 bionic/siginterrupt.c \
Ying Wang76c8b882014-02-12 16:40:55 -080067 bionic/sigsetmask.c \
Ying Wang76c8b882014-02-12 16:40:55 -080068 bionic/system_properties_compat.c \
Ying Wang76c8b882014-02-12 16:40:55 -080069 bionic/unlockpt.c \
Elliott Hughesaa0ebda2014-02-11 19:57:06 -080070 stdio/snprintf.c\
71 stdio/sprintf.c \
Elliott Hughesaa0ebda2014-02-11 19:57:06 -080072 stdlib/atexit.c \
Elliott Hughesaa0ebda2014-02-11 19:57:06 -080073 unistd/syslog.c \
Elliott Hugheseb847bc2013-10-09 15:50:50 -070074
Christopher Ferris59a13c12013-08-01 13:13:33 -070075# Fortify implementations of libc functions.
76libc_common_src_files += \
Nick Kralevich90201d52013-10-02 16:11:30 -070077 bionic/__FD_chk.cpp \
Christopher Ferris59a13c12013-08-01 13:13:33 -070078 bionic/__fgets_chk.cpp \
Christopher Ferris59a13c12013-08-01 13:13:33 -070079 bionic/__memmove_chk.cpp \
Nick Kralevichb036b5c2013-10-09 20:16:34 -070080 bionic/__read_chk.cpp \
Nick Kralevich60f4f9a2013-09-24 16:32:07 -070081 bionic/__recvfrom_chk.cpp \
Christopher Ferris950a58e2014-04-04 14:38:18 -070082 bionic/__stpcpy_chk.cpp \
83 bionic/__stpncpy_chk.cpp \
Christopher Ferris59a13c12013-08-01 13:13:33 -070084 bionic/__strchr_chk.cpp \
Christopher Ferris59a13c12013-08-01 13:13:33 -070085 bionic/__strlcat_chk.cpp \
86 bionic/__strlcpy_chk.cpp \
87 bionic/__strlen_chk.cpp \
88 bionic/__strncat_chk.cpp \
89 bionic/__strncpy_chk.cpp \
90 bionic/__strrchr_chk.cpp \
91 bionic/__umask_chk.cpp \
92 bionic/__vsnprintf_chk.cpp \
93 bionic/__vsprintf_chk.cpp \
94
Elliott Hughes29c7f0b2012-10-22 17:05:27 -070095libc_bionic_src_files := \
Elliott Hughes61e699a2013-06-12 14:05:46 -070096 bionic/abort.cpp \
Sreeram Ramachandran8f0cd8a2014-05-13 15:40:26 -070097 bionic/accept.cpp \
Sreeram Ramachandran903b7882014-05-19 13:39:57 -070098 bionic/accept4.cpp \
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -070099 bionic/access.cpp \
Elliott Hughes063cfb22012-10-25 20:55:23 -0700100 bionic/assert.cpp \
Elliott Hughes5a817382014-03-12 16:12:57 -0700101 bionic/atof.cpp \
Elliott Hughesa38cb082014-02-17 12:33:16 -0800102 bionic/__bionic_name_mem.cpp \
Elliott Hughes11952072013-10-24 15:15:14 -0700103 bionic/bionic_time_conversions.cpp \
Elliott Hughes428f5562013-02-05 16:10:59 -0800104 bionic/brk.cpp \
Dan Albert7a7f9952014-06-02 11:33:04 -0700105 bionic/c16rtomb.cpp \
106 bionic/c32rtomb.cpp \
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -0700107 bionic/chmod.cpp \
108 bionic/chown.cpp \
Elliott Hughes58d9e282014-04-22 17:41:00 -0700109 bionic/clearenv.cpp \
Elliott Hughescccfe1e2014-03-11 13:37:11 -0700110 bionic/clock.cpp \
Elliott Hughes36d61882013-11-19 13:31:58 -0800111 bionic/clone.cpp \
Calin Juravleff648312014-04-07 20:39:20 +0300112 bionic/cmsg_nxthdr.cpp \
Sreeram Ramachandranceb5bd72014-05-12 11:19:16 -0700113 bionic/connect.cpp \
Elliott Hughes15b641a2014-05-14 18:18:55 -0700114 bionic/__cxa_guard.cpp \
115 bionic/__cxa_pure_virtual.cpp \
David 'Digit' Turnerc30396f2012-10-29 15:32:54 +0100116 bionic/dirent.cpp \
Elliott Hughescac7b9d2013-10-23 09:48:29 -0700117 bionic/dup2.cpp \
118 bionic/epoll_create.cpp \
Elliott Hughes11952072013-10-24 15:15:14 -0700119 bionic/epoll_pwait.cpp \
Elliott Hughesaa0ebda2014-02-11 19:57:06 -0800120 bionic/epoll_wait.cpp \
Elliott Hughes2a0b8732013-10-08 18:50:24 -0700121 bionic/__errno.cpp \
Kito Cheng9b848242013-04-03 11:29:40 +0800122 bionic/eventfd_read.cpp \
123 bionic/eventfd_write.cpp \
Elliott Hughesbf425682013-10-24 16:29:40 -0700124 bionic/ffs.cpp \
Elliott Hughes53e43292014-02-24 18:00:43 -0800125 bionic/flockfile.cpp \
Elliott Hughes232163c2013-10-09 17:35:36 -0700126 bionic/fork.cpp \
Elliott Hughes02c78a32014-04-11 17:02:20 -0700127 bionic/fpclassify.cpp \
Elliott Hughesd0be7c82013-08-08 17:13:33 -0700128 bionic/futimens.cpp \
Nick Kralevich2c5153b2013-01-11 14:43:05 -0800129 bionic/getauxval.cpp \
Elliott Hughes063cfb22012-10-25 20:55:23 -0700130 bionic/getcwd.cpp \
Elliott Hughes247dc912014-03-10 17:17:01 -0700131 bionic/getpgrp.cpp \
Elliott Hughes5d9a7ba2014-05-30 19:00:03 -0700132 bionic/gettid.cpp \
Elliott Hughescac7b9d2013-10-23 09:48:29 -0700133 bionic/inotify_init.cpp \
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -0700134 bionic/lchown.cpp \
Calin Juravlefe317a32014-02-21 15:11:03 +0000135 bionic/lfs64_support.cpp \
Elliott Hughes0990d4f2014-04-30 09:45:40 -0700136 bionic/__libc_current_sigrtmax.cpp \
137 bionic/__libc_current_sigrtmin.cpp \
Elliott Hughes42b2c6a2013-02-07 10:14:39 -0800138 bionic/libc_init_common.cpp \
Elliott Hughes8f2a5a02013-03-15 15:30:25 -0700139 bionic/libc_logging.cpp \
Elliott Hughes58b57542012-10-29 14:27:10 -0700140 bionic/libgen.cpp \
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -0700141 bionic/link.cpp \
Elliott Hughes5363a452014-04-08 14:34:12 -0700142 bionic/locale.cpp \
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -0700143 bionic/lstat.cpp \
Dan Albert7a7f9952014-06-02 11:33:04 -0700144 bionic/mbrtoc16.cpp \
145 bionic/mbrtoc32.cpp \
146 bionic/mbstate.cpp \
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -0700147 bionic/mkdir.cpp \
Elliott Hughes594b1a42013-10-22 10:54:11 -0700148 bionic/mkfifo.cpp \
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -0700149 bionic/mknod.cpp \
Elliott Hugheseb664e22014-05-13 10:44:07 -0700150 bionic/mntent.cpp \
Sreeram Ramachandran8205a612014-05-13 17:24:03 -0700151 bionic/NetdClientDispatch.cpp \
Elliott Hughes15b641a2014-05-14 18:18:55 -0700152 bionic/new.cpp \
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -0700153 bionic/open.cpp \
Elliott Hughes11952072013-10-24 15:15:14 -0700154 bionic/pause.cpp \
Elliott Hughescac7b9d2013-10-23 09:48:29 -0700155 bionic/pipe.cpp \
Elliott Hughes11952072013-10-24 15:15:14 -0700156 bionic/poll.cpp \
Elliott Hughesf64b8ea2014-02-03 16:20:46 -0800157 bionic/posix_fallocate.cpp \
Elliott Hughes4b558f52014-03-04 15:58:02 -0800158 bionic/posix_timers.cpp \
Elliott Hughesc3f11402013-10-30 14:40:09 -0700159 bionic/pthread_atfork.cpp \
Elliott Hughes3e898472013-02-12 16:40:24 +0000160 bionic/pthread_attr.cpp \
Elliott Hughesc3f11402013-10-30 14:40:09 -0700161 bionic/pthread_cond.cpp \
162 bionic/pthread_create.cpp \
Elliott Hughes9d23e042013-02-15 19:21:51 -0800163 bionic/pthread_detach.cpp \
164 bionic/pthread_equal.cpp \
Elliott Hughesc3f11402013-10-30 14:40:09 -0700165 bionic/pthread_exit.cpp \
Elliott Hughes9d23e042013-02-15 19:21:51 -0800166 bionic/pthread_getcpuclockid.cpp \
167 bionic/pthread_getschedparam.cpp \
168 bionic/pthread_internals.cpp \
169 bionic/pthread_join.cpp \
Elliott Hughesc3f11402013-10-30 14:40:09 -0700170 bionic/pthread_key.cpp \
Elliott Hughes9d23e042013-02-15 19:21:51 -0800171 bionic/pthread_kill.cpp \
Elliott Hughesc3f11402013-10-30 14:40:09 -0700172 bionic/pthread_mutex.cpp \
173 bionic/pthread_once.cpp \
174 bionic/pthread_rwlock.cpp \
Elliott Hughes9d23e042013-02-15 19:21:51 -0800175 bionic/pthread_self.cpp \
Elliott Hughes3e898472013-02-12 16:40:24 +0000176 bionic/pthread_setname_np.cpp \
Elliott Hughes9d23e042013-02-15 19:21:51 -0800177 bionic/pthread_setschedparam.cpp \
Elliott Hughesc5d028f2013-01-10 14:42:14 -0800178 bionic/pthread_sigmask.cpp \
Elliott Hughesc3f11402013-10-30 14:40:09 -0700179 bionic/ptrace.cpp \
Chris Dearmand8a5a6f2012-12-07 18:41:10 -0800180 bionic/raise.cpp \
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -0700181 bionic/readlink.cpp \
Elliott Hughesa38cb082014-02-17 12:33:16 -0800182 bionic/reboot.cpp \
Elliott Hughes247dc912014-03-10 17:17:01 -0700183 bionic/recv.cpp \
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -0700184 bionic/rename.cpp \
185 bionic/rmdir.cpp \
Elliott Hughes701bec22013-02-25 13:14:31 -0800186 bionic/scandir.cpp \
Kito Cheng4ca685e2013-04-10 00:57:42 +0800187 bionic/sched_getaffinity.cpp \
Elliott Hughes887e1142014-01-02 12:05:50 -0800188 bionic/sched_getcpu.cpp \
Elliott Hughes247dc912014-03-10 17:17:01 -0700189 bionic/send.cpp \
Elliott Hughes232163c2013-10-09 17:35:36 -0700190 bionic/setegid.cpp \
Elliott Hughes4a9e8372012-11-30 11:58:57 -0800191 bionic/__set_errno.cpp \
Elliott Hughes232163c2013-10-09 17:35:36 -0700192 bionic/seteuid.cpp \
Elliott Hughes5a817382014-03-12 16:12:57 -0700193 bionic/setpgrp.cpp \
Elliott Hughesc7e9b232013-10-16 22:27:54 -0700194 bionic/sigaction.cpp \
195 bionic/sigaddset.cpp \
196 bionic/sigdelset.cpp \
197 bionic/sigemptyset.cpp \
198 bionic/sigfillset.cpp \
199 bionic/sigismember.cpp \
200 bionic/signal.cpp \
Elliott Hughesaa0ebda2014-02-11 19:57:06 -0800201 bionic/signalfd.cpp \
Elliott Hughes40d105c2013-10-16 12:53:58 -0700202 bionic/sigpending.cpp \
Elliott Hughes19e62322013-10-15 11:23:57 -0700203 bionic/sigprocmask.cpp \
Elliott Hughes1f5af922013-10-15 18:01:56 -0700204 bionic/sigsuspend.cpp \
Elliott Hughesc5d028f2013-01-10 14:42:14 -0800205 bionic/sigwait.cpp \
Sreeram Ramachandran903b7882014-05-19 13:39:57 -0700206 bionic/socket.cpp \
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -0700207 bionic/stat.cpp \
Elliott Hughes06040fd2013-07-09 13:25:03 -0700208 bionic/statvfs.cpp \
Elliott Hughes063cfb22012-10-25 20:55:23 -0700209 bionic/strerror.cpp \
210 bionic/strerror_r.cpp \
Elliott Hughes063cfb22012-10-25 20:55:23 -0700211 bionic/strsignal.cpp \
Elliott Hughes5a817382014-03-12 16:12:57 -0700212 bionic/strtold.cpp \
Elliott Hughes063cfb22012-10-25 20:55:23 -0700213 bionic/stubs.cpp \
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -0700214 bionic/symlink.cpp \
Elliott Hughes91a99252013-02-12 21:56:42 -0800215 bionic/sysconf.cpp \
Elliott Hughesaa0ebda2014-02-11 19:57:06 -0800216 bionic/sys_siglist.c \
217 bionic/sys_signame.c \
Elliott Hughes5a817382014-03-12 16:12:57 -0700218 bionic/system_properties.cpp \
Elliott Hughes063cfb22012-10-25 20:55:23 -0700219 bionic/tdestroy.cpp \
Elliott Hughes8d4b5842014-03-11 16:06:23 -0700220 bionic/termios.cpp \
Elliott Hughesaa0ebda2014-02-11 19:57:06 -0800221 bionic/thread_atexit.cpp \
Elliott Hughes063cfb22012-10-25 20:55:23 -0700222 bionic/tmpfile.cpp \
Elliott Hughes247dc912014-03-10 17:17:01 -0700223 bionic/umount.cpp \
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -0700224 bionic/unlink.cpp \
225 bionic/utimes.cpp \
Dan Albert210331d2014-06-05 18:07:03 -0700226 bionic/vfork.cpp \
Elliott Hughes17a8b0d2013-03-21 15:43:53 -0700227 bionic/wait.cpp \
Elliott Hughes063cfb22012-10-25 20:55:23 -0700228 bionic/wchar.cpp \
Elliott Hughes5a0aa3d2014-04-30 22:03:12 -0700229 bionic/wctype.cpp \
Elliott Hughes29c7f0b2012-10-22 17:05:27 -0700230
Elliott Hughesf0777842013-03-01 16:59:46 -0800231libc_upstream_freebsd_src_files := \
Elliott Hughes57a88362014-03-10 16:23:09 -0700232 upstream-freebsd/lib/libc/gen/ldexp.c \
Elliott Hughesab61eb32013-11-20 16:09:06 -0800233 upstream-freebsd/lib/libc/gen/sleep.c \
234 upstream-freebsd/lib/libc/gen/usleep.c \
Elliott Hughes6b05c8e2013-04-11 13:54:48 -0700235 upstream-freebsd/lib/libc/stdio/fclose.c \
Elliott Hughes6b05c8e2013-04-11 13:54:48 -0700236 upstream-freebsd/lib/libc/stdio/flags.c \
237 upstream-freebsd/lib/libc/stdio/fopen.c \
Elliott Hughes284f7882013-07-19 15:20:31 -0700238 upstream-freebsd/lib/libc/stdio/mktemp.c \
Elliott Hughesaec2ffb2013-08-12 12:07:05 -0700239 upstream-freebsd/lib/libc/stdlib/abs.c \
Elliott Hughesd278b822013-06-25 14:48:10 -0700240 upstream-freebsd/lib/libc/stdlib/getopt_long.c \
Elliott Hughesaec2ffb2013-08-12 12:07:05 -0700241 upstream-freebsd/lib/libc/stdlib/imaxabs.c \
242 upstream-freebsd/lib/libc/stdlib/imaxdiv.c \
243 upstream-freebsd/lib/libc/stdlib/labs.c \
244 upstream-freebsd/lib/libc/stdlib/llabs.c \
Elliott Hughes0b25f632013-04-11 18:08:34 -0700245 upstream-freebsd/lib/libc/stdlib/qsort.c \
Dan Albertb8425c52014-04-29 17:49:06 -0700246 upstream-freebsd/lib/libc/stdlib/quick_exit.c \
Elliott Hughesf0777842013-03-01 16:59:46 -0800247 upstream-freebsd/lib/libc/stdlib/realpath.c \
Elliott Hugheseb93ebf2013-03-01 18:35:56 -0800248 upstream-freebsd/lib/libc/string/wcpcpy.c \
249 upstream-freebsd/lib/libc/string/wcpncpy.c \
250 upstream-freebsd/lib/libc/string/wcscasecmp.c \
Elliott Hugheseb93ebf2013-03-01 18:35:56 -0800251 upstream-freebsd/lib/libc/string/wcscspn.c \
252 upstream-freebsd/lib/libc/string/wcsdup.c \
253 upstream-freebsd/lib/libc/string/wcslcat.c \
Elliott Hugheseb93ebf2013-03-01 18:35:56 -0800254 upstream-freebsd/lib/libc/string/wcsncasecmp.c \
255 upstream-freebsd/lib/libc/string/wcsncat.c \
256 upstream-freebsd/lib/libc/string/wcsncmp.c \
257 upstream-freebsd/lib/libc/string/wcsncpy.c \
258 upstream-freebsd/lib/libc/string/wcsnlen.c \
259 upstream-freebsd/lib/libc/string/wcspbrk.c \
Elliott Hugheseb93ebf2013-03-01 18:35:56 -0800260 upstream-freebsd/lib/libc/string/wcsspn.c \
Elliott Hugheseb93ebf2013-03-01 18:35:56 -0800261 upstream-freebsd/lib/libc/string/wcstok.c \
262 upstream-freebsd/lib/libc/string/wmemchr.c \
Elliott Hugheseb93ebf2013-03-01 18:35:56 -0800263 upstream-freebsd/lib/libc/string/wmemcpy.c \
Elliott Hugheseb93ebf2013-03-01 18:35:56 -0800264 upstream-freebsd/lib/libc/string/wmemset.c \
Elliott Hughesf0777842013-03-01 16:59:46 -0800265
Elliott Hughesf8b3a922012-08-10 11:39:58 -0700266libc_upstream_netbsd_src_files := \
Elliott Hughese8bcca32012-10-23 12:26:26 -0700267 upstream-netbsd/common/lib/libc/hash/sha1/sha1.c \
Elliott Hughes677b6e62014-02-20 14:15:09 -0800268 upstream-netbsd/lib/libc/gen/ftw.c \
269 upstream-netbsd/lib/libc/gen/nftw.c \
270 upstream-netbsd/lib/libc/gen/nice.c \
271 upstream-netbsd/lib/libc/gen/popen.c \
272 upstream-netbsd/lib/libc/gen/psignal.c \
Elliott Hughes677b6e62014-02-20 14:15:09 -0800273 upstream-netbsd/lib/libc/gen/utime.c \
Elliott Hughes19f58ef2014-03-10 16:32:35 -0700274 upstream-netbsd/lib/libc/gen/utmp.c \
Elliott Hughes677b6e62014-02-20 14:15:09 -0800275 upstream-netbsd/lib/libc/regex/regcomp.c \
276 upstream-netbsd/lib/libc/regex/regerror.c \
277 upstream-netbsd/lib/libc/regex/regexec.c \
278 upstream-netbsd/lib/libc/regex/regfree.c \
Elliott Hughes677b6e62014-02-20 14:15:09 -0800279 upstream-netbsd/lib/libc/stdlib/bsearch.c \
280 upstream-netbsd/lib/libc/stdlib/div.c \
281 upstream-netbsd/lib/libc/stdlib/drand48.c \
282 upstream-netbsd/lib/libc/stdlib/erand48.c \
Elliott Hughes677b6e62014-02-20 14:15:09 -0800283 upstream-netbsd/lib/libc/stdlib/jrand48.c \
284 upstream-netbsd/lib/libc/stdlib/ldiv.c \
285 upstream-netbsd/lib/libc/stdlib/lldiv.c \
286 upstream-netbsd/lib/libc/stdlib/lrand48.c \
Elliott Hughes7f3a2722014-04-01 12:40:00 -0700287 upstream-netbsd/lib/libc/stdlib/lsearch.c \
Elliott Hughes677b6e62014-02-20 14:15:09 -0800288 upstream-netbsd/lib/libc/stdlib/mrand48.c \
289 upstream-netbsd/lib/libc/stdlib/nrand48.c \
290 upstream-netbsd/lib/libc/stdlib/_rand48.c \
291 upstream-netbsd/lib/libc/stdlib/seed48.c \
292 upstream-netbsd/lib/libc/stdlib/srand48.c \
293 upstream-netbsd/lib/libc/stdlib/tdelete.c \
294 upstream-netbsd/lib/libc/stdlib/tfind.c \
295 upstream-netbsd/lib/libc/stdlib/tsearch.c \
296 upstream-netbsd/lib/libc/string/memccpy.c \
297 upstream-netbsd/lib/libc/string/strcasestr.c \
298 upstream-netbsd/lib/libc/string/strcoll.c \
299 upstream-netbsd/lib/libc/string/strxfrm.c \
300 upstream-netbsd/lib/libc/thread-stub/__isthreaded.c \
301 upstream-netbsd/lib/libc/unistd/killpg.c \
Elliott Hughesf8b3a922012-08-10 11:39:58 -0700302
Elliott Hughes4bd97ce2014-04-10 17:48:14 -0700303libc_upstream_openbsd_gdtoa_src_files := \
Elliott Hughesd39f3f22014-04-21 17:13:46 -0700304 upstream-openbsd/android/gdtoa_support.cpp \
Elliott Hughes4bd97ce2014-04-10 17:48:14 -0700305 upstream-openbsd/lib/libc/gdtoa/dmisc.c \
306 upstream-openbsd/lib/libc/gdtoa/dtoa.c \
307 upstream-openbsd/lib/libc/gdtoa/gdtoa.c \
308 upstream-openbsd/lib/libc/gdtoa/gethex.c \
309 upstream-openbsd/lib/libc/gdtoa/gmisc.c \
310 upstream-openbsd/lib/libc/gdtoa/hd_init.c \
311 upstream-openbsd/lib/libc/gdtoa/hdtoa.c \
312 upstream-openbsd/lib/libc/gdtoa/hexnan.c \
313 upstream-openbsd/lib/libc/gdtoa/ldtoa.c \
314 upstream-openbsd/lib/libc/gdtoa/misc.c \
315 upstream-openbsd/lib/libc/gdtoa/smisc.c \
316 upstream-openbsd/lib/libc/gdtoa/strtod.c \
317 upstream-openbsd/lib/libc/gdtoa/strtodg.c \
318 upstream-openbsd/lib/libc/gdtoa/strtof.c \
319 upstream-openbsd/lib/libc/gdtoa/strtord.c \
320 upstream-openbsd/lib/libc/gdtoa/sum.c \
321 upstream-openbsd/lib/libc/gdtoa/ulp.c \
322
323libc_upstream_openbsd_gdtoa_src_files_32 := \
324 $(libc_upstream_openbsd_gdtoa_src_files) \
325
326libc_upstream_openbsd_gdtoa_src_files_64 := \
327 $(libc_upstream_openbsd_gdtoa_src_files) \
328 upstream-openbsd/lib/libc/gdtoa/strtorQ.c \
329
Elliott Hughes53e43292014-02-24 18:00:43 -0800330libc_upstream_openbsd_src_files := \
Elliott Hughesaedb00d2014-03-03 14:38:20 -0800331 upstream-openbsd/lib/libc/gen/alarm.c \
Elliott Hughesf3c73902014-04-18 10:29:16 -0700332 upstream-openbsd/lib/libc/gen/ctype_.c \
Elliott Hughes53e43292014-02-24 18:00:43 -0800333 upstream-openbsd/lib/libc/gen/exec.c \
Elliott Hughes53e43292014-02-24 18:00:43 -0800334 upstream-openbsd/lib/libc/gen/fnmatch.c \
Elliott Hughes692207e2014-02-28 16:23:27 -0800335 upstream-openbsd/lib/libc/gen/ftok.c \
336 upstream-openbsd/lib/libc/gen/getprogname.c \
Elliott Hughesf3c73902014-04-18 10:29:16 -0700337 upstream-openbsd/lib/libc/gen/isctype.c \
Elliott Hughes692207e2014-02-28 16:23:27 -0800338 upstream-openbsd/lib/libc/gen/setprogname.c \
Elliott Hughescccfe1e2014-03-11 13:37:11 -0700339 upstream-openbsd/lib/libc/gen/time.c \
Elliott Hughes53e43292014-02-24 18:00:43 -0800340 upstream-openbsd/lib/libc/gen/tolower_.c \
Elliott Hughes692207e2014-02-28 16:23:27 -0800341 upstream-openbsd/lib/libc/gen/toupper_.c \
Elliott Hughes3d7a0d92014-04-29 14:46:56 -0700342 upstream-openbsd/lib/libc/locale/btowc.c \
343 upstream-openbsd/lib/libc/locale/mbrlen.c \
344 upstream-openbsd/lib/libc/locale/mbstowcs.c \
Elliott Hughes0a5e26d2014-04-28 17:51:13 -0700345 upstream-openbsd/lib/libc/locale/mbtowc.c \
Elliott Hughesc8937ea2014-03-10 16:11:59 -0700346 upstream-openbsd/lib/libc/locale/wcscoll.c \
Elliott Hughes3d7a0d92014-04-29 14:46:56 -0700347 upstream-openbsd/lib/libc/locale/wcstod.c \
348 upstream-openbsd/lib/libc/locale/wcstof.c \
Elliott Hughes01ae00f2014-04-29 16:28:56 -0700349 upstream-openbsd/lib/libc/locale/wcstoimax.c \
Elliott Hughes3d7a0d92014-04-29 14:46:56 -0700350 upstream-openbsd/lib/libc/locale/wcstol.c \
351 upstream-openbsd/lib/libc/locale/wcstold.c \
352 upstream-openbsd/lib/libc/locale/wcstoll.c \
353 upstream-openbsd/lib/libc/locale/wcstombs.c \
354 upstream-openbsd/lib/libc/locale/wcstoul.c \
355 upstream-openbsd/lib/libc/locale/wcstoull.c \
Elliott Hughes01ae00f2014-04-29 16:28:56 -0700356 upstream-openbsd/lib/libc/locale/wcstoumax.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700357 upstream-openbsd/lib/libc/locale/wcsxfrm.c \
Elliott Hughes3d7a0d92014-04-29 14:46:56 -0700358 upstream-openbsd/lib/libc/locale/wctob.c \
Elliott Hughes5a0aa3d2014-04-30 22:03:12 -0700359 upstream-openbsd/lib/libc/locale/wctomb.c \
Elliott Hughes6a41b0f2014-05-13 16:05:51 -0700360 upstream-openbsd/lib/libc/net/htonl.c \
361 upstream-openbsd/lib/libc/net/htons.c \
362 upstream-openbsd/lib/libc/net/inet_addr.c \
363 upstream-openbsd/lib/libc/net/inet_lnaof.c \
364 upstream-openbsd/lib/libc/net/inet_makeaddr.c \
365 upstream-openbsd/lib/libc/net/inet_netof.c \
366 upstream-openbsd/lib/libc/net/inet_network.c \
367 upstream-openbsd/lib/libc/net/inet_ntoa.c \
Elliott Hughesf51d3e82014-05-19 15:55:29 -0700368 upstream-openbsd/lib/libc/net/inet_ntop.c \
Elliott Hughes6a41b0f2014-05-13 16:05:51 -0700369 upstream-openbsd/lib/libc/net/inet_pton.c \
370 upstream-openbsd/lib/libc/net/ntohl.c \
371 upstream-openbsd/lib/libc/net/ntohs.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700372 upstream-openbsd/lib/libc/stdio/asprintf.c \
Elliott Hughes53e43292014-02-24 18:00:43 -0800373 upstream-openbsd/lib/libc/stdio/clrerr.c \
Elliott Hughesfcac8ff2014-05-22 01:24:30 -0700374 upstream-openbsd/lib/libc/stdio/dprintf.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700375 upstream-openbsd/lib/libc/stdio/fdopen.c \
376 upstream-openbsd/lib/libc/stdio/feof.c \
377 upstream-openbsd/lib/libc/stdio/ferror.c \
378 upstream-openbsd/lib/libc/stdio/fflush.c \
379 upstream-openbsd/lib/libc/stdio/fgetc.c \
380 upstream-openbsd/lib/libc/stdio/fgetln.c \
381 upstream-openbsd/lib/libc/stdio/fgetpos.c \
382 upstream-openbsd/lib/libc/stdio/fgets.c \
Elliott Hughes01ae00f2014-04-29 16:28:56 -0700383 upstream-openbsd/lib/libc/stdio/fgetwc.c \
Elliott Hughesc9322252014-04-29 17:08:03 -0700384 upstream-openbsd/lib/libc/stdio/fgetws.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700385 upstream-openbsd/lib/libc/stdio/fileno.c \
Dmitriy Ivanov623b0d02014-05-14 23:11:05 -0700386 upstream-openbsd/lib/libc/stdio/findfp.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700387 upstream-openbsd/lib/libc/stdio/fprintf.c \
388 upstream-openbsd/lib/libc/stdio/fpurge.c \
389 upstream-openbsd/lib/libc/stdio/fputc.c \
390 upstream-openbsd/lib/libc/stdio/fputs.c \
Elliott Hughesc9322252014-04-29 17:08:03 -0700391 upstream-openbsd/lib/libc/stdio/fputwc.c \
392 upstream-openbsd/lib/libc/stdio/fputws.c \
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -0700393 upstream-openbsd/lib/libc/stdio/fread.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700394 upstream-openbsd/lib/libc/stdio/freopen.c \
395 upstream-openbsd/lib/libc/stdio/fscanf.c \
396 upstream-openbsd/lib/libc/stdio/fseek.c \
397 upstream-openbsd/lib/libc/stdio/fsetpos.c \
Elliott Hughes53e43292014-02-24 18:00:43 -0800398 upstream-openbsd/lib/libc/stdio/ftell.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700399 upstream-openbsd/lib/libc/stdio/funopen.c \
Elliott Hughes9d3c2dd2014-04-18 13:13:04 -0700400 upstream-openbsd/lib/libc/stdio/fvwrite.c \
Elliott Hughes53e43292014-02-24 18:00:43 -0800401 upstream-openbsd/lib/libc/stdio/fwalk.c \
Elliott Hughesc9322252014-04-29 17:08:03 -0700402 upstream-openbsd/lib/libc/stdio/fwide.c \
Elliott Hughes94336d82014-04-29 17:39:29 -0700403 upstream-openbsd/lib/libc/stdio/fwprintf.c \
Elliott Hughes792ae722014-05-02 18:18:46 -0700404 upstream-openbsd/lib/libc/stdio/fwrite.c \
Elliott Hughes01ae00f2014-04-29 16:28:56 -0700405 upstream-openbsd/lib/libc/stdio/fwscanf.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700406 upstream-openbsd/lib/libc/stdio/getc.c \
407 upstream-openbsd/lib/libc/stdio/getchar.c \
408 upstream-openbsd/lib/libc/stdio/getdelim.c \
409 upstream-openbsd/lib/libc/stdio/getline.c \
410 upstream-openbsd/lib/libc/stdio/gets.c \
Elliott Hughesc9322252014-04-29 17:08:03 -0700411 upstream-openbsd/lib/libc/stdio/getwc.c \
412 upstream-openbsd/lib/libc/stdio/getwchar.c \
Dmitriy Ivanov623b0d02014-05-14 23:11:05 -0700413 upstream-openbsd/lib/libc/stdio/makebuf.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700414 upstream-openbsd/lib/libc/stdio/perror.c \
415 upstream-openbsd/lib/libc/stdio/printf.c \
416 upstream-openbsd/lib/libc/stdio/putc.c \
417 upstream-openbsd/lib/libc/stdio/putchar.c \
418 upstream-openbsd/lib/libc/stdio/puts.c \
Elliott Hughesf2cea022014-03-13 14:54:53 -0700419 upstream-openbsd/lib/libc/stdio/putw.c \
Elliott Hughesc9322252014-04-29 17:08:03 -0700420 upstream-openbsd/lib/libc/stdio/putwc.c \
421 upstream-openbsd/lib/libc/stdio/putwchar.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700422 upstream-openbsd/lib/libc/stdio/refill.c \
423 upstream-openbsd/lib/libc/stdio/remove.c \
424 upstream-openbsd/lib/libc/stdio/rewind.c \
425 upstream-openbsd/lib/libc/stdio/rget.c \
426 upstream-openbsd/lib/libc/stdio/scanf.c \
427 upstream-openbsd/lib/libc/stdio/setbuf.c \
428 upstream-openbsd/lib/libc/stdio/setbuffer.c \
Dmitriy Ivanov623b0d02014-05-14 23:11:05 -0700429 upstream-openbsd/lib/libc/stdio/setvbuf.c \
Elliott Hughes603332f2014-03-12 17:10:41 -0700430 upstream-openbsd/lib/libc/stdio/sscanf.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700431 upstream-openbsd/lib/libc/stdio/stdio.c \
Elliott Hughes94336d82014-04-29 17:39:29 -0700432 upstream-openbsd/lib/libc/stdio/swprintf.c \
Elliott Hughes01ae00f2014-04-29 16:28:56 -0700433 upstream-openbsd/lib/libc/stdio/swscanf.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700434 upstream-openbsd/lib/libc/stdio/tempnam.c \
435 upstream-openbsd/lib/libc/stdio/tmpnam.c \
436 upstream-openbsd/lib/libc/stdio/ungetc.c \
Elliott Hughes01ae00f2014-04-29 16:28:56 -0700437 upstream-openbsd/lib/libc/stdio/ungetwc.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700438 upstream-openbsd/lib/libc/stdio/vasprintf.c \
Elliott Hughesfcac8ff2014-05-22 01:24:30 -0700439 upstream-openbsd/lib/libc/stdio/vdprintf.c \
Elliott Hughes05493712014-04-17 17:30:03 -0700440 upstream-openbsd/lib/libc/stdio/vfprintf.c \
Elliott Hughes603332f2014-03-12 17:10:41 -0700441 upstream-openbsd/lib/libc/stdio/vfscanf.c \
Elliott Hughes94336d82014-04-29 17:39:29 -0700442 upstream-openbsd/lib/libc/stdio/vfwprintf.c \
Elliott Hughes01ae00f2014-04-29 16:28:56 -0700443 upstream-openbsd/lib/libc/stdio/vfwscanf.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700444 upstream-openbsd/lib/libc/stdio/vprintf.c \
445 upstream-openbsd/lib/libc/stdio/vscanf.c \
446 upstream-openbsd/lib/libc/stdio/vsnprintf.c \
447 upstream-openbsd/lib/libc/stdio/vsprintf.c \
Elliott Hughes603332f2014-03-12 17:10:41 -0700448 upstream-openbsd/lib/libc/stdio/vsscanf.c \
Elliott Hughes94336d82014-04-29 17:39:29 -0700449 upstream-openbsd/lib/libc/stdio/vswprintf.c \
Elliott Hughes01ae00f2014-04-29 16:28:56 -0700450 upstream-openbsd/lib/libc/stdio/vswscanf.c \
Elliott Hughes94336d82014-04-29 17:39:29 -0700451 upstream-openbsd/lib/libc/stdio/vwprintf.c \
Elliott Hughes01ae00f2014-04-29 16:28:56 -0700452 upstream-openbsd/lib/libc/stdio/vwscanf.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700453 upstream-openbsd/lib/libc/stdio/wbuf.c \
Elliott Hughes94336d82014-04-29 17:39:29 -0700454 upstream-openbsd/lib/libc/stdio/wprintf.c \
Elliott Hughes01ae00f2014-04-29 16:28:56 -0700455 upstream-openbsd/lib/libc/stdio/wscanf.c \
Elliott Hughes53b24382014-05-02 18:29:25 -0700456 upstream-openbsd/lib/libc/stdio/wsetup.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700457 upstream-openbsd/lib/libc/stdlib/atoi.c \
458 upstream-openbsd/lib/libc/stdlib/atol.c \
459 upstream-openbsd/lib/libc/stdlib/atoll.c \
Dmitriy Ivanov623b0d02014-05-14 23:11:05 -0700460 upstream-openbsd/lib/libc/stdlib/exit.c \
Elliott Hughes58d9e282014-04-22 17:41:00 -0700461 upstream-openbsd/lib/libc/stdlib/getenv.c \
462 upstream-openbsd/lib/libc/stdlib/setenv.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700463 upstream-openbsd/lib/libc/stdlib/strtoimax.c \
464 upstream-openbsd/lib/libc/stdlib/strtol.c \
465 upstream-openbsd/lib/libc/stdlib/strtoll.c \
Elliott Hughes53e43292014-02-24 18:00:43 -0800466 upstream-openbsd/lib/libc/stdlib/strtoul.c \
467 upstream-openbsd/lib/libc/stdlib/strtoull.c \
Elliott Hughes53e43292014-02-24 18:00:43 -0800468 upstream-openbsd/lib/libc/stdlib/strtoumax.c \
Elliott Hughes1e4378e2014-02-25 15:19:26 -0800469 upstream-openbsd/lib/libc/stdlib/system.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700470 upstream-openbsd/lib/libc/string/strcasecmp.c \
471 upstream-openbsd/lib/libc/string/strcspn.c \
472 upstream-openbsd/lib/libc/string/strdup.c \
473 upstream-openbsd/lib/libc/string/strndup.c \
474 upstream-openbsd/lib/libc/string/strpbrk.c \
475 upstream-openbsd/lib/libc/string/strsep.c \
476 upstream-openbsd/lib/libc/string/strspn.c \
477 upstream-openbsd/lib/libc/string/strstr.c \
478 upstream-openbsd/lib/libc/string/strtok.c \
479 upstream-openbsd/lib/libc/string/wcslcpy.c \
Elliott Hughesd299bcf2014-04-28 16:28:51 -0700480 upstream-openbsd/lib/libc/string/wcsstr.c \
Elliott Hughesad41e9a2014-03-11 15:05:50 -0700481 upstream-openbsd/lib/libc/string/wcswidth.c \
Elliott Hughes53e43292014-02-24 18:00:43 -0800482
Ying Wangf25d6772014-01-23 15:17:50 -0800483libc_arch_static_src_files := \
484 bionic/dl_iterate_phdr_static.cpp \
Christopher Ferris7c83a1e2013-02-26 01:30:00 -0800485
Dima Zavinca122b02009-05-27 10:52:37 -0700486# Define some common cflags
487# ========================================================
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800488libc_common_cflags := \
Elliott Hughes470631e2012-06-06 10:32:56 -0700489 -D_LIBC=1 \
Elliott Hughesd2867962014-06-03 15:22:34 -0700490 -Wall -Wextra -Wunused \
Elliott Hughes2ec400b2013-10-08 17:04:33 -0700491
492# Try to catch typical 32-bit assumptions that break with 64-bit pointers.
493libc_common_cflags += \
494 -Werror=pointer-to-int-cast \
495 -Werror=int-to-pointer-cast \
496 -Werror=type-limits \
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800497
Dave Bortd2c9dcc2009-04-23 15:50:03 -0700498ifeq ($(strip $(DEBUG_BIONIC_LIBC)),true)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800499 libc_common_cflags += -DDEBUG
500endif
501
Christopher Ferris72bbd422014-05-08 11:14:03 -0700502ifeq ($(MALLOC_IMPL),jemalloc)
503 libc_common_cflags += -DUSE_JEMALLOC
Christopher Ferris72bbd422014-05-08 11:14:03 -0700504 libc_malloc_src := bionic/jemalloc.cpp
505else
506 libc_common_cflags += -DUSE_DLMALLOC
Christopher Ferris8d2410d2014-05-21 11:45:51 -0700507 libc_malloc_src := bionic/dlmalloc.c
Christopher Ferris72bbd422014-05-08 11:14:03 -0700508endif
509
Jack Ren2fd81ef2011-11-19 09:48:03 +0800510# To customize dlmalloc's alignment, set BOARD_MALLOC_ALIGNMENT in
511# the appropriate BoardConfig.mk file.
512#
513ifneq ($(BOARD_MALLOC_ALIGNMENT),)
514 libc_common_cflags += -DMALLOC_ALIGNMENT=$(BOARD_MALLOC_ALIGNMENT)
515endif
516
Andy McFaddenfcd00eb2010-05-28 13:31:45 -0700517# Define ANDROID_SMP appropriately.
518ifeq ($(TARGET_CPU_SMP),true)
519 libc_common_cflags += -DANDROID_SMP=1
520else
521 libc_common_cflags += -DANDROID_SMP=0
522endif
523
Stephen Hines762cea42013-09-30 17:10:53 -0700524# Define some common conlyflags
525libc_common_conlyflags := \
526 -std=gnu99
527
528# Define some common cppflags
529libc_common_cppflags := \
530 -std=gnu++11
531
Dima Zavinca122b02009-05-27 10:52:37 -0700532# Define some common includes
533# ========================================================
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800534libc_common_c_includes := \
Ying Wang76c8b882014-02-12 16:40:55 -0800535 $(LOCAL_PATH)/stdlib \
Ying Wang76c8b882014-02-12 16:40:55 -0800536 $(LOCAL_PATH)/stdio \
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800537
Christopher Ferris72bbd422014-05-08 11:14:03 -0700538ifeq ($(MALLOC_IMPL),jemalloc)
539 libc_common_c_includes += external/jemalloc/include
540endif
541
Ying Wangf25d6772014-01-23 15:17:50 -0800542# ========================================================
543# Add in the arch-specific flags.
544# Must be called with $(eval).
545# $(1): the LOCAL_ variable name
546# $(2): the bionic variable name to pull in
547define patch-up-arch-specific-flags
548$(1)_$(TARGET_ARCH) += $($(2)_$(TARGET_ARCH))
549ifdef TARGET_2ND_ARCH
550$(1)_$(TARGET_2ND_ARCH) += $($(2)_$(TARGET_2ND_ARCH))
David 'Digit' Turner2d2dbd32011-06-25 17:26:38 +0200551endif
Ying Wangf25d6772014-01-23 15:17:50 -0800552endef
Michael Hopeea8fad12012-07-31 16:18:22 +1200553
Dima Zavinca122b02009-05-27 10:52:37 -0700554
555# ========================================================
Elliott Hughes6380b512014-03-10 16:15:11 -0700556# libc_stack_protector.a - stack protector code
Nick Kralevich6334c662012-07-10 10:46:19 -0700557# ========================================================
558#
559# The stack protector code needs to be compiled
560# with -fno-stack-protector, since it modifies the
561# stack canary.
562
563include $(CLEAR_VARS)
564
Elliott Hughes642331b2013-03-06 15:03:53 -0800565LOCAL_SRC_FILES := bionic/__stack_chk_fail.cpp
Elliott Hughesdc5ec072013-02-14 11:15:58 -0800566LOCAL_CFLAGS := $(libc_common_cflags) -fno-stack-protector -Werror
Stephen Hines762cea42013-09-30 17:10:53 -0700567LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
568LOCAL_CPPFLAGS := $(libc_common_cppflags)
Nick Kralevich6334c662012-07-10 10:46:19 -0700569LOCAL_C_INCLUDES := $(libc_common_c_includes)
Elliott Hughes6380b512014-03-10 16:15:11 -0700570LOCAL_MODULE := libc_stack_protector
Christopher Ferrisd7a63292013-10-03 13:26:22 -0700571LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
Nick Kralevich6334c662012-07-10 10:46:19 -0700572LOCAL_SYSTEM_SHARED_LIBRARIES :=
573
Ying Wangf25d6772014-01-23 15:17:50 -0800574$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
Nick Kralevich6334c662012-07-10 10:46:19 -0700575include $(BUILD_STATIC_LIBRARY)
576
577
578# ========================================================
Elliott Hughesce4783c2013-07-12 17:31:11 -0700579# libc_tzcode.a - upstream 'tzcode' code
580# ========================================================
581
582include $(CLEAR_VARS)
583
Elliott Hughes1fbe6212014-02-20 11:28:20 -0800584LOCAL_SRC_FILES := $(call all-c-files-under,tzcode)
Elliott Hughesefaa4612014-05-02 15:53:03 -0700585# tzcode doesn't include wcsftime, so we use the OpenBSD one.
586LOCAL_SRC_FILES += upstream-openbsd/lib/libc/time/wcsftime.c
Elliott Hughes329103d2014-04-25 16:55:04 -0700587
588LOCAL_CFLAGS := $(libc_common_cflags)
589# Don't use ridiculous amounts of stack.
590LOCAL_CFLAGS += -DALL_STATE
591# Include tzsetwall, timelocal, timegm, time2posix, and posix2time.
592LOCAL_CFLAGS += -DSTD_INSPIRED
593# The name of the tm_gmtoff field in our struct tm.
594LOCAL_CFLAGS += -DTM_GMTOFF=tm_gmtoff
595# Where we store our tzdata.
596LOCAL_CFLAGS += -DTZDIR=\"/system/usr/share/zoneinfo\"
597# Include timezone and daylight globals.
598LOCAL_CFLAGS += -DUSG_COMPAT=1
Elliott Hughes9a5a3e82014-05-05 20:28:28 -0700599LOCAL_CFLAGS += -DNO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU
Elliott Hughes329103d2014-04-25 16:55:04 -0700600
Stephen Hines762cea42013-09-30 17:10:53 -0700601LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
602LOCAL_CPPFLAGS := $(libc_common_cppflags)
Elliott Hughesefaa4612014-05-02 15:53:03 -0700603LOCAL_C_INCLUDES := $(libc_common_c_includes) $(LOCAL_PATH)/tzcode/
Elliott Hughesce4783c2013-07-12 17:31:11 -0700604LOCAL_MODULE := libc_tzcode
Christopher Ferrisd7a63292013-10-03 13:26:22 -0700605LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
Elliott Hughesce4783c2013-07-12 17:31:11 -0700606LOCAL_SYSTEM_SHARED_LIBRARIES :=
607
Ying Wangf25d6772014-01-23 15:17:50 -0800608$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
Elliott Hughesce4783c2013-07-12 17:31:11 -0700609include $(BUILD_STATIC_LIBRARY)
610
611
612# ========================================================
Elliott Hugheseb847bc2013-10-09 15:50:50 -0700613# libc_dns.a - modified NetBSD DNS code
614# ========================================================
615
616include $(CLEAR_VARS)
617
Elliott Hughes85638022014-05-16 12:04:10 -0700618LOCAL_SRC_FILES := \
619 $(call all-c-files-under,dns) \
620 upstream-netbsd/lib/libc/isc/ev_streams.c \
621 upstream-netbsd/lib/libc/isc/ev_timers.c \
622
Elliott Hugheseb847bc2013-10-09 15:50:50 -0700623LOCAL_CFLAGS := \
624 $(libc_common_cflags) \
Elliott Hughes205c7882014-03-13 16:17:43 -0700625 -DANDROID_CHANGES \
Elliott Hugheseb847bc2013-10-09 15:50:50 -0700626 -DINET6 \
Elliott Hughes85638022014-05-16 12:04:10 -0700627 -fvisibility=hidden \
Calin Juravlececc0362014-03-03 11:44:48 +0000628 -I$(LOCAL_PATH)/dns/include \
Elliott Hugheseb847bc2013-10-09 15:50:50 -0700629 -I$(LOCAL_PATH)/private \
Calin Juravlefcb502e2014-03-05 15:06:52 +0000630 -I$(LOCAL_PATH)/upstream-netbsd/lib/libc/include \
Elliott Hughes85638022014-05-16 12:04:10 -0700631 -I$(LOCAL_PATH)/upstream-netbsd/android/include \
632 -include netbsd-compat.h \
Elliott Hughes4c2da032014-05-16 16:50:34 -0700633# -Werror \
634
Elliott Hugheseb847bc2013-10-09 15:50:50 -0700635LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
636LOCAL_CPPFLAGS := $(libc_common_cppflags)
637LOCAL_C_INCLUDES := $(libc_common_c_includes)
638LOCAL_MODULE := libc_dns
639LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
640LOCAL_SYSTEM_SHARED_LIBRARIES :=
641
Ying Wangf25d6772014-01-23 15:17:50 -0800642$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
Elliott Hugheseb847bc2013-10-09 15:50:50 -0700643include $(BUILD_STATIC_LIBRARY)
644
645
646# ========================================================
Elliott Hughesf0777842013-03-01 16:59:46 -0800647# libc_freebsd.a - upstream FreeBSD C library code
648# ========================================================
649#
650# These files are built with the freebsd-compat.h header file
651# automatically included.
652
653include $(CLEAR_VARS)
654
655LOCAL_SRC_FILES := $(libc_upstream_freebsd_src_files)
656LOCAL_CFLAGS := \
657 $(libc_common_cflags) \
Elliott Hughes9a5a3e82014-05-05 20:28:28 -0700658 -Wno-sign-compare -Wno-uninitialized \
Elliott Hughesd39f3f22014-04-21 17:13:46 -0700659 -I$(LOCAL_PATH)/upstream-freebsd/android/include \
Elliott Hughes02c78a32014-04-11 17:02:20 -0700660 -I$(LOCAL_PATH)/upstream-freebsd/lib/libc/include \
Elliott Hughes4c2da032014-05-16 16:50:34 -0700661 -include freebsd-compat.h \
662# -Werror \
663
Stephen Hines762cea42013-09-30 17:10:53 -0700664LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
665LOCAL_CPPFLAGS := $(libc_common_cppflags)
Elliott Hughesf0777842013-03-01 16:59:46 -0800666LOCAL_C_INCLUDES := $(libc_common_c_includes)
667LOCAL_MODULE := libc_freebsd
Christopher Ferrisd7a63292013-10-03 13:26:22 -0700668LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
Elliott Hughesf0777842013-03-01 16:59:46 -0800669LOCAL_SYSTEM_SHARED_LIBRARIES :=
670
Ying Wangf25d6772014-01-23 15:17:50 -0800671$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
Elliott Hughesf0777842013-03-01 16:59:46 -0800672include $(BUILD_STATIC_LIBRARY)
673
674
675# ========================================================
Elliott Hughesf8b3a922012-08-10 11:39:58 -0700676# libc_netbsd.a - upstream NetBSD C library code
677# ========================================================
678#
679# These files are built with the netbsd-compat.h header file
680# automatically included.
681
682include $(CLEAR_VARS)
683
684LOCAL_SRC_FILES := $(libc_upstream_netbsd_src_files)
685LOCAL_CFLAGS := \
686 $(libc_common_cflags) \
Elliott Hughes9a5a3e82014-05-05 20:28:28 -0700687 -Wno-sign-compare -Wno-uninitialized \
Elliott Hughes4c2da032014-05-16 16:50:34 -0700688 -Werror \
Elliott Hugheseb847bc2013-10-09 15:50:50 -0700689 -DPOSIX_MISTAKE \
Elliott Hughesd39f3f22014-04-21 17:13:46 -0700690 -I$(LOCAL_PATH)/upstream-netbsd/android/include \
Elliott Hughes677b6e62014-02-20 14:15:09 -0800691 -I$(LOCAL_PATH)/upstream-netbsd/lib/libc/include \
Elliott Hughes4c2da032014-05-16 16:50:34 -0700692 -include netbsd-compat.h \
693
Stephen Hines762cea42013-09-30 17:10:53 -0700694LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
695LOCAL_CPPFLAGS := $(libc_common_cppflags)
Elliott Hughesf8b3a922012-08-10 11:39:58 -0700696LOCAL_C_INCLUDES := $(libc_common_c_includes)
697LOCAL_MODULE := libc_netbsd
Christopher Ferrisd7a63292013-10-03 13:26:22 -0700698LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
Elliott Hughesf8b3a922012-08-10 11:39:58 -0700699LOCAL_SYSTEM_SHARED_LIBRARIES :=
700
Ying Wangf25d6772014-01-23 15:17:50 -0800701$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
Elliott Hughesf8b3a922012-08-10 11:39:58 -0700702include $(BUILD_STATIC_LIBRARY)
703
704
705# ========================================================
Elliott Hughes01339442014-02-20 18:04:58 -0800706# libc_openbsd.a - upstream OpenBSD C library code
707# ========================================================
708#
709# These files are built with the openbsd-compat.h header file
710# automatically included.
711
712include $(CLEAR_VARS)
713
Elliott Hughes53e43292014-02-24 18:00:43 -0800714LOCAL_SRC_FILES := $(libc_upstream_openbsd_src_files)
Elliott Hughes01339442014-02-20 18:04:58 -0800715LOCAL_CFLAGS := \
716 $(libc_common_cflags) \
Elliott Hughesd2867962014-06-03 15:22:34 -0700717 -Wno-sign-compare -Wno-uninitialized -Wno-unused-parameter \
Elliott Hughes4c2da032014-05-16 16:50:34 -0700718 -Werror \
Elliott Hughesd39f3f22014-04-21 17:13:46 -0700719 -I$(LOCAL_PATH)/upstream-openbsd/android/include \
Elliott Hughes01339442014-02-20 18:04:58 -0800720 -I$(LOCAL_PATH)/upstream-openbsd/lib/libc/include \
Elliott Hughesf1ada792014-05-02 17:56:56 -0700721 -I$(LOCAL_PATH)/upstream-openbsd/lib/libc/gdtoa/ \
Elliott Hughes4c2da032014-05-16 16:50:34 -0700722 -include openbsd-compat.h \
723
Elliott Hughes01339442014-02-20 18:04:58 -0800724LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
725LOCAL_CPPFLAGS := $(libc_common_cppflags)
726LOCAL_C_INCLUDES := $(libc_common_c_includes)
727LOCAL_MODULE := libc_openbsd
728LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
729LOCAL_SYSTEM_SHARED_LIBRARIES :=
730
731$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
732include $(BUILD_STATIC_LIBRARY)
733
734
735# ========================================================
Elliott Hughes4bd97ce2014-04-10 17:48:14 -0700736# libc_gdtoa.a - upstream OpenBSD C library gdtoa code
737# ========================================================
738#
739# These files are built with the openbsd-compat.h header file
740# automatically included.
741
742include $(CLEAR_VARS)
743
744LOCAL_SRC_FILES_32 := $(libc_upstream_openbsd_gdtoa_src_files_32)
745LOCAL_SRC_FILES_64 := $(libc_upstream_openbsd_gdtoa_src_files_64)
746LOCAL_CFLAGS := \
747 $(libc_common_cflags) \
Elliott Hughes9a5a3e82014-05-05 20:28:28 -0700748 -Wno-sign-compare -Wno-uninitialized \
Elliott Hughes4c2da032014-05-16 16:50:34 -0700749 -Werror \
Elliott Hughescce36c12014-04-22 12:32:49 -0700750 -fvisibility=hidden \
Elliott Hughesd39f3f22014-04-21 17:13:46 -0700751 -I$(LOCAL_PATH)/upstream-openbsd/android/include \
Elliott Hughes4bd97ce2014-04-10 17:48:14 -0700752 -I$(LOCAL_PATH)/upstream-openbsd/lib/libc/include \
Elliott Hughesd39f3f22014-04-21 17:13:46 -0700753 -include openbsd-compat.h \
Elliott Hughes4bd97ce2014-04-10 17:48:14 -0700754
755LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
756LOCAL_CPPFLAGS := $(libc_common_cppflags)
757LOCAL_C_INCLUDES := $(libc_common_c_includes)
758LOCAL_MODULE := libc_gdtoa
759LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
760LOCAL_SYSTEM_SHARED_LIBRARIES :=
761
762$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
763include $(BUILD_STATIC_LIBRARY)
764
765
766# ========================================================
Elliott Hughes29c7f0b2012-10-22 17:05:27 -0700767# libc_bionic.a - home-grown C library code
768# ========================================================
Elliott Hughese7c59f92013-12-17 20:47:06 -0800769
Elliott Hughes29c7f0b2012-10-22 17:05:27 -0700770include $(CLEAR_VARS)
771
772LOCAL_SRC_FILES := $(libc_bionic_src_files)
Elliott Hughesb6943182014-05-13 10:14:22 -0700773LOCAL_CFLAGS := $(libc_common_cflags) \
774 -Werror \
775 -Wframe-larger-than=2048 \
776
Stephen Hines762cea42013-09-30 17:10:53 -0700777LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
778LOCAL_CPPFLAGS := $(libc_common_cppflags)
Elliott Hughes29c7f0b2012-10-22 17:05:27 -0700779LOCAL_C_INCLUDES := $(libc_common_c_includes)
780LOCAL_MODULE := libc_bionic
Christopher Ferrisd7a63292013-10-03 13:26:22 -0700781LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
Elliott Hughes29c7f0b2012-10-22 17:05:27 -0700782LOCAL_SYSTEM_SHARED_LIBRARIES :=
783
Mark Salyzync1005aa2014-03-12 09:27:53 -0700784ifneq ($(TARGET_USES_LOGD),false)
Mark Salyzynf3829282014-03-03 11:00:08 -0800785LOCAL_CFLAGS += -DTARGET_USES_LOGD
786endif
787
Ying Wangf25d6772014-01-23 15:17:50 -0800788$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
789$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_bionic_src_files))
Elliott Hughes29c7f0b2012-10-22 17:05:27 -0700790include $(BUILD_STATIC_LIBRARY)
791
792
793# ========================================================
Elliott Hughesb3a23bd2014-02-11 13:32:02 -0800794# libc_syscalls.a
795# ========================================================
796
797include $(CLEAR_VARS)
798
Ying Wangf25d6772014-01-23 15:17:50 -0800799LOCAL_SRC_FILES_$(TARGET_ARCH) := $(call all-S-files-under,arch-$(TARGET_ARCH)/syscalls)
800ifdef TARGET_2ND_ARCH
801LOCAL_SRC_FILES_$(TARGET_2ND_ARCH) := $(call all-S-files-under,arch-$(TARGET_2ND_ARCH)/syscalls)
802endif
Elliott Hughesb3a23bd2014-02-11 13:32:02 -0800803LOCAL_MODULE := libc_syscalls
804LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
805LOCAL_SYSTEM_SHARED_LIBRARIES :=
806
807include $(BUILD_STATIC_LIBRARY)
808
809
810# ========================================================
Dima Zavinca122b02009-05-27 10:52:37 -0700811# libc_common.a
812# ========================================================
Elliott Hughesf8b3a922012-08-10 11:39:58 -0700813
Dima Zavinca122b02009-05-27 10:52:37 -0700814include $(CLEAR_VARS)
815
816LOCAL_SRC_FILES := $(libc_common_src_files)
Elliott Hugheseb847bc2013-10-09 15:50:50 -0700817LOCAL_CFLAGS := $(libc_common_cflags)
Stephen Hines762cea42013-09-30 17:10:53 -0700818LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
819LOCAL_CPPFLAGS := $(libc_common_cppflags)
Dima Zavinca122b02009-05-27 10:52:37 -0700820LOCAL_C_INCLUDES := $(libc_common_c_includes)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800821LOCAL_MODULE := libc_common
Christopher Ferrisd7a63292013-10-03 13:26:22 -0700822LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
Elliott Hughesce4783c2013-07-12 17:31:11 -0700823LOCAL_WHOLE_STATIC_LIBRARIES := \
Elliott Hughesce4783c2013-07-12 17:31:11 -0700824 libc_bionic \
Elliott Hugheseb847bc2013-10-09 15:50:50 -0700825 libc_dns \
Elliott Hughesce4783c2013-07-12 17:31:11 -0700826 libc_freebsd \
Elliott Hughes4bd97ce2014-04-10 17:48:14 -0700827 libc_gdtoa \
Elliott Hughes9b5235d2014-06-03 18:47:17 -0700828 libc_malloc \
Elliott Hughesce4783c2013-07-12 17:31:11 -0700829 libc_netbsd \
Elliott Hughes01339442014-02-20 18:04:58 -0800830 libc_openbsd \
Elliott Hughes6380b512014-03-10 16:15:11 -0700831 libc_stack_protector \
Elliott Hughesb3a23bd2014-02-11 13:32:02 -0800832 libc_syscalls \
Elliott Hugheseb847bc2013-10-09 15:50:50 -0700833 libc_tzcode \
834
Christopher Ferris72bbd422014-05-08 11:14:03 -0700835ifeq ($(MALLOC_IMPL),jemalloc)
Elliott Hughes9b5235d2014-06-03 18:47:17 -0700836LOCAL_WHOLE_STATIC_LIBRARIES += libjemalloc
Christopher Ferris72bbd422014-05-08 11:14:03 -0700837endif
838
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800839LOCAL_SYSTEM_SHARED_LIBRARIES :=
840
Ying Wangc97c5fc2012-08-11 14:23:19 -0700841# TODO: split out the asflags.
842LOCAL_ASFLAGS := $(LOCAL_CFLAGS)
843
Ying Wangf25d6772014-01-23 15:17:50 -0800844$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
845$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_common_src_files))
846$(eval $(call patch-up-arch-specific-flags,LOCAL_ASFLAGS,LOCAL_CFLAGS))
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800847include $(BUILD_STATIC_LIBRARY)
848
849
Dima Zavinca122b02009-05-27 10:52:37 -0700850# ========================================================
Dima Zavin49e55332009-05-27 10:52:37 -0700851# libc_nomalloc.a
852# ========================================================
853#
854# This is a version of the static C library that does not
Elliott Hughes91a99252013-02-12 21:56:42 -0800855# include malloc. It's useful in situations when the user wants
856# to provide their own malloc implementation, or wants to
Christopher Ferris9029d2f2014-05-15 18:12:11 -0700857# explicitly disallow the use of malloc, such as in the
858# dynamic linker.
Dima Zavin49e55332009-05-27 10:52:37 -0700859
860include $(CLEAR_VARS)
861
862LOCAL_SRC_FILES := \
Ying Wangf25d6772014-01-23 15:17:50 -0800863 $(libc_arch_static_src_files) \
864 $(libc_static_common_src_files) \
865 bionic/libc_init_static.cpp
Dima Zavin49e55332009-05-27 10:52:37 -0700866
867LOCAL_C_INCLUDES := $(libc_common_c_includes)
David 'Digit' Turner6a51def2010-08-27 08:19:19 -0700868LOCAL_CFLAGS := $(libc_common_cflags) \
Elliott Hughes4c2da032014-05-16 16:50:34 -0700869 -DLIBC_STATIC \
870 -Werror \
871
Stephen Hines762cea42013-09-30 17:10:53 -0700872LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
873LOCAL_CPPFLAGS := $(libc_common_cppflags)
Dima Zavin49e55332009-05-27 10:52:37 -0700874
875LOCAL_MODULE := libc_nomalloc
Christopher Ferrisd7a63292013-10-03 13:26:22 -0700876LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
Dima Zavin49e55332009-05-27 10:52:37 -0700877LOCAL_WHOLE_STATIC_LIBRARIES := libc_common
878LOCAL_SYSTEM_SHARED_LIBRARIES :=
879
Ying Wangf25d6772014-01-23 15:17:50 -0800880$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
881$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_arch_static_src_files))
Dima Zavin49e55332009-05-27 10:52:37 -0700882include $(BUILD_STATIC_LIBRARY)
883
884
885# ========================================================
Elliott Hughes9b5235d2014-06-03 18:47:17 -0700886# libc_malloc.a: the _prefixed_ malloc functions (like dlcalloc).
887# ========================================================
888
889include $(CLEAR_VARS)
890LOCAL_SRC_FILES := $(libc_malloc_src)
891LOCAL_CFLAGS := $(libc_common_cflags) \
892 -Werror \
893 -fvisibility=hidden \
894
895LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
896LOCAL_CPPFLAGS := $(libc_common_cppflags)
897LOCAL_C_INCLUDES := $(libc_common_c_includes)
898LOCAL_MODULE := libc_malloc
899LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
900include $(BUILD_STATIC_LIBRARY)
901
902
903# ========================================================
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800904# libc.a
905# ========================================================
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800906include $(CLEAR_VARS)
907
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800908LOCAL_SRC_FILES := \
Ying Wangf25d6772014-01-23 15:17:50 -0800909 $(libc_arch_static_src_files) \
910 $(libc_static_common_src_files) \
Ying Wangf25d6772014-01-23 15:17:50 -0800911 bionic/malloc_debug_common.cpp \
912 bionic/libc_init_static.cpp \
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800913
Vladimir Chtchetkineb74ceb22009-11-17 14:13:38 -0800914LOCAL_CFLAGS := $(libc_common_cflags) \
Elliott Hughes4c2da032014-05-16 16:50:34 -0700915 -DLIBC_STATIC \
916 -Werror \
917
Stephen Hines762cea42013-09-30 17:10:53 -0700918LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
919LOCAL_CPPFLAGS := $(libc_common_cppflags)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800920LOCAL_C_INCLUDES := $(libc_common_c_includes)
Dima Zavinca122b02009-05-27 10:52:37 -0700921LOCAL_MODULE := libc
Christopher Ferrisd7a63292013-10-03 13:26:22 -0700922LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800923LOCAL_WHOLE_STATIC_LIBRARIES := libc_common
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800924LOCAL_SYSTEM_SHARED_LIBRARIES :=
925
Ying Wangf25d6772014-01-23 15:17:50 -0800926$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
927$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_arch_static_src_files))
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800928include $(BUILD_STATIC_LIBRARY)
929
930
Dima Zavinca122b02009-05-27 10:52:37 -0700931# ========================================================
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800932# libc.so
933# ========================================================
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800934include $(CLEAR_VARS)
935
Elliott Hughes4c2da032014-05-16 16:50:34 -0700936LOCAL_CFLAGS := $(libc_common_cflags) -Werror
Stephen Hines762cea42013-09-30 17:10:53 -0700937LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
938LOCAL_CPPFLAGS := $(libc_common_cppflags)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800939LOCAL_C_INCLUDES := $(libc_common_c_includes)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800940LOCAL_SRC_FILES := \
Elliott Hughese7c59f92013-12-17 20:47:06 -0800941 $(libc_arch_dynamic_src_files) \
942 $(libc_static_common_src_files) \
Elliott Hughese7c59f92013-12-17 20:47:06 -0800943 bionic/malloc_debug_common.cpp \
944 bionic/debug_mapinfo.cpp \
945 bionic/debug_stacktrace.cpp \
Elliott Hughese7c59f92013-12-17 20:47:06 -0800946 bionic/libc_init_dynamic.cpp \
Sreeram Ramachandran06e87962014-05-13 16:30:12 -0700947 bionic/NetdClient.cpp \
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800948
Elliott Hughes4bd97ce2014-04-10 17:48:14 -0700949LOCAL_MODULE := libc
Christopher Ferrisd7a63292013-10-03 13:26:22 -0700950LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
Elliott Hughes914d8d42012-10-18 11:28:56 -0700951LOCAL_REQUIRED_MODULES := tzdata
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800952
Christopher Ferris0ae64452014-03-21 11:11:38 -0700953# Leave the symbols in the shared library so that stack unwinders can produce
954# meaningful name resolution.
955LOCAL_STRIP_MODULE := keep_symbols
956
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800957# WARNING: The only library libc.so should depend on is libdl.so! If you add other libraries,
958# make sure to add -Wl,--exclude-libs=libgcc.a to the LOCAL_LDFLAGS for those libraries. This
959# ensures that symbols that are pulled into those new libraries from libgcc.a are not declared
960# external; if that were the case, then libc would not pull those symbols from libgcc.a as it
961# should, instead relying on the external symbols from the dependent libraries. That would
Elliott Hughes4bd97ce2014-04-10 17:48:14 -0700962# create a "cloaked" dependency on libgcc.a in libc though the libraries, which is not what
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800963# you wanted!
964
965LOCAL_SHARED_LIBRARIES := libdl
966LOCAL_WHOLE_STATIC_LIBRARIES := libc_common
967LOCAL_SYSTEM_SHARED_LIBRARIES :=
968
Ying Wangf25d6772014-01-23 15:17:50 -0800969$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
Ying Wang76c8b882014-02-12 16:40:55 -0800970$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_arch_dynamic_src_files))
971$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_static_common_src_files))
Ying Wangf25d6772014-01-23 15:17:50 -0800972# special for arm
973LOCAL_NO_CRT_arm := true
974LOCAL_CFLAGS_arm += -DCRT_LEGACY_WORKAROUND
975LOCAL_SRC_FILES_arm += \
976 arch-common/bionic/crtbegin_so.c \
977 arch-arm/bionic/atexit_legacy.c \
978 arch-common/bionic/crtend_so.S
979
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800980include $(BUILD_SHARED_LIBRARY)
981
982
Vladimir Chtchetkineb74ceb22009-11-17 14:13:38 -0800983# For all builds, except for the -user build we will enable memory
984# allocation checking (including memory leaks, buffer overwrites, etc.)
985# Note that all these checks are also controlled by env. settings
986# that can enable, or disable specific checks. Note also that some of
987# the checks are available only in emulator and are implemeted in
988# libc_malloc_qemu_instrumented.so.
989ifneq ($(TARGET_BUILD_VARIANT),user)
990
Dima Zavinca122b02009-05-27 10:52:37 -0700991# ========================================================
Vladimir Chtchetkineb74ceb22009-11-17 14:13:38 -0800992# libc_malloc_debug_leak.so
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800993# ========================================================
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800994include $(CLEAR_VARS)
995
Dima Zavinca122b02009-05-27 10:52:37 -0700996LOCAL_CFLAGS := \
Ying Wangf25d6772014-01-23 15:17:50 -0800997 $(libc_common_cflags) \
Elliott Hughes4c2da032014-05-16 16:50:34 -0700998 -DMALLOC_LEAK_CHECK \
999 -Werror \
1000
Stephen Hines762cea42013-09-30 17:10:53 -07001001LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
1002LOCAL_CPPFLAGS := $(libc_common_cppflags)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001003
1004LOCAL_C_INCLUDES := $(libc_common_c_includes)
1005
1006LOCAL_SRC_FILES := \
Ying Wangf25d6772014-01-23 15:17:50 -08001007 bionic/debug_mapinfo.cpp \
1008 bionic/debug_stacktrace.cpp \
1009 bionic/malloc_debug_leak.cpp \
1010 bionic/malloc_debug_check.cpp \
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001011
Elliott Hughes4bd97ce2014-04-10 17:48:14 -07001012LOCAL_MODULE := libc_malloc_debug_leak
Christopher Ferrisd7a63292013-10-03 13:26:22 -07001013LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001014
Pavel Chupine0077752012-09-10 19:35:25 +04001015LOCAL_SHARED_LIBRARIES := libc libdl
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001016LOCAL_WHOLE_STATIC_LIBRARIES := libc_common
1017LOCAL_SYSTEM_SHARED_LIBRARIES :=
Bruce Beareaa46fa22010-07-08 14:47:50 -07001018LOCAL_ALLOW_UNDEFINED_SYMBOLS := true
Iliyan Malchev36807042011-03-14 14:02:05 -07001019
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001020# Don't install on release build
Vladimir Chtchetkineb74ceb22009-11-17 14:13:38 -08001021LOCAL_MODULE_TAGS := eng debug
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001022
Ying Wangf25d6772014-01-23 15:17:50 -08001023$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001024include $(BUILD_SHARED_LIBRARY)
1025
Vladimir Chtchetkineb74ceb22009-11-17 14:13:38 -08001026
1027# ========================================================
1028# libc_malloc_debug_qemu.so
1029# ========================================================
1030include $(CLEAR_VARS)
1031
1032LOCAL_CFLAGS := \
Ying Wangf25d6772014-01-23 15:17:50 -08001033 $(libc_common_cflags) \
Elliott Hughes4c2da032014-05-16 16:50:34 -07001034 -DMALLOC_QEMU_INSTRUMENT \
1035 -Werror \
1036
Stephen Hines762cea42013-09-30 17:10:53 -07001037LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
1038LOCAL_CPPFLAGS := $(libc_common_cppflags)
Vladimir Chtchetkineb74ceb22009-11-17 14:13:38 -08001039
1040LOCAL_C_INCLUDES := $(libc_common_c_includes)
1041
1042LOCAL_SRC_FILES := \
Ying Wangf25d6772014-01-23 15:17:50 -08001043 bionic/malloc_debug_qemu.cpp
Vladimir Chtchetkineb74ceb22009-11-17 14:13:38 -08001044
Elliott Hughes4bd97ce2014-04-10 17:48:14 -07001045LOCAL_MODULE := libc_malloc_debug_qemu
Christopher Ferrisd7a63292013-10-03 13:26:22 -07001046LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
Vladimir Chtchetkineb74ceb22009-11-17 14:13:38 -08001047
Mathias Agopian7c0c3792011-09-05 23:54:55 -07001048LOCAL_SHARED_LIBRARIES := libc libdl
Vladimir Chtchetkineb74ceb22009-11-17 14:13:38 -08001049LOCAL_WHOLE_STATIC_LIBRARIES := libc_common
1050LOCAL_SYSTEM_SHARED_LIBRARIES :=
Iliyan Malchev36807042011-03-14 14:02:05 -07001051
Vladimir Chtchetkineb74ceb22009-11-17 14:13:38 -08001052# Don't install on release build
1053LOCAL_MODULE_TAGS := eng debug
1054
Ying Wangf25d6772014-01-23 15:17:50 -08001055$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
Vladimir Chtchetkineb74ceb22009-11-17 14:13:38 -08001056include $(BUILD_SHARED_LIBRARY)
1057
Ying Wangf25d6772014-01-23 15:17:50 -08001058endif #!user
Vladimir Chtchetkineb74ceb22009-11-17 14:13:38 -08001059
1060
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001061# ========================================================
1062include $(call all-makefiles-under,$(LOCAL_PATH))