Android.mk revision ac6467587e864d199377f14281da4641f979a68a
1LOCAL_PATH := $(call my-dir)
2
3# Make everything depend on any changes to included makefiles.
4libc_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
36
37# Define the common source files for all the libc instances
38# =========================================================
39libc_common_src_files := \
40    bionic/arc4random.c \
41    bionic/bindresvport.c \
42    bionic/daemon.c \
43    bionic/err.c \
44    bionic/ether_aton.c \
45    bionic/ether_ntoa.c \
46    bionic/fts.c \
47    bionic/gethostname.c \
48    bionic/getpriority.c \
49    bionic/getpt.c \
50    bionic/if_indextoname.c \
51    bionic/if_nametoindex.c \
52    bionic/initgroups.c \
53    bionic/ioctl.c \
54    bionic/isatty.c \
55    bionic/memmem.c \
56    bionic/pathconf.c \
57    bionic/ptsname.c \
58    bionic/ptsname_r.c \
59    bionic/pututline.c \
60    bionic/sched_cpualloc.c \
61    bionic/sched_cpucount.c \
62    bionic/semaphore.c \
63    bionic/sigblock.c \
64    bionic/siginterrupt.c \
65    bionic/sigsetmask.c \
66    bionic/system_properties_compat.c \
67    bionic/unlockpt.c \
68    stdio/snprintf.c\
69    stdio/sprintf.c \
70    stdlib/atexit.c \
71    unistd/syslog.c \
72
73# Fortify implementations of libc functions.
74libc_common_src_files += \
75    bionic/__FD_chk.cpp \
76    bionic/__fgets_chk.cpp \
77    bionic/__memmove_chk.cpp \
78    bionic/__read_chk.cpp \
79    bionic/__recvfrom_chk.cpp \
80    bionic/__stpcpy_chk.cpp \
81    bionic/__stpncpy_chk.cpp \
82    bionic/__strchr_chk.cpp \
83    bionic/__strlcat_chk.cpp \
84    bionic/__strlcpy_chk.cpp \
85    bionic/__strlen_chk.cpp \
86    bionic/__strncat_chk.cpp \
87    bionic/__strncpy_chk.cpp \
88    bionic/__strrchr_chk.cpp \
89    bionic/__umask_chk.cpp \
90    bionic/__vsnprintf_chk.cpp \
91    bionic/__vsprintf_chk.cpp \
92
93libc_bionic_src_files := \
94    bionic/abort.cpp \
95    bionic/accept.cpp \
96    bionic/accept4.cpp \
97    bionic/access.cpp \
98    bionic/assert.cpp \
99    bionic/atof.cpp \
100    bionic/__bionic_name_mem.cpp \
101    bionic/bionic_time_conversions.cpp \
102    bionic/brk.cpp \
103    bionic/c16rtomb.cpp \
104    bionic/c32rtomb.cpp \
105    bionic/chmod.cpp \
106    bionic/chown.cpp \
107    bionic/clearenv.cpp \
108    bionic/clock.cpp \
109    bionic/clone.cpp \
110    bionic/cmsg_nxthdr.cpp \
111    bionic/connect.cpp \
112    bionic/__cxa_guard.cpp \
113    bionic/__cxa_pure_virtual.cpp \
114    bionic/dirent.cpp \
115    bionic/dup2.cpp \
116    bionic/epoll_create.cpp \
117    bionic/epoll_pwait.cpp \
118    bionic/epoll_wait.cpp \
119    bionic/__errno.cpp \
120    bionic/eventfd_read.cpp \
121    bionic/eventfd_write.cpp \
122    bionic/ffs.cpp \
123    bionic/flockfile.cpp \
124    bionic/fork.cpp \
125    bionic/fpclassify.cpp \
126    bionic/futimens.cpp \
127    bionic/getauxval.cpp \
128    bionic/getcwd.cpp \
129    bionic/getpgrp.cpp \
130    bionic/gettid.cpp \
131    bionic/inotify_init.cpp \
132    bionic/lchown.cpp \
133    bionic/lfs64_support.cpp \
134    bionic/__libc_current_sigrtmax.cpp \
135    bionic/__libc_current_sigrtmin.cpp \
136    bionic/libc_init_common.cpp \
137    bionic/libc_logging.cpp \
138    bionic/libgen.cpp \
139    bionic/link.cpp \
140    bionic/locale.cpp \
141    bionic/lstat.cpp \
142    bionic/mbrtoc16.cpp \
143    bionic/mbrtoc32.cpp \
144    bionic/mbstate.cpp \
145    bionic/mkdir.cpp \
146    bionic/mkfifo.cpp \
147    bionic/mknod.cpp \
148    bionic/mntent.cpp \
149    bionic/NetdClientDispatch.cpp \
150    bionic/new.cpp \
151    bionic/open.cpp \
152    bionic/pause.cpp \
153    bionic/pipe.cpp \
154    bionic/poll.cpp \
155    bionic/posix_fallocate.cpp \
156    bionic/posix_timers.cpp \
157    bionic/pthread_atfork.cpp \
158    bionic/pthread_attr.cpp \
159    bionic/pthread_cond.cpp \
160    bionic/pthread_create.cpp \
161    bionic/pthread_detach.cpp \
162    bionic/pthread_equal.cpp \
163    bionic/pthread_exit.cpp \
164    bionic/pthread_getcpuclockid.cpp \
165    bionic/pthread_getschedparam.cpp \
166    bionic/pthread_internals.cpp \
167    bionic/pthread_join.cpp \
168    bionic/pthread_key.cpp \
169    bionic/pthread_kill.cpp \
170    bionic/pthread_mutex.cpp \
171    bionic/pthread_once.cpp \
172    bionic/pthread_rwlock.cpp \
173    bionic/pthread_self.cpp \
174    bionic/pthread_setname_np.cpp \
175    bionic/pthread_setschedparam.cpp \
176    bionic/pthread_sigmask.cpp \
177    bionic/ptrace.cpp \
178    bionic/raise.cpp \
179    bionic/readlink.cpp \
180    bionic/reboot.cpp \
181    bionic/recv.cpp \
182    bionic/rename.cpp \
183    bionic/rmdir.cpp \
184    bionic/scandir.cpp \
185    bionic/sched_getaffinity.cpp \
186    bionic/sched_getcpu.cpp \
187    bionic/send.cpp \
188    bionic/setegid.cpp \
189    bionic/__set_errno.cpp \
190    bionic/seteuid.cpp \
191    bionic/setpgrp.cpp \
192    bionic/sigaction.cpp \
193    bionic/sigaddset.cpp \
194    bionic/sigdelset.cpp \
195    bionic/sigemptyset.cpp \
196    bionic/sigfillset.cpp \
197    bionic/sigismember.cpp \
198    bionic/signal.cpp \
199    bionic/signalfd.cpp \
200    bionic/sigpending.cpp \
201    bionic/sigprocmask.cpp \
202    bionic/sigsuspend.cpp \
203    bionic/sigwait.cpp \
204    bionic/socket.cpp \
205    bionic/stat.cpp \
206    bionic/statvfs.cpp \
207    bionic/strerror.cpp \
208    bionic/strerror_r.cpp \
209    bionic/strsignal.cpp \
210    bionic/strtold.cpp \
211    bionic/stubs.cpp \
212    bionic/symlink.cpp \
213    bionic/sysconf.cpp \
214    bionic/sys_siglist.c \
215    bionic/sys_signame.c \
216    bionic/system_properties.cpp \
217    bionic/tdestroy.cpp \
218    bionic/termios.cpp \
219    bionic/thread_atexit.cpp \
220    bionic/tmpfile.cpp \
221    bionic/umount.cpp \
222    bionic/unlink.cpp \
223    bionic/utimes.cpp \
224    bionic/vfork.cpp \
225    bionic/wait.cpp \
226    bionic/wchar.cpp \
227    bionic/wctype.cpp \
228
229libc_upstream_freebsd_src_files := \
230    upstream-freebsd/lib/libc/gen/ldexp.c \
231    upstream-freebsd/lib/libc/gen/sleep.c \
232    upstream-freebsd/lib/libc/gen/usleep.c \
233    upstream-freebsd/lib/libc/stdio/fclose.c \
234    upstream-freebsd/lib/libc/stdio/flags.c \
235    upstream-freebsd/lib/libc/stdio/fopen.c \
236    upstream-freebsd/lib/libc/stdio/mktemp.c \
237    upstream-freebsd/lib/libc/stdlib/abs.c \
238    upstream-freebsd/lib/libc/stdlib/getopt_long.c \
239    upstream-freebsd/lib/libc/stdlib/imaxabs.c \
240    upstream-freebsd/lib/libc/stdlib/imaxdiv.c \
241    upstream-freebsd/lib/libc/stdlib/labs.c \
242    upstream-freebsd/lib/libc/stdlib/llabs.c \
243    upstream-freebsd/lib/libc/stdlib/qsort.c \
244    upstream-freebsd/lib/libc/stdlib/quick_exit.c \
245    upstream-freebsd/lib/libc/stdlib/realpath.c \
246    upstream-freebsd/lib/libc/string/wcpcpy.c \
247    upstream-freebsd/lib/libc/string/wcpncpy.c \
248    upstream-freebsd/lib/libc/string/wcscasecmp.c \
249    upstream-freebsd/lib/libc/string/wcscspn.c \
250    upstream-freebsd/lib/libc/string/wcsdup.c \
251    upstream-freebsd/lib/libc/string/wcslcat.c \
252    upstream-freebsd/lib/libc/string/wcsncasecmp.c \
253    upstream-freebsd/lib/libc/string/wcsncat.c \
254    upstream-freebsd/lib/libc/string/wcsncmp.c \
255    upstream-freebsd/lib/libc/string/wcsncpy.c \
256    upstream-freebsd/lib/libc/string/wcsnlen.c \
257    upstream-freebsd/lib/libc/string/wcspbrk.c \
258    upstream-freebsd/lib/libc/string/wcsspn.c \
259    upstream-freebsd/lib/libc/string/wcstok.c \
260    upstream-freebsd/lib/libc/string/wmemchr.c \
261    upstream-freebsd/lib/libc/string/wmemcpy.c \
262    upstream-freebsd/lib/libc/string/wmemset.c \
263
264libc_upstream_netbsd_src_files := \
265    upstream-netbsd/common/lib/libc/hash/sha1/sha1.c \
266    upstream-netbsd/common/lib/libc/stdlib/random.c \
267    upstream-netbsd/lib/libc/gen/ftw.c \
268    upstream-netbsd/lib/libc/gen/nftw.c \
269    upstream-netbsd/lib/libc/gen/nice.c \
270    upstream-netbsd/lib/libc/gen/popen.c \
271    upstream-netbsd/lib/libc/gen/psignal.c \
272    upstream-netbsd/lib/libc/gen/utime.c \
273    upstream-netbsd/lib/libc/gen/utmp.c \
274    upstream-netbsd/lib/libc/regex/regcomp.c \
275    upstream-netbsd/lib/libc/regex/regerror.c \
276    upstream-netbsd/lib/libc/regex/regexec.c \
277    upstream-netbsd/lib/libc/regex/regfree.c \
278    upstream-netbsd/lib/libc/stdlib/bsearch.c \
279    upstream-netbsd/lib/libc/stdlib/div.c \
280    upstream-netbsd/lib/libc/stdlib/drand48.c \
281    upstream-netbsd/lib/libc/stdlib/erand48.c \
282    upstream-netbsd/lib/libc/stdlib/jrand48.c \
283    upstream-netbsd/lib/libc/stdlib/ldiv.c \
284    upstream-netbsd/lib/libc/stdlib/lldiv.c \
285    upstream-netbsd/lib/libc/stdlib/lrand48.c \
286    upstream-netbsd/lib/libc/stdlib/lsearch.c \
287    upstream-netbsd/lib/libc/stdlib/mrand48.c \
288    upstream-netbsd/lib/libc/stdlib/nrand48.c \
289    upstream-netbsd/lib/libc/stdlib/_rand48.c \
290    upstream-netbsd/lib/libc/stdlib/rand.c \
291    upstream-netbsd/lib/libc/stdlib/rand_r.c \
292    upstream-netbsd/lib/libc/stdlib/seed48.c \
293    upstream-netbsd/lib/libc/stdlib/srand48.c \
294    upstream-netbsd/lib/libc/stdlib/tdelete.c \
295    upstream-netbsd/lib/libc/stdlib/tfind.c \
296    upstream-netbsd/lib/libc/stdlib/tsearch.c \
297    upstream-netbsd/lib/libc/string/memccpy.c \
298    upstream-netbsd/lib/libc/string/strcasestr.c \
299    upstream-netbsd/lib/libc/string/strcoll.c \
300    upstream-netbsd/lib/libc/string/strxfrm.c \
301    upstream-netbsd/lib/libc/thread-stub/__isthreaded.c \
302    upstream-netbsd/lib/libc/unistd/killpg.c \
303
304libc_upstream_openbsd_gdtoa_src_files := \
305    upstream-openbsd/android/gdtoa_support.cpp \
306    upstream-openbsd/lib/libc/gdtoa/dmisc.c \
307    upstream-openbsd/lib/libc/gdtoa/dtoa.c \
308    upstream-openbsd/lib/libc/gdtoa/gdtoa.c \
309    upstream-openbsd/lib/libc/gdtoa/gethex.c \
310    upstream-openbsd/lib/libc/gdtoa/gmisc.c \
311    upstream-openbsd/lib/libc/gdtoa/hd_init.c \
312    upstream-openbsd/lib/libc/gdtoa/hdtoa.c \
313    upstream-openbsd/lib/libc/gdtoa/hexnan.c \
314    upstream-openbsd/lib/libc/gdtoa/ldtoa.c \
315    upstream-openbsd/lib/libc/gdtoa/misc.c \
316    upstream-openbsd/lib/libc/gdtoa/smisc.c \
317    upstream-openbsd/lib/libc/gdtoa/strtod.c \
318    upstream-openbsd/lib/libc/gdtoa/strtodg.c \
319    upstream-openbsd/lib/libc/gdtoa/strtof.c \
320    upstream-openbsd/lib/libc/gdtoa/strtord.c \
321    upstream-openbsd/lib/libc/gdtoa/sum.c \
322    upstream-openbsd/lib/libc/gdtoa/ulp.c \
323
324libc_upstream_openbsd_gdtoa_src_files_32 := \
325    $(libc_upstream_openbsd_gdtoa_src_files) \
326
327libc_upstream_openbsd_gdtoa_src_files_64 := \
328    $(libc_upstream_openbsd_gdtoa_src_files) \
329    upstream-openbsd/lib/libc/gdtoa/strtorQ.c \
330
331libc_upstream_openbsd_src_files := \
332    upstream-openbsd/lib/libc/gen/alarm.c \
333    upstream-openbsd/lib/libc/gen/ctype_.c \
334    upstream-openbsd/lib/libc/gen/exec.c \
335    upstream-openbsd/lib/libc/gen/fnmatch.c \
336    upstream-openbsd/lib/libc/gen/ftok.c \
337    upstream-openbsd/lib/libc/gen/getprogname.c \
338    upstream-openbsd/lib/libc/gen/isctype.c \
339    upstream-openbsd/lib/libc/gen/setprogname.c \
340    upstream-openbsd/lib/libc/gen/time.c \
341    upstream-openbsd/lib/libc/gen/tolower_.c \
342    upstream-openbsd/lib/libc/gen/toupper_.c \
343    upstream-openbsd/lib/libc/locale/btowc.c \
344    upstream-openbsd/lib/libc/locale/mbrlen.c \
345    upstream-openbsd/lib/libc/locale/mbstowcs.c \
346    upstream-openbsd/lib/libc/locale/mbtowc.c \
347    upstream-openbsd/lib/libc/locale/wcscoll.c \
348    upstream-openbsd/lib/libc/locale/wcstod.c \
349    upstream-openbsd/lib/libc/locale/wcstof.c \
350    upstream-openbsd/lib/libc/locale/wcstoimax.c \
351    upstream-openbsd/lib/libc/locale/wcstol.c \
352    upstream-openbsd/lib/libc/locale/wcstold.c \
353    upstream-openbsd/lib/libc/locale/wcstoll.c \
354    upstream-openbsd/lib/libc/locale/wcstombs.c \
355    upstream-openbsd/lib/libc/locale/wcstoul.c \
356    upstream-openbsd/lib/libc/locale/wcstoull.c \
357    upstream-openbsd/lib/libc/locale/wcstoumax.c \
358    upstream-openbsd/lib/libc/locale/wcsxfrm.c \
359    upstream-openbsd/lib/libc/locale/wctob.c \
360    upstream-openbsd/lib/libc/locale/wctomb.c \
361    upstream-openbsd/lib/libc/net/htonl.c \
362    upstream-openbsd/lib/libc/net/htons.c \
363    upstream-openbsd/lib/libc/net/inet_addr.c \
364    upstream-openbsd/lib/libc/net/inet_lnaof.c \
365    upstream-openbsd/lib/libc/net/inet_makeaddr.c \
366    upstream-openbsd/lib/libc/net/inet_netof.c \
367    upstream-openbsd/lib/libc/net/inet_network.c \
368    upstream-openbsd/lib/libc/net/inet_ntoa.c \
369    upstream-openbsd/lib/libc/net/inet_ntop.c \
370    upstream-openbsd/lib/libc/net/inet_pton.c \
371    upstream-openbsd/lib/libc/net/ntohl.c \
372    upstream-openbsd/lib/libc/net/ntohs.c \
373    upstream-openbsd/lib/libc/stdio/asprintf.c \
374    upstream-openbsd/lib/libc/stdio/clrerr.c \
375    upstream-openbsd/lib/libc/stdio/dprintf.c \
376    upstream-openbsd/lib/libc/stdio/fdopen.c \
377    upstream-openbsd/lib/libc/stdio/feof.c \
378    upstream-openbsd/lib/libc/stdio/ferror.c \
379    upstream-openbsd/lib/libc/stdio/fflush.c \
380    upstream-openbsd/lib/libc/stdio/fgetc.c \
381    upstream-openbsd/lib/libc/stdio/fgetln.c \
382    upstream-openbsd/lib/libc/stdio/fgetpos.c \
383    upstream-openbsd/lib/libc/stdio/fgets.c \
384    upstream-openbsd/lib/libc/stdio/fgetwc.c \
385    upstream-openbsd/lib/libc/stdio/fgetws.c \
386    upstream-openbsd/lib/libc/stdio/fileno.c \
387    upstream-openbsd/lib/libc/stdio/findfp.c \
388    upstream-openbsd/lib/libc/stdio/fprintf.c \
389    upstream-openbsd/lib/libc/stdio/fpurge.c \
390    upstream-openbsd/lib/libc/stdio/fputc.c \
391    upstream-openbsd/lib/libc/stdio/fputs.c \
392    upstream-openbsd/lib/libc/stdio/fputwc.c \
393    upstream-openbsd/lib/libc/stdio/fputws.c \
394    upstream-openbsd/lib/libc/stdio/fread.c \
395    upstream-openbsd/lib/libc/stdio/freopen.c \
396    upstream-openbsd/lib/libc/stdio/fscanf.c \
397    upstream-openbsd/lib/libc/stdio/fseek.c \
398    upstream-openbsd/lib/libc/stdio/fsetpos.c \
399    upstream-openbsd/lib/libc/stdio/ftell.c \
400    upstream-openbsd/lib/libc/stdio/funopen.c \
401    upstream-openbsd/lib/libc/stdio/fvwrite.c \
402    upstream-openbsd/lib/libc/stdio/fwalk.c \
403    upstream-openbsd/lib/libc/stdio/fwide.c \
404    upstream-openbsd/lib/libc/stdio/fwprintf.c \
405    upstream-openbsd/lib/libc/stdio/fwrite.c \
406    upstream-openbsd/lib/libc/stdio/fwscanf.c \
407    upstream-openbsd/lib/libc/stdio/getc.c \
408    upstream-openbsd/lib/libc/stdio/getchar.c \
409    upstream-openbsd/lib/libc/stdio/getdelim.c \
410    upstream-openbsd/lib/libc/stdio/getline.c \
411    upstream-openbsd/lib/libc/stdio/gets.c \
412    upstream-openbsd/lib/libc/stdio/getwc.c \
413    upstream-openbsd/lib/libc/stdio/getwchar.c \
414    upstream-openbsd/lib/libc/stdio/makebuf.c \
415    upstream-openbsd/lib/libc/stdio/perror.c \
416    upstream-openbsd/lib/libc/stdio/printf.c \
417    upstream-openbsd/lib/libc/stdio/putc.c \
418    upstream-openbsd/lib/libc/stdio/putchar.c \
419    upstream-openbsd/lib/libc/stdio/puts.c \
420    upstream-openbsd/lib/libc/stdio/putwc.c \
421    upstream-openbsd/lib/libc/stdio/putwchar.c \
422    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 \
429    upstream-openbsd/lib/libc/stdio/setvbuf.c \
430    upstream-openbsd/lib/libc/stdio/sscanf.c \
431    upstream-openbsd/lib/libc/stdio/stdio.c \
432    upstream-openbsd/lib/libc/stdio/swprintf.c \
433    upstream-openbsd/lib/libc/stdio/swscanf.c \
434    upstream-openbsd/lib/libc/stdio/tempnam.c \
435    upstream-openbsd/lib/libc/stdio/tmpnam.c \
436    upstream-openbsd/lib/libc/stdio/ungetc.c \
437    upstream-openbsd/lib/libc/stdio/ungetwc.c \
438    upstream-openbsd/lib/libc/stdio/vasprintf.c \
439    upstream-openbsd/lib/libc/stdio/vdprintf.c \
440    upstream-openbsd/lib/libc/stdio/vfprintf.c \
441    upstream-openbsd/lib/libc/stdio/vfscanf.c \
442    upstream-openbsd/lib/libc/stdio/vfwprintf.c \
443    upstream-openbsd/lib/libc/stdio/vfwscanf.c \
444    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 \
448    upstream-openbsd/lib/libc/stdio/vsscanf.c \
449    upstream-openbsd/lib/libc/stdio/vswprintf.c \
450    upstream-openbsd/lib/libc/stdio/vswscanf.c \
451    upstream-openbsd/lib/libc/stdio/vwprintf.c \
452    upstream-openbsd/lib/libc/stdio/vwscanf.c \
453    upstream-openbsd/lib/libc/stdio/wbuf.c \
454    upstream-openbsd/lib/libc/stdio/wprintf.c \
455    upstream-openbsd/lib/libc/stdio/wscanf.c \
456    upstream-openbsd/lib/libc/stdio/wsetup.c \
457    upstream-openbsd/lib/libc/stdlib/atoi.c \
458    upstream-openbsd/lib/libc/stdlib/atol.c \
459    upstream-openbsd/lib/libc/stdlib/atoll.c \
460    upstream-openbsd/lib/libc/stdlib/exit.c \
461    upstream-openbsd/lib/libc/stdlib/getenv.c \
462    upstream-openbsd/lib/libc/stdlib/setenv.c \
463    upstream-openbsd/lib/libc/stdlib/strtoimax.c \
464    upstream-openbsd/lib/libc/stdlib/strtol.c \
465    upstream-openbsd/lib/libc/stdlib/strtoll.c \
466    upstream-openbsd/lib/libc/stdlib/strtoul.c \
467    upstream-openbsd/lib/libc/stdlib/strtoull.c \
468    upstream-openbsd/lib/libc/stdlib/strtoumax.c \
469    upstream-openbsd/lib/libc/stdlib/system.c \
470    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 \
480    upstream-openbsd/lib/libc/string/wcsstr.c \
481    upstream-openbsd/lib/libc/string/wcswidth.c \
482
483libc_arch_static_src_files := \
484    bionic/dl_iterate_phdr_static.cpp \
485
486# Define some common cflags
487# ========================================================
488libc_common_cflags := \
489    -D_LIBC=1 \
490    -Wall -Wextra -Wunused \
491
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 \
497
498ifeq ($(strip $(DEBUG_BIONIC_LIBC)),true)
499  libc_common_cflags += -DDEBUG
500endif
501
502ifeq ($(MALLOC_IMPL),jemalloc)
503  libc_common_cflags += -DUSE_JEMALLOC
504  libc_malloc_src := bionic/jemalloc.cpp
505else
506  libc_common_cflags += -DUSE_DLMALLOC
507  libc_malloc_src := bionic/dlmalloc.c
508endif
509
510# 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
517# 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
524# Define some common conlyflags
525libc_common_conlyflags := \
526    -std=gnu99
527
528# Define some common cppflags
529libc_common_cppflags := \
530    -std=gnu++11
531
532# Define some common includes
533# ========================================================
534libc_common_c_includes := \
535    $(LOCAL_PATH)/stdlib  \
536    $(LOCAL_PATH)/stdio   \
537
538ifeq ($(MALLOC_IMPL),jemalloc)
539  libc_common_c_includes += external/jemalloc/include
540endif
541
542# ========================================================
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))
551endif
552endef
553
554
555# ========================================================
556# libc_stack_protector.a - stack protector code
557# ========================================================
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
565LOCAL_SRC_FILES := bionic/__stack_chk_fail.cpp
566LOCAL_CFLAGS := $(libc_common_cflags) -fno-stack-protector -Werror
567LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
568LOCAL_CPPFLAGS := $(libc_common_cppflags)
569LOCAL_C_INCLUDES := $(libc_common_c_includes)
570LOCAL_MODULE := libc_stack_protector
571LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
572LOCAL_SYSTEM_SHARED_LIBRARIES :=
573
574$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
575include $(BUILD_STATIC_LIBRARY)
576
577
578# ========================================================
579# libc_tzcode.a - upstream 'tzcode' code
580# ========================================================
581
582include $(CLEAR_VARS)
583
584LOCAL_SRC_FILES := $(call all-c-files-under,tzcode)
585# tzcode doesn't include wcsftime, so we use the OpenBSD one.
586LOCAL_SRC_FILES += upstream-openbsd/lib/libc/time/wcsftime.c
587
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
599LOCAL_CFLAGS += -DNO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU
600
601LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
602LOCAL_CPPFLAGS := $(libc_common_cppflags)
603LOCAL_C_INCLUDES := $(libc_common_c_includes) $(LOCAL_PATH)/tzcode/
604LOCAL_MODULE := libc_tzcode
605LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
606LOCAL_SYSTEM_SHARED_LIBRARIES :=
607
608$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
609include $(BUILD_STATIC_LIBRARY)
610
611
612# ========================================================
613# libc_dns.a - modified NetBSD DNS code
614# ========================================================
615
616include $(CLEAR_VARS)
617
618LOCAL_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
623LOCAL_CFLAGS := \
624    $(libc_common_cflags) \
625    -DANDROID_CHANGES \
626    -DINET6 \
627    -fvisibility=hidden \
628    -I$(LOCAL_PATH)/dns/include \
629    -I$(LOCAL_PATH)/private \
630    -I$(LOCAL_PATH)/upstream-netbsd/lib/libc/include \
631    -I$(LOCAL_PATH)/upstream-netbsd/android/include \
632    -include netbsd-compat.h \
633#    -Werror \
634
635LOCAL_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
642$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
643include $(BUILD_STATIC_LIBRARY)
644
645
646# ========================================================
647# 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) \
658    -Wno-sign-compare -Wno-uninitialized \
659    -I$(LOCAL_PATH)/upstream-freebsd/android/include \
660    -I$(LOCAL_PATH)/upstream-freebsd/lib/libc/include \
661    -include freebsd-compat.h \
662#    -Werror \
663
664LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
665LOCAL_CPPFLAGS := $(libc_common_cppflags)
666LOCAL_C_INCLUDES := $(libc_common_c_includes)
667LOCAL_MODULE := libc_freebsd
668LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
669LOCAL_SYSTEM_SHARED_LIBRARIES :=
670
671$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
672include $(BUILD_STATIC_LIBRARY)
673
674
675# ========================================================
676# 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) \
687    -Wno-sign-compare -Wno-uninitialized \
688    -Werror \
689    -DPOSIX_MISTAKE \
690    -I$(LOCAL_PATH)/upstream-netbsd/android/include \
691    -I$(LOCAL_PATH)/upstream-netbsd/lib/libc/include \
692    -include netbsd-compat.h \
693
694LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
695LOCAL_CPPFLAGS := $(libc_common_cppflags)
696LOCAL_C_INCLUDES := $(libc_common_c_includes)
697LOCAL_MODULE := libc_netbsd
698LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
699LOCAL_SYSTEM_SHARED_LIBRARIES :=
700
701$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
702include $(BUILD_STATIC_LIBRARY)
703
704
705# ========================================================
706# 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
714LOCAL_SRC_FILES := $(libc_upstream_openbsd_src_files)
715LOCAL_CFLAGS := \
716    $(libc_common_cflags) \
717    -Wno-sign-compare -Wno-uninitialized -Wno-unused-parameter \
718    -Werror \
719    -I$(LOCAL_PATH)/upstream-openbsd/android/include \
720    -I$(LOCAL_PATH)/upstream-openbsd/lib/libc/include \
721    -I$(LOCAL_PATH)/upstream-openbsd/lib/libc/gdtoa/ \
722    -include openbsd-compat.h \
723
724LOCAL_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# ========================================================
736# 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) \
748    -Wno-sign-compare -Wno-uninitialized \
749    -Werror \
750    -fvisibility=hidden \
751    -I$(LOCAL_PATH)/upstream-openbsd/android/include \
752    -I$(LOCAL_PATH)/upstream-openbsd/lib/libc/include \
753    -include openbsd-compat.h \
754
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# ========================================================
767# libc_bionic.a - home-grown C library code
768# ========================================================
769
770include $(CLEAR_VARS)
771
772LOCAL_SRC_FILES := $(libc_bionic_src_files)
773LOCAL_CFLAGS := $(libc_common_cflags) \
774    -Werror \
775    -Wframe-larger-than=2048 \
776
777LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
778LOCAL_CPPFLAGS := $(libc_common_cppflags)
779LOCAL_C_INCLUDES := $(libc_common_c_includes)
780LOCAL_MODULE := libc_bionic
781LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
782LOCAL_SYSTEM_SHARED_LIBRARIES :=
783
784ifneq ($(TARGET_USES_LOGD),false)
785LOCAL_CFLAGS += -DTARGET_USES_LOGD
786endif
787
788$(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))
790include $(BUILD_STATIC_LIBRARY)
791
792
793# ========================================================
794# libc_syscalls.a
795# ========================================================
796
797include $(CLEAR_VARS)
798
799LOCAL_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
803LOCAL_MODULE := libc_syscalls
804LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
805LOCAL_SYSTEM_SHARED_LIBRARIES :=
806
807include $(BUILD_STATIC_LIBRARY)
808
809
810# ========================================================
811# libc_common.a
812# ========================================================
813
814include $(CLEAR_VARS)
815
816LOCAL_SRC_FILES := $(libc_common_src_files)
817LOCAL_CFLAGS := $(libc_common_cflags)
818LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
819LOCAL_CPPFLAGS := $(libc_common_cppflags)
820LOCAL_C_INCLUDES := $(libc_common_c_includes)
821LOCAL_MODULE := libc_common
822LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
823LOCAL_WHOLE_STATIC_LIBRARIES := \
824    libc_bionic \
825    libc_dns \
826    libc_freebsd \
827    libc_gdtoa \
828    libc_malloc \
829    libc_netbsd \
830    libc_openbsd \
831    libc_stack_protector \
832    libc_syscalls \
833    libc_tzcode \
834
835ifeq ($(MALLOC_IMPL),jemalloc)
836LOCAL_WHOLE_STATIC_LIBRARIES += libjemalloc
837endif
838
839LOCAL_SYSTEM_SHARED_LIBRARIES :=
840
841# TODO: split out the asflags.
842LOCAL_ASFLAGS := $(LOCAL_CFLAGS)
843
844$(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))
847include $(BUILD_STATIC_LIBRARY)
848
849
850# ========================================================
851# libc_nomalloc.a
852# ========================================================
853#
854# This is a version of the static C library that does not
855# include malloc. It's useful in situations when the user wants
856# to provide their own malloc implementation, or wants to
857# explicitly disallow the use of malloc, such as in the
858# dynamic linker.
859
860include $(CLEAR_VARS)
861
862LOCAL_SRC_FILES := \
863    $(libc_arch_static_src_files) \
864    $(libc_static_common_src_files) \
865    bionic/libc_init_static.cpp
866
867LOCAL_C_INCLUDES := $(libc_common_c_includes)
868LOCAL_CFLAGS := $(libc_common_cflags) \
869    -DLIBC_STATIC \
870    -Werror \
871
872LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
873LOCAL_CPPFLAGS := $(libc_common_cppflags)
874
875LOCAL_MODULE := libc_nomalloc
876LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
877LOCAL_WHOLE_STATIC_LIBRARIES := libc_common
878LOCAL_SYSTEM_SHARED_LIBRARIES :=
879
880$(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))
882include $(BUILD_STATIC_LIBRARY)
883
884
885# ========================================================
886# 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# ========================================================
904# libc.a
905# ========================================================
906include $(CLEAR_VARS)
907
908LOCAL_SRC_FILES := \
909    $(libc_arch_static_src_files) \
910    $(libc_static_common_src_files) \
911    bionic/malloc_debug_common.cpp \
912    bionic/libc_init_static.cpp \
913
914LOCAL_CFLAGS := $(libc_common_cflags) \
915    -DLIBC_STATIC \
916    -Werror \
917
918LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
919LOCAL_CPPFLAGS := $(libc_common_cppflags)
920LOCAL_C_INCLUDES := $(libc_common_c_includes)
921LOCAL_MODULE := libc
922LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
923LOCAL_WHOLE_STATIC_LIBRARIES := libc_common
924LOCAL_SYSTEM_SHARED_LIBRARIES :=
925
926$(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))
928include $(BUILD_STATIC_LIBRARY)
929
930
931# ========================================================
932# libc.so
933# ========================================================
934include $(CLEAR_VARS)
935
936LOCAL_CFLAGS := $(libc_common_cflags) -Werror
937LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
938LOCAL_CPPFLAGS := $(libc_common_cppflags)
939LOCAL_C_INCLUDES := $(libc_common_c_includes)
940LOCAL_SRC_FILES := \
941    $(libc_arch_dynamic_src_files) \
942    $(libc_static_common_src_files) \
943    bionic/malloc_debug_common.cpp \
944    bionic/debug_mapinfo.cpp \
945    bionic/debug_stacktrace.cpp \
946    bionic/libc_init_dynamic.cpp \
947    bionic/NetdClient.cpp \
948
949LOCAL_MODULE := libc
950LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
951LOCAL_REQUIRED_MODULES := tzdata
952
953# Leave the symbols in the shared library so that stack unwinders can produce
954# meaningful name resolution.
955LOCAL_STRIP_MODULE := keep_symbols
956
957# 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
962# create a "cloaked" dependency on libgcc.a in libc though the libraries, which is not what
963# you wanted!
964
965LOCAL_SHARED_LIBRARIES := libdl
966LOCAL_WHOLE_STATIC_LIBRARIES := libc_common
967LOCAL_SYSTEM_SHARED_LIBRARIES :=
968
969$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
970$(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))
972# 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
980include $(BUILD_SHARED_LIBRARY)
981
982
983# 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
991# ========================================================
992# libc_malloc_debug_leak.so
993# ========================================================
994include $(CLEAR_VARS)
995
996LOCAL_CFLAGS := \
997    $(libc_common_cflags) \
998    -DMALLOC_LEAK_CHECK \
999    -Werror \
1000
1001LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
1002LOCAL_CPPFLAGS := $(libc_common_cppflags)
1003
1004LOCAL_C_INCLUDES := $(libc_common_c_includes)
1005
1006LOCAL_SRC_FILES := \
1007    bionic/debug_mapinfo.cpp \
1008    bionic/debug_stacktrace.cpp \
1009    bionic/malloc_debug_leak.cpp \
1010    bionic/malloc_debug_check.cpp \
1011
1012LOCAL_MODULE := libc_malloc_debug_leak
1013LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
1014
1015LOCAL_SHARED_LIBRARIES := libc libdl
1016LOCAL_WHOLE_STATIC_LIBRARIES := libc_common
1017LOCAL_SYSTEM_SHARED_LIBRARIES :=
1018LOCAL_ALLOW_UNDEFINED_SYMBOLS := true
1019
1020# Don't install on release build
1021LOCAL_MODULE_TAGS := eng debug
1022
1023$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
1024include $(BUILD_SHARED_LIBRARY)
1025
1026
1027# ========================================================
1028# libc_malloc_debug_qemu.so
1029# ========================================================
1030include $(CLEAR_VARS)
1031
1032LOCAL_CFLAGS := \
1033    $(libc_common_cflags) \
1034    -DMALLOC_QEMU_INSTRUMENT \
1035    -Werror \
1036
1037LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
1038LOCAL_CPPFLAGS := $(libc_common_cppflags)
1039
1040LOCAL_C_INCLUDES := $(libc_common_c_includes)
1041
1042LOCAL_SRC_FILES := \
1043    bionic/malloc_debug_qemu.cpp
1044
1045LOCAL_MODULE := libc_malloc_debug_qemu
1046LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
1047
1048LOCAL_SHARED_LIBRARIES := libc libdl
1049LOCAL_WHOLE_STATIC_LIBRARIES := libc_common
1050LOCAL_SYSTEM_SHARED_LIBRARIES :=
1051
1052# Don't install on release build
1053LOCAL_MODULE_TAGS := eng debug
1054
1055$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
1056include $(BUILD_SHARED_LIBRARY)
1057
1058endif  #!user
1059
1060
1061# ========================================================
1062include $(call all-makefiles-under,$(LOCAL_PATH))
1063