Android.mk revision a210cae724313604f8cbd49cc6deab1be5239083
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/getpid.cpp \
131    bionic/gettid.cpp \
132    bionic/inotify_init.cpp \
133    bionic/lchown.cpp \
134    bionic/lfs64_support.cpp \
135    bionic/__libc_current_sigrtmax.cpp \
136    bionic/__libc_current_sigrtmin.cpp \
137    bionic/libc_init_common.cpp \
138    bionic/libc_logging.cpp \
139    bionic/libgen.cpp \
140    bionic/link.cpp \
141    bionic/locale.cpp \
142    bionic/lstat.cpp \
143    bionic/mbrtoc16.cpp \
144    bionic/mbrtoc32.cpp \
145    bionic/mbstate.cpp \
146    bionic/mkdir.cpp \
147    bionic/mkfifo.cpp \
148    bionic/mknod.cpp \
149    bionic/mntent.cpp \
150    bionic/NetdClientDispatch.cpp \
151    bionic/new.cpp \
152    bionic/open.cpp \
153    bionic/pause.cpp \
154    bionic/pipe.cpp \
155    bionic/poll.cpp \
156    bionic/posix_fallocate.cpp \
157    bionic/posix_timers.cpp \
158    bionic/pthread_atfork.cpp \
159    bionic/pthread_attr.cpp \
160    bionic/pthread_cond.cpp \
161    bionic/pthread_create.cpp \
162    bionic/pthread_detach.cpp \
163    bionic/pthread_equal.cpp \
164    bionic/pthread_exit.cpp \
165    bionic/pthread_getcpuclockid.cpp \
166    bionic/pthread_getschedparam.cpp \
167    bionic/pthread_internals.cpp \
168    bionic/pthread_join.cpp \
169    bionic/pthread_key.cpp \
170    bionic/pthread_kill.cpp \
171    bionic/pthread_mutex.cpp \
172    bionic/pthread_once.cpp \
173    bionic/pthread_rwlock.cpp \
174    bionic/pthread_self.cpp \
175    bionic/pthread_setname_np.cpp \
176    bionic/pthread_setschedparam.cpp \
177    bionic/pthread_sigmask.cpp \
178    bionic/ptrace.cpp \
179    bionic/raise.cpp \
180    bionic/readlink.cpp \
181    bionic/reboot.cpp \
182    bionic/recv.cpp \
183    bionic/rename.cpp \
184    bionic/rmdir.cpp \
185    bionic/scandir.cpp \
186    bionic/sched_getaffinity.cpp \
187    bionic/sched_getcpu.cpp \
188    bionic/send.cpp \
189    bionic/setegid.cpp \
190    bionic/__set_errno.cpp \
191    bionic/seteuid.cpp \
192    bionic/setpgrp.cpp \
193    bionic/sigaction.cpp \
194    bionic/sigaddset.cpp \
195    bionic/sigdelset.cpp \
196    bionic/sigemptyset.cpp \
197    bionic/sigfillset.cpp \
198    bionic/sigismember.cpp \
199    bionic/signal.cpp \
200    bionic/signalfd.cpp \
201    bionic/sigpending.cpp \
202    bionic/sigprocmask.cpp \
203    bionic/sigsuspend.cpp \
204    bionic/sigwait.cpp \
205    bionic/socket.cpp \
206    bionic/stat.cpp \
207    bionic/statvfs.cpp \
208    bionic/strerror.cpp \
209    bionic/strerror_r.cpp \
210    bionic/strsignal.cpp \
211    bionic/strtold.cpp \
212    bionic/stubs.cpp \
213    bionic/symlink.cpp \
214    bionic/sysconf.cpp \
215    bionic/sys_siglist.c \
216    bionic/sys_signame.c \
217    bionic/system_properties.cpp \
218    bionic/tdestroy.cpp \
219    bionic/termios.cpp \
220    bionic/thread_private.cpp \
221    bionic/tmpfile.cpp \
222    bionic/umount.cpp \
223    bionic/unlink.cpp \
224    bionic/utimes.cpp \
225    bionic/vfork.cpp \
226    bionic/wait.cpp \
227    bionic/wchar.cpp \
228    bionic/wctype.cpp \
229
230libc_upstream_freebsd_src_files := \
231    upstream-freebsd/lib/libc/gen/ldexp.c \
232    upstream-freebsd/lib/libc/gen/sleep.c \
233    upstream-freebsd/lib/libc/gen/usleep.c \
234    upstream-freebsd/lib/libc/stdio/fclose.c \
235    upstream-freebsd/lib/libc/stdio/flags.c \
236    upstream-freebsd/lib/libc/stdio/fopen.c \
237    upstream-freebsd/lib/libc/stdio/mktemp.c \
238    upstream-freebsd/lib/libc/stdlib/abs.c \
239    upstream-freebsd/lib/libc/stdlib/getopt_long.c \
240    upstream-freebsd/lib/libc/stdlib/imaxabs.c \
241    upstream-freebsd/lib/libc/stdlib/imaxdiv.c \
242    upstream-freebsd/lib/libc/stdlib/labs.c \
243    upstream-freebsd/lib/libc/stdlib/llabs.c \
244    upstream-freebsd/lib/libc/stdlib/qsort.c \
245    upstream-freebsd/lib/libc/stdlib/quick_exit.c \
246    upstream-freebsd/lib/libc/stdlib/realpath.c \
247    upstream-freebsd/lib/libc/string/wcpcpy.c \
248    upstream-freebsd/lib/libc/string/wcpncpy.c \
249    upstream-freebsd/lib/libc/string/wcscasecmp.c \
250    upstream-freebsd/lib/libc/string/wcscspn.c \
251    upstream-freebsd/lib/libc/string/wcsdup.c \
252    upstream-freebsd/lib/libc/string/wcslcat.c \
253    upstream-freebsd/lib/libc/string/wcsncasecmp.c \
254    upstream-freebsd/lib/libc/string/wcsncat.c \
255    upstream-freebsd/lib/libc/string/wcsncmp.c \
256    upstream-freebsd/lib/libc/string/wcsncpy.c \
257    upstream-freebsd/lib/libc/string/wcsnlen.c \
258    upstream-freebsd/lib/libc/string/wcspbrk.c \
259    upstream-freebsd/lib/libc/string/wcsspn.c \
260    upstream-freebsd/lib/libc/string/wcstok.c \
261    upstream-freebsd/lib/libc/string/wmemchr.c \
262    upstream-freebsd/lib/libc/string/wmemcpy.c \
263    upstream-freebsd/lib/libc/string/wmemset.c \
264
265libc_upstream_netbsd_src_files := \
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/inet/nsap_addr.c \
275    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 \
279    upstream-netbsd/lib/libc/resolv/mtctxres.c \
280    upstream-netbsd/lib/libc/stdlib/bsearch.c \
281    upstream-netbsd/lib/libc/stdlib/div.c \
282    upstream-netbsd/lib/libc/stdlib/drand48.c \
283    upstream-netbsd/lib/libc/stdlib/erand48.c \
284    upstream-netbsd/lib/libc/stdlib/jrand48.c \
285    upstream-netbsd/lib/libc/stdlib/ldiv.c \
286    upstream-netbsd/lib/libc/stdlib/lldiv.c \
287    upstream-netbsd/lib/libc/stdlib/lrand48.c \
288    upstream-netbsd/lib/libc/stdlib/lsearch.c \
289    upstream-netbsd/lib/libc/stdlib/mrand48.c \
290    upstream-netbsd/lib/libc/stdlib/nrand48.c \
291    upstream-netbsd/lib/libc/stdlib/_rand48.c \
292    upstream-netbsd/lib/libc/stdlib/rand.c \
293    upstream-netbsd/lib/libc/stdlib/rand_r.c \
294    upstream-netbsd/lib/libc/stdlib/seed48.c \
295    upstream-netbsd/lib/libc/stdlib/srand48.c \
296    upstream-netbsd/lib/libc/stdlib/tdelete.c \
297    upstream-netbsd/lib/libc/stdlib/tfind.c \
298    upstream-netbsd/lib/libc/stdlib/tsearch.c \
299    upstream-netbsd/lib/libc/string/memccpy.c \
300    upstream-netbsd/lib/libc/string/strcasestr.c \
301    upstream-netbsd/lib/libc/string/strcoll.c \
302    upstream-netbsd/lib/libc/string/strxfrm.c \
303    upstream-netbsd/lib/libc/thread-stub/__isthreaded.c \
304    upstream-netbsd/lib/libc/unistd/killpg.c \
305
306libc_upstream_openbsd_gdtoa_src_files := \
307    upstream-openbsd/android/gdtoa_support.cpp \
308    upstream-openbsd/lib/libc/gdtoa/dmisc.c \
309    upstream-openbsd/lib/libc/gdtoa/dtoa.c \
310    upstream-openbsd/lib/libc/gdtoa/gdtoa.c \
311    upstream-openbsd/lib/libc/gdtoa/gethex.c \
312    upstream-openbsd/lib/libc/gdtoa/gmisc.c \
313    upstream-openbsd/lib/libc/gdtoa/hd_init.c \
314    upstream-openbsd/lib/libc/gdtoa/hdtoa.c \
315    upstream-openbsd/lib/libc/gdtoa/hexnan.c \
316    upstream-openbsd/lib/libc/gdtoa/ldtoa.c \
317    upstream-openbsd/lib/libc/gdtoa/misc.c \
318    upstream-openbsd/lib/libc/gdtoa/smisc.c \
319    upstream-openbsd/lib/libc/gdtoa/strtod.c \
320    upstream-openbsd/lib/libc/gdtoa/strtodg.c \
321    upstream-openbsd/lib/libc/gdtoa/strtof.c \
322    upstream-openbsd/lib/libc/gdtoa/strtord.c \
323    upstream-openbsd/lib/libc/gdtoa/sum.c \
324    upstream-openbsd/lib/libc/gdtoa/ulp.c \
325
326libc_upstream_openbsd_gdtoa_src_files_32 := \
327    $(libc_upstream_openbsd_gdtoa_src_files) \
328
329libc_upstream_openbsd_gdtoa_src_files_64 := \
330    $(libc_upstream_openbsd_gdtoa_src_files) \
331    upstream-openbsd/lib/libc/gdtoa/strtorQ.c \
332
333libc_upstream_openbsd_src_files := \
334    upstream-openbsd/lib/libc/gen/alarm.c \
335    upstream-openbsd/lib/libc/gen/ctype_.c \
336    upstream-openbsd/lib/libc/gen/exec.c \
337    upstream-openbsd/lib/libc/gen/fnmatch.c \
338    upstream-openbsd/lib/libc/gen/ftok.c \
339    upstream-openbsd/lib/libc/gen/getprogname.c \
340    upstream-openbsd/lib/libc/gen/isctype.c \
341    upstream-openbsd/lib/libc/gen/setprogname.c \
342    upstream-openbsd/lib/libc/gen/time.c \
343    upstream-openbsd/lib/libc/gen/tolower_.c \
344    upstream-openbsd/lib/libc/gen/toupper_.c \
345    upstream-openbsd/lib/libc/locale/btowc.c \
346    upstream-openbsd/lib/libc/locale/mbrlen.c \
347    upstream-openbsd/lib/libc/locale/mbstowcs.c \
348    upstream-openbsd/lib/libc/locale/mbtowc.c \
349    upstream-openbsd/lib/libc/locale/wcscoll.c \
350    upstream-openbsd/lib/libc/locale/wcstod.c \
351    upstream-openbsd/lib/libc/locale/wcstof.c \
352    upstream-openbsd/lib/libc/locale/wcstoimax.c \
353    upstream-openbsd/lib/libc/locale/wcstol.c \
354    upstream-openbsd/lib/libc/locale/wcstold.c \
355    upstream-openbsd/lib/libc/locale/wcstoll.c \
356    upstream-openbsd/lib/libc/locale/wcstombs.c \
357    upstream-openbsd/lib/libc/locale/wcstoul.c \
358    upstream-openbsd/lib/libc/locale/wcstoull.c \
359    upstream-openbsd/lib/libc/locale/wcstoumax.c \
360    upstream-openbsd/lib/libc/locale/wcsxfrm.c \
361    upstream-openbsd/lib/libc/locale/wctob.c \
362    upstream-openbsd/lib/libc/locale/wctomb.c \
363    upstream-openbsd/lib/libc/net/htonl.c \
364    upstream-openbsd/lib/libc/net/htons.c \
365    upstream-openbsd/lib/libc/net/inet_addr.c \
366    upstream-openbsd/lib/libc/net/inet_lnaof.c \
367    upstream-openbsd/lib/libc/net/inet_makeaddr.c \
368    upstream-openbsd/lib/libc/net/inet_netof.c \
369    upstream-openbsd/lib/libc/net/inet_network.c \
370    upstream-openbsd/lib/libc/net/inet_ntoa.c \
371    upstream-openbsd/lib/libc/net/inet_ntop.c \
372    upstream-openbsd/lib/libc/net/inet_pton.c \
373    upstream-openbsd/lib/libc/net/ntohl.c \
374    upstream-openbsd/lib/libc/net/ntohs.c \
375    upstream-openbsd/lib/libc/stdio/asprintf.c \
376    upstream-openbsd/lib/libc/stdio/clrerr.c \
377    upstream-openbsd/lib/libc/stdio/dprintf.c \
378    upstream-openbsd/lib/libc/stdio/fdopen.c \
379    upstream-openbsd/lib/libc/stdio/feof.c \
380    upstream-openbsd/lib/libc/stdio/ferror.c \
381    upstream-openbsd/lib/libc/stdio/fflush.c \
382    upstream-openbsd/lib/libc/stdio/fgetc.c \
383    upstream-openbsd/lib/libc/stdio/fgetln.c \
384    upstream-openbsd/lib/libc/stdio/fgetpos.c \
385    upstream-openbsd/lib/libc/stdio/fgets.c \
386    upstream-openbsd/lib/libc/stdio/fgetwc.c \
387    upstream-openbsd/lib/libc/stdio/fgetws.c \
388    upstream-openbsd/lib/libc/stdio/fileno.c \
389    upstream-openbsd/lib/libc/stdio/findfp.c \
390    upstream-openbsd/lib/libc/stdio/fprintf.c \
391    upstream-openbsd/lib/libc/stdio/fpurge.c \
392    upstream-openbsd/lib/libc/stdio/fputc.c \
393    upstream-openbsd/lib/libc/stdio/fputs.c \
394    upstream-openbsd/lib/libc/stdio/fputwc.c \
395    upstream-openbsd/lib/libc/stdio/fputws.c \
396    upstream-openbsd/lib/libc/stdio/fread.c \
397    upstream-openbsd/lib/libc/stdio/freopen.c \
398    upstream-openbsd/lib/libc/stdio/fscanf.c \
399    upstream-openbsd/lib/libc/stdio/fseek.c \
400    upstream-openbsd/lib/libc/stdio/fsetpos.c \
401    upstream-openbsd/lib/libc/stdio/ftell.c \
402    upstream-openbsd/lib/libc/stdio/funopen.c \
403    upstream-openbsd/lib/libc/stdio/fvwrite.c \
404    upstream-openbsd/lib/libc/stdio/fwalk.c \
405    upstream-openbsd/lib/libc/stdio/fwide.c \
406    upstream-openbsd/lib/libc/stdio/fwprintf.c \
407    upstream-openbsd/lib/libc/stdio/fwrite.c \
408    upstream-openbsd/lib/libc/stdio/fwscanf.c \
409    upstream-openbsd/lib/libc/stdio/getc.c \
410    upstream-openbsd/lib/libc/stdio/getchar.c \
411    upstream-openbsd/lib/libc/stdio/getdelim.c \
412    upstream-openbsd/lib/libc/stdio/getline.c \
413    upstream-openbsd/lib/libc/stdio/gets.c \
414    upstream-openbsd/lib/libc/stdio/getwc.c \
415    upstream-openbsd/lib/libc/stdio/getwchar.c \
416    upstream-openbsd/lib/libc/stdio/makebuf.c \
417    upstream-openbsd/lib/libc/stdio/perror.c \
418    upstream-openbsd/lib/libc/stdio/printf.c \
419    upstream-openbsd/lib/libc/stdio/putc.c \
420    upstream-openbsd/lib/libc/stdio/putchar.c \
421    upstream-openbsd/lib/libc/stdio/puts.c \
422    upstream-openbsd/lib/libc/stdio/putwc.c \
423    upstream-openbsd/lib/libc/stdio/putwchar.c \
424    upstream-openbsd/lib/libc/stdio/refill.c \
425    upstream-openbsd/lib/libc/stdio/remove.c \
426    upstream-openbsd/lib/libc/stdio/rewind.c \
427    upstream-openbsd/lib/libc/stdio/rget.c \
428    upstream-openbsd/lib/libc/stdio/scanf.c \
429    upstream-openbsd/lib/libc/stdio/setbuf.c \
430    upstream-openbsd/lib/libc/stdio/setbuffer.c \
431    upstream-openbsd/lib/libc/stdio/setvbuf.c \
432    upstream-openbsd/lib/libc/stdio/sscanf.c \
433    upstream-openbsd/lib/libc/stdio/stdio.c \
434    upstream-openbsd/lib/libc/stdio/swprintf.c \
435    upstream-openbsd/lib/libc/stdio/swscanf.c \
436    upstream-openbsd/lib/libc/stdio/tempnam.c \
437    upstream-openbsd/lib/libc/stdio/tmpnam.c \
438    upstream-openbsd/lib/libc/stdio/ungetc.c \
439    upstream-openbsd/lib/libc/stdio/ungetwc.c \
440    upstream-openbsd/lib/libc/stdio/vasprintf.c \
441    upstream-openbsd/lib/libc/stdio/vdprintf.c \
442    upstream-openbsd/lib/libc/stdio/vfprintf.c \
443    upstream-openbsd/lib/libc/stdio/vfscanf.c \
444    upstream-openbsd/lib/libc/stdio/vfwprintf.c \
445    upstream-openbsd/lib/libc/stdio/vfwscanf.c \
446    upstream-openbsd/lib/libc/stdio/vprintf.c \
447    upstream-openbsd/lib/libc/stdio/vscanf.c \
448    upstream-openbsd/lib/libc/stdio/vsnprintf.c \
449    upstream-openbsd/lib/libc/stdio/vsprintf.c \
450    upstream-openbsd/lib/libc/stdio/vsscanf.c \
451    upstream-openbsd/lib/libc/stdio/vswprintf.c \
452    upstream-openbsd/lib/libc/stdio/vswscanf.c \
453    upstream-openbsd/lib/libc/stdio/vwprintf.c \
454    upstream-openbsd/lib/libc/stdio/vwscanf.c \
455    upstream-openbsd/lib/libc/stdio/wbuf.c \
456    upstream-openbsd/lib/libc/stdio/wprintf.c \
457    upstream-openbsd/lib/libc/stdio/wscanf.c \
458    upstream-openbsd/lib/libc/stdio/wsetup.c \
459    upstream-openbsd/lib/libc/stdlib/atoi.c \
460    upstream-openbsd/lib/libc/stdlib/atol.c \
461    upstream-openbsd/lib/libc/stdlib/atoll.c \
462    upstream-openbsd/lib/libc/stdlib/exit.c \
463    upstream-openbsd/lib/libc/stdlib/getenv.c \
464    upstream-openbsd/lib/libc/stdlib/setenv.c \
465    upstream-openbsd/lib/libc/stdlib/strtoimax.c \
466    upstream-openbsd/lib/libc/stdlib/strtol.c \
467    upstream-openbsd/lib/libc/stdlib/strtoll.c \
468    upstream-openbsd/lib/libc/stdlib/strtoul.c \
469    upstream-openbsd/lib/libc/stdlib/strtoull.c \
470    upstream-openbsd/lib/libc/stdlib/strtoumax.c \
471    upstream-openbsd/lib/libc/stdlib/system.c \
472    upstream-openbsd/lib/libc/string/strcasecmp.c \
473    upstream-openbsd/lib/libc/string/strcspn.c \
474    upstream-openbsd/lib/libc/string/strdup.c \
475    upstream-openbsd/lib/libc/string/strndup.c \
476    upstream-openbsd/lib/libc/string/strpbrk.c \
477    upstream-openbsd/lib/libc/string/strsep.c \
478    upstream-openbsd/lib/libc/string/strspn.c \
479    upstream-openbsd/lib/libc/string/strstr.c \
480    upstream-openbsd/lib/libc/string/strtok.c \
481    upstream-openbsd/lib/libc/string/wcslcpy.c \
482    upstream-openbsd/lib/libc/string/wcsstr.c \
483    upstream-openbsd/lib/libc/string/wcswidth.c \
484
485libc_arch_static_src_files := \
486    bionic/dl_iterate_phdr_static.cpp \
487
488# Define some common cflags
489# ========================================================
490libc_common_cflags := \
491    -D_LIBC=1 \
492    -Wall -Wextra -Wunused \
493
494# Try to catch typical 32-bit assumptions that break with 64-bit pointers.
495libc_common_cflags += \
496    -Werror=pointer-to-int-cast \
497    -Werror=int-to-pointer-cast \
498    -Werror=type-limits \
499
500ifeq ($(strip $(DEBUG_BIONIC_LIBC)),true)
501  libc_common_cflags += -DDEBUG
502endif
503
504ifeq ($(MALLOC_IMPL),jemalloc)
505  libc_common_cflags += -DUSE_JEMALLOC
506  libc_malloc_src := bionic/jemalloc_wrapper.cpp
507else
508  libc_common_cflags += -DUSE_DLMALLOC
509  libc_malloc_src := bionic/dlmalloc.c
510endif
511
512# To customize dlmalloc's alignment, set BOARD_MALLOC_ALIGNMENT in
513# the appropriate BoardConfig.mk file.
514#
515ifneq ($(BOARD_MALLOC_ALIGNMENT),)
516  libc_common_cflags += -DMALLOC_ALIGNMENT=$(BOARD_MALLOC_ALIGNMENT)
517endif
518
519# Define ANDROID_SMP appropriately.
520ifeq ($(TARGET_CPU_SMP),true)
521    libc_common_cflags += -DANDROID_SMP=1
522else
523    libc_common_cflags += -DANDROID_SMP=0
524endif
525
526# Define some common conlyflags
527libc_common_conlyflags := \
528    -std=gnu99
529
530# Define some common cppflags
531libc_common_cppflags := \
532    -std=gnu++11
533
534# Define some common includes
535# ========================================================
536libc_common_c_includes := \
537    $(LOCAL_PATH)/stdlib  \
538    $(LOCAL_PATH)/stdio   \
539
540ifeq ($(MALLOC_IMPL),jemalloc)
541  libc_common_c_includes += external/jemalloc/include
542endif
543
544# ========================================================
545# Add in the arch-specific flags.
546# Must be called with $(eval).
547# $(1): the LOCAL_ variable name
548# $(2): the bionic variable name to pull in
549define patch-up-arch-specific-flags
550$(1)_$(TARGET_ARCH) += $($(2)_$(TARGET_ARCH))
551ifdef TARGET_2ND_ARCH
552$(1)_$(TARGET_2ND_ARCH) += $($(2)_$(TARGET_2ND_ARCH))
553endif
554endef
555
556
557# ========================================================
558# libc_stack_protector.a - stack protector code
559# ========================================================
560#
561# The stack protector code needs to be compiled
562# with -fno-stack-protector, since it modifies the
563# stack canary.
564
565include $(CLEAR_VARS)
566
567LOCAL_SRC_FILES := bionic/__stack_chk_fail.cpp
568LOCAL_CFLAGS := $(libc_common_cflags) -fno-stack-protector -Werror
569LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
570LOCAL_CPPFLAGS := $(libc_common_cppflags)
571LOCAL_C_INCLUDES := $(libc_common_c_includes)
572LOCAL_MODULE := libc_stack_protector
573LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
574LOCAL_SYSTEM_SHARED_LIBRARIES :=
575
576$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
577include $(BUILD_STATIC_LIBRARY)
578
579
580# ========================================================
581# libc_tzcode.a - upstream 'tzcode' code
582# ========================================================
583
584include $(CLEAR_VARS)
585
586LOCAL_SRC_FILES := $(call all-c-files-under,tzcode)
587# tzcode doesn't include wcsftime, so we use the OpenBSD one.
588LOCAL_SRC_FILES += upstream-openbsd/lib/libc/time/wcsftime.c
589
590LOCAL_CFLAGS := $(libc_common_cflags) \
591    -fvisibility=hidden \
592    -Werror \
593
594# Don't use ridiculous amounts of stack.
595LOCAL_CFLAGS += -DALL_STATE
596# Include tzsetwall, timelocal, timegm, time2posix, and posix2time.
597LOCAL_CFLAGS += -DSTD_INSPIRED
598# The name of the tm_gmtoff field in our struct tm.
599LOCAL_CFLAGS += -DTM_GMTOFF=tm_gmtoff
600# Where we store our tzdata.
601LOCAL_CFLAGS += -DTZDIR=\"/system/usr/share/zoneinfo\"
602# Include timezone and daylight globals.
603LOCAL_CFLAGS += -DUSG_COMPAT=1
604LOCAL_CFLAGS += -DNO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU
605LOCAL_CFLAGS += -Dlint
606
607LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
608LOCAL_CPPFLAGS := $(libc_common_cppflags)
609LOCAL_C_INCLUDES := $(libc_common_c_includes) $(LOCAL_PATH)/tzcode/
610LOCAL_MODULE := libc_tzcode
611LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
612LOCAL_SYSTEM_SHARED_LIBRARIES :=
613
614$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
615include $(BUILD_STATIC_LIBRARY)
616
617
618# ========================================================
619# libc_dns.a - modified NetBSD DNS code
620# ========================================================
621
622include $(CLEAR_VARS)
623
624LOCAL_SRC_FILES := \
625    $(call all-c-files-under,dns) \
626    upstream-netbsd/lib/libc/isc/ev_streams.c \
627    upstream-netbsd/lib/libc/isc/ev_timers.c \
628
629LOCAL_CFLAGS := \
630    $(libc_common_cflags) \
631    -DANDROID_CHANGES \
632    -DINET6 \
633    -fvisibility=hidden \
634    -I$(LOCAL_PATH)/dns/include \
635    -I$(LOCAL_PATH)/private \
636    -I$(LOCAL_PATH)/upstream-netbsd/lib/libc/include \
637    -I$(LOCAL_PATH)/upstream-netbsd/android/include \
638    -include netbsd-compat.h \
639#    -Werror \
640
641LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
642LOCAL_CPPFLAGS := $(libc_common_cppflags)
643LOCAL_C_INCLUDES := $(libc_common_c_includes)
644LOCAL_MODULE := libc_dns
645LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
646LOCAL_SYSTEM_SHARED_LIBRARIES :=
647
648$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
649include $(BUILD_STATIC_LIBRARY)
650
651
652# ========================================================
653# libc_freebsd.a - upstream FreeBSD C library code
654# ========================================================
655#
656# These files are built with the freebsd-compat.h header file
657# automatically included.
658
659include $(CLEAR_VARS)
660
661LOCAL_SRC_FILES := $(libc_upstream_freebsd_src_files)
662LOCAL_CFLAGS := \
663    $(libc_common_cflags) \
664    -Wno-sign-compare -Wno-uninitialized \
665    -I$(LOCAL_PATH)/upstream-freebsd/android/include \
666    -I$(LOCAL_PATH)/upstream-freebsd/lib/libc/include \
667    -include freebsd-compat.h \
668#    -Werror \
669
670LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
671LOCAL_CPPFLAGS := $(libc_common_cppflags)
672LOCAL_C_INCLUDES := $(libc_common_c_includes)
673LOCAL_MODULE := libc_freebsd
674LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
675LOCAL_SYSTEM_SHARED_LIBRARIES :=
676
677$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
678include $(BUILD_STATIC_LIBRARY)
679
680
681# ========================================================
682# libc_netbsd.a - upstream NetBSD C library code
683# ========================================================
684#
685# These files are built with the netbsd-compat.h header file
686# automatically included.
687
688include $(CLEAR_VARS)
689
690LOCAL_SRC_FILES := $(libc_upstream_netbsd_src_files)
691LOCAL_CFLAGS := \
692    $(libc_common_cflags) \
693    -Wno-sign-compare -Wno-uninitialized \
694    -Werror \
695    -DPOSIX_MISTAKE \
696    -I$(LOCAL_PATH)/upstream-netbsd/android/include \
697    -I$(LOCAL_PATH)/upstream-netbsd/lib/libc/include \
698    -include netbsd-compat.h \
699
700LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
701LOCAL_CPPFLAGS := $(libc_common_cppflags)
702LOCAL_C_INCLUDES := $(libc_common_c_includes)
703LOCAL_MODULE := libc_netbsd
704LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
705LOCAL_SYSTEM_SHARED_LIBRARIES :=
706
707$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
708$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_netbsd_src_files))
709include $(BUILD_STATIC_LIBRARY)
710
711
712# ========================================================
713# libc_openbsd.a - upstream OpenBSD C library code
714# ========================================================
715#
716# These files are built with the openbsd-compat.h header file
717# automatically included.
718
719include $(CLEAR_VARS)
720
721LOCAL_SRC_FILES := $(libc_upstream_openbsd_src_files)
722LOCAL_CFLAGS := \
723    $(libc_common_cflags) \
724    -Wno-sign-compare -Wno-uninitialized -Wno-unused-parameter \
725    -Werror \
726    -I$(LOCAL_PATH)/upstream-openbsd/android/include \
727    -I$(LOCAL_PATH)/upstream-openbsd/lib/libc/include \
728    -I$(LOCAL_PATH)/upstream-openbsd/lib/libc/gdtoa/ \
729    -include openbsd-compat.h \
730
731LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
732LOCAL_CPPFLAGS := $(libc_common_cppflags)
733LOCAL_C_INCLUDES := $(libc_common_c_includes)
734LOCAL_MODULE := libc_openbsd
735LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
736LOCAL_SYSTEM_SHARED_LIBRARIES :=
737
738$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
739include $(BUILD_STATIC_LIBRARY)
740
741
742# ========================================================
743# libc_gdtoa.a - upstream OpenBSD C library gdtoa code
744# ========================================================
745#
746# These files are built with the openbsd-compat.h header file
747# automatically included.
748
749include $(CLEAR_VARS)
750
751LOCAL_SRC_FILES_32 := $(libc_upstream_openbsd_gdtoa_src_files_32)
752LOCAL_SRC_FILES_64 := $(libc_upstream_openbsd_gdtoa_src_files_64)
753LOCAL_CFLAGS := \
754    $(libc_common_cflags) \
755    -Wno-sign-compare -Wno-uninitialized \
756    -Werror \
757    -fvisibility=hidden \
758    -I$(LOCAL_PATH)/upstream-openbsd/android/include \
759    -I$(LOCAL_PATH)/upstream-openbsd/lib/libc/include \
760    -include openbsd-compat.h \
761
762LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
763LOCAL_CPPFLAGS := $(libc_common_cppflags)
764LOCAL_C_INCLUDES := $(libc_common_c_includes)
765LOCAL_MODULE := libc_gdtoa
766LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
767LOCAL_SYSTEM_SHARED_LIBRARIES :=
768
769$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
770include $(BUILD_STATIC_LIBRARY)
771
772
773# ========================================================
774# libc_bionic.a - home-grown C library code
775# ========================================================
776
777include $(CLEAR_VARS)
778
779LOCAL_SRC_FILES := $(libc_bionic_src_files)
780LOCAL_CFLAGS := $(libc_common_cflags) \
781    -Werror \
782    -Wframe-larger-than=2048 \
783
784LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
785LOCAL_CPPFLAGS := $(libc_common_cppflags)
786LOCAL_C_INCLUDES := $(libc_common_c_includes)
787LOCAL_MODULE := libc_bionic
788LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
789LOCAL_SYSTEM_SHARED_LIBRARIES :=
790
791ifneq ($(TARGET_USES_LOGD),false)
792LOCAL_CFLAGS += -DTARGET_USES_LOGD
793endif
794
795$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
796$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_bionic_src_files))
797include $(BUILD_STATIC_LIBRARY)
798
799
800# ========================================================
801# libc_syscalls.a
802# ========================================================
803
804include $(CLEAR_VARS)
805
806LOCAL_SRC_FILES_$(TARGET_ARCH) := $(call all-S-files-under,arch-$(TARGET_ARCH)/syscalls)
807ifdef TARGET_2ND_ARCH
808LOCAL_SRC_FILES_$(TARGET_2ND_ARCH) := $(call all-S-files-under,arch-$(TARGET_2ND_ARCH)/syscalls)
809endif
810LOCAL_MODULE := libc_syscalls
811LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
812LOCAL_SYSTEM_SHARED_LIBRARIES :=
813
814include $(BUILD_STATIC_LIBRARY)
815
816
817# ========================================================
818# libc_common.a
819# ========================================================
820
821include $(CLEAR_VARS)
822
823LOCAL_SRC_FILES := $(libc_common_src_files)
824LOCAL_CFLAGS := $(libc_common_cflags)
825LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
826LOCAL_CPPFLAGS := $(libc_common_cppflags)
827LOCAL_C_INCLUDES := $(libc_common_c_includes)
828LOCAL_MODULE := libc_common
829LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
830LOCAL_WHOLE_STATIC_LIBRARIES := \
831    libc_bionic \
832    libc_dns \
833    libc_freebsd \
834    libc_gdtoa \
835    libc_malloc \
836    libc_netbsd \
837    libc_openbsd \
838    libc_stack_protector \
839    libc_syscalls \
840    libc_tzcode \
841
842ifeq ($(MALLOC_IMPL),jemalloc)
843LOCAL_WHOLE_STATIC_LIBRARIES += libjemalloc
844endif
845
846LOCAL_SYSTEM_SHARED_LIBRARIES :=
847
848# TODO: split out the asflags.
849LOCAL_ASFLAGS := $(LOCAL_CFLAGS)
850
851$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
852$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_common_src_files))
853$(eval $(call patch-up-arch-specific-flags,LOCAL_ASFLAGS,LOCAL_CFLAGS))
854include $(BUILD_STATIC_LIBRARY)
855
856
857# ========================================================
858# libc_nomalloc.a
859# ========================================================
860#
861# This is a version of the static C library that does not
862# include malloc. It's useful in situations when the user wants
863# to provide their own malloc implementation, or wants to
864# explicitly disallow the use of malloc, such as in the
865# dynamic linker.
866
867include $(CLEAR_VARS)
868
869LOCAL_SRC_FILES := \
870    $(libc_arch_static_src_files) \
871    $(libc_static_common_src_files) \
872    bionic/libc_init_static.cpp
873
874LOCAL_C_INCLUDES := $(libc_common_c_includes)
875LOCAL_CFLAGS := $(libc_common_cflags) \
876    -DLIBC_STATIC \
877    -Werror \
878
879LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
880LOCAL_CPPFLAGS := $(libc_common_cppflags)
881
882LOCAL_MODULE := libc_nomalloc
883LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
884LOCAL_WHOLE_STATIC_LIBRARIES := libc_common
885LOCAL_SYSTEM_SHARED_LIBRARIES :=
886
887$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
888$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_arch_static_src_files))
889include $(BUILD_STATIC_LIBRARY)
890
891
892# ========================================================
893# libc_malloc.a: the _prefixed_ malloc functions (like dlcalloc).
894# ========================================================
895
896include $(CLEAR_VARS)
897LOCAL_SRC_FILES := $(libc_malloc_src)
898LOCAL_CFLAGS := $(libc_common_cflags) \
899    -Werror \
900    -fvisibility=hidden \
901
902LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
903LOCAL_CPPFLAGS := $(libc_common_cppflags)
904LOCAL_C_INCLUDES := $(libc_common_c_includes)
905LOCAL_MODULE := libc_malloc
906LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
907include $(BUILD_STATIC_LIBRARY)
908
909
910# ========================================================
911# libc.a
912# ========================================================
913include $(CLEAR_VARS)
914
915LOCAL_SRC_FILES := \
916    $(libc_arch_static_src_files) \
917    $(libc_static_common_src_files) \
918    bionic/malloc_debug_common.cpp \
919    bionic/libc_init_static.cpp \
920
921LOCAL_CFLAGS := $(libc_common_cflags) \
922    -DLIBC_STATIC \
923    -Werror \
924
925LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
926LOCAL_CPPFLAGS := $(libc_common_cppflags)
927LOCAL_C_INCLUDES := $(libc_common_c_includes)
928LOCAL_MODULE := libc
929LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
930LOCAL_WHOLE_STATIC_LIBRARIES := libc_common
931LOCAL_SYSTEM_SHARED_LIBRARIES :=
932
933$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
934$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_arch_static_src_files))
935include $(BUILD_STATIC_LIBRARY)
936
937
938# ========================================================
939# libc.so
940# ========================================================
941include $(CLEAR_VARS)
942
943LOCAL_CFLAGS := $(libc_common_cflags) -Werror
944LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
945LOCAL_CPPFLAGS := $(libc_common_cppflags)
946LOCAL_C_INCLUDES := $(libc_common_c_includes)
947LOCAL_SRC_FILES := \
948    $(libc_arch_dynamic_src_files) \
949    $(libc_static_common_src_files) \
950    bionic/malloc_debug_common.cpp \
951    bionic/debug_mapinfo.cpp \
952    bionic/debug_stacktrace.cpp \
953    bionic/libc_init_dynamic.cpp \
954    bionic/NetdClient.cpp \
955
956LOCAL_MODULE := libc
957LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
958LOCAL_REQUIRED_MODULES := tzdata
959
960# Leave the symbols in the shared library so that stack unwinders can produce
961# meaningful name resolution.
962LOCAL_STRIP_MODULE := keep_symbols
963
964# WARNING: The only library libc.so should depend on is libdl.so!  If you add other libraries,
965# make sure to add -Wl,--exclude-libs=libgcc.a to the LOCAL_LDFLAGS for those libraries.  This
966# ensures that symbols that are pulled into those new libraries from libgcc.a are not declared
967# external; if that were the case, then libc would not pull those symbols from libgcc.a as it
968# should, instead relying on the external symbols from the dependent libraries.  That would
969# create a "cloaked" dependency on libgcc.a in libc though the libraries, which is not what
970# you wanted!
971
972LOCAL_SHARED_LIBRARIES := libdl
973LOCAL_WHOLE_STATIC_LIBRARIES := libc_common
974LOCAL_SYSTEM_SHARED_LIBRARIES :=
975
976$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
977$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_arch_dynamic_src_files))
978$(eval $(call patch-up-arch-specific-flags,LOCAL_SRC_FILES,libc_static_common_src_files))
979# special for arm
980LOCAL_NO_CRT_arm := true
981LOCAL_CFLAGS_arm += -DCRT_LEGACY_WORKAROUND
982LOCAL_SRC_FILES_arm += \
983    arch-common/bionic/crtbegin_so.c \
984    arch-arm/bionic/atexit_legacy.c \
985    arch-common/bionic/crtend_so.S
986
987include $(BUILD_SHARED_LIBRARY)
988
989
990# For all builds, except for the -user build we will enable memory
991# allocation checking (including memory leaks, buffer overwrites, etc.)
992# Note that all these checks are also controlled by env. settings
993# that can enable, or disable specific checks. Note also that some of
994# the checks are available only in emulator and are implemeted in
995# libc_malloc_qemu_instrumented.so.
996ifneq ($(TARGET_BUILD_VARIANT),user)
997
998# ========================================================
999# libc_malloc_debug_leak.so
1000# ========================================================
1001include $(CLEAR_VARS)
1002
1003LOCAL_CFLAGS := \
1004    $(libc_common_cflags) \
1005    -DMALLOC_LEAK_CHECK \
1006    -Werror \
1007
1008LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
1009LOCAL_CPPFLAGS := $(libc_common_cppflags)
1010
1011LOCAL_C_INCLUDES := $(libc_common_c_includes)
1012
1013LOCAL_SRC_FILES := \
1014    bionic/debug_mapinfo.cpp \
1015    bionic/debug_stacktrace.cpp \
1016    bionic/malloc_debug_leak.cpp \
1017    bionic/malloc_debug_check.cpp \
1018
1019LOCAL_MODULE := libc_malloc_debug_leak
1020LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
1021
1022LOCAL_SHARED_LIBRARIES := libc libdl
1023LOCAL_WHOLE_STATIC_LIBRARIES := libc_common
1024LOCAL_SYSTEM_SHARED_LIBRARIES :=
1025LOCAL_ALLOW_UNDEFINED_SYMBOLS := true
1026
1027# Don't install on release build
1028LOCAL_MODULE_TAGS := eng debug
1029
1030$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
1031include $(BUILD_SHARED_LIBRARY)
1032
1033
1034# ========================================================
1035# libc_malloc_debug_qemu.so
1036# ========================================================
1037include $(CLEAR_VARS)
1038
1039LOCAL_CFLAGS := \
1040    $(libc_common_cflags) \
1041    -DMALLOC_QEMU_INSTRUMENT \
1042    -Werror \
1043
1044LOCAL_CONLYFLAGS := $(libc_common_conlyflags)
1045LOCAL_CPPFLAGS := $(libc_common_cppflags)
1046
1047LOCAL_C_INCLUDES := $(libc_common_c_includes)
1048
1049LOCAL_SRC_FILES := \
1050    bionic/malloc_debug_qemu.cpp
1051
1052LOCAL_MODULE := libc_malloc_debug_qemu
1053LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies)
1054
1055LOCAL_SHARED_LIBRARIES := libc libdl
1056LOCAL_WHOLE_STATIC_LIBRARIES := libc_common
1057LOCAL_SYSTEM_SHARED_LIBRARIES :=
1058
1059# Don't install on release build
1060LOCAL_MODULE_TAGS := eng debug
1061
1062$(eval $(call patch-up-arch-specific-flags,LOCAL_CFLAGS,libc_common_cflags))
1063include $(BUILD_SHARED_LIBRARY)
1064
1065endif  #!user
1066
1067
1068# ========================================================
1069include $(call all-makefiles-under,$(LOCAL_PATH))
1070