The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | include $(LOCAL_PATH)/arch-$(TARGET_ARCH)/syscalls.mk |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 4 | |
Christopher Ferris | d7a6329 | 2013-10-03 13:26:22 -0700 | [diff] [blame] | 5 | # Make everything depend on any changes to included makefiles. |
| 6 | libc_common_additional_dependencies := \ |
| 7 | $(LOCAL_PATH)/arch-$(TARGET_ARCH)/syscalls.mk \ |
| 8 | $(LOCAL_PATH)/Android.mk \ |
| 9 | |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 10 | # Define the common source files for all the libc instances |
| 11 | # ========================================================= |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 12 | libc_common_src_files := \ |
| 13 | $(syscall_src) \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 14 | unistd/alarm.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 15 | unistd/exec.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 16 | unistd/fnmatch.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 17 | unistd/syslog.c \ |
| 18 | unistd/system.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 19 | unistd/time.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 20 | stdio/asprintf.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 21 | stdio/fflush.c \ |
| 22 | stdio/fgetc.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 23 | stdio/findfp.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 24 | stdio/fprintf.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 25 | stdio/fputc.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 26 | stdio/fread.c \ |
| 27 | stdio/freopen.c \ |
| 28 | stdio/fscanf.c \ |
| 29 | stdio/fseek.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 30 | stdio/ftell.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 31 | stdio/fvwrite.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 32 | stdio/gets.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 33 | stdio/printf.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 34 | stdio/refill.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 35 | stdio/rewind.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 36 | stdio/scanf.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 37 | stdio/snprintf.c\ |
| 38 | stdio/sprintf.c \ |
| 39 | stdio/sscanf.c \ |
| 40 | stdio/stdio.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 41 | stdio/ungetc.c \ |
| 42 | stdio/vasprintf.c \ |
| 43 | stdio/vfprintf.c \ |
| 44 | stdio/vfscanf.c \ |
| 45 | stdio/vprintf.c \ |
| 46 | stdio/vsnprintf.c \ |
| 47 | stdio/vsprintf.c \ |
| 48 | stdio/vscanf.c \ |
| 49 | stdio/vsscanf.c \ |
| 50 | stdio/wbuf.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 51 | stdlib/atexit.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 52 | stdlib/ctype_.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 53 | stdlib/getenv.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 54 | stdlib/putenv.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 55 | stdlib/setenv.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 56 | stdlib/strtod.c \ |
| 57 | stdlib/strtoimax.c \ |
| 58 | stdlib/strtol.c \ |
| 59 | stdlib/strtoll.c \ |
| 60 | stdlib/strtoul.c \ |
| 61 | stdlib/strtoull.c \ |
| 62 | stdlib/strtoumax.c \ |
| 63 | stdlib/tolower_.c \ |
| 64 | stdlib/toupper_.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 65 | string/strcasecmp.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 66 | string/strcspn.c \ |
| 67 | string/strdup.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 68 | string/strpbrk.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 69 | string/strsep.c \ |
| 70 | string/strspn.c \ |
| 71 | string/strstr.c \ |
| 72 | string/strtok.c \ |
David 'Digit' Turner | 3527fd6 | 2010-06-14 17:18:35 -0700 | [diff] [blame] | 73 | wchar/wcswidth.c \ |
Kristian Monsen | 7046561 | 2010-06-16 14:51:52 +0100 | [diff] [blame] | 74 | wchar/wcsxfrm.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 75 | bionic/arc4random.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 76 | bionic/atoi.c \ |
| 77 | bionic/atol.c \ |
| 78 | bionic/atoll.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 79 | bionic/bindresvport.c \ |
Colin Cross | fc10b24 | 2010-01-13 17:48:34 -0800 | [diff] [blame] | 80 | bionic/clearenv.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 81 | bionic/daemon.c \ |
Colin Cross | 64ceac3 | 2010-01-13 21:19:52 -0800 | [diff] [blame] | 82 | bionic/err.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 83 | bionic/ether_aton.c \ |
| 84 | bionic/ether_ntoa.c \ |
Colin Cross | fc10b24 | 2010-01-13 17:48:34 -0800 | [diff] [blame] | 85 | bionic/fdprintf.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 86 | bionic/flockfile.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 87 | bionic/ftime.c \ |
| 88 | bionic/ftok.c \ |
Colin Cross | 64ceac3 | 2010-01-13 21:19:52 -0800 | [diff] [blame] | 89 | bionic/fts.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 90 | bionic/getdtablesize.c \ |
| 91 | bionic/gethostname.c \ |
| 92 | bionic/getpgrp.c \ |
| 93 | bionic/getpriority.c \ |
| 94 | bionic/getpt.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 95 | bionic/if_indextoname.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 96 | bionic/if_nametoindex.c \ |
| 97 | bionic/initgroups.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 98 | bionic/ioctl.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 99 | bionic/isatty.c \ |
| 100 | bionic/issetugid.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 101 | bionic/ldexp.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 102 | bionic/md5.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 103 | bionic/memmem.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 104 | bionic/memswap.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 105 | bionic/pathconf.c \ |
| 106 | bionic/perror.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 107 | bionic/ptsname.c \ |
| 108 | bionic/ptsname_r.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 109 | bionic/pututline.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 110 | bionic/reboot.c \ |
| 111 | bionic/recv.c \ |
David 'Digit' Turner | 72e6fd4 | 2010-12-03 18:04:01 +0100 | [diff] [blame] | 112 | bionic/sched_cpualloc.c \ |
| 113 | bionic/sched_cpucount.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 114 | bionic/sched_getcpu.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 115 | bionic/semaphore.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 116 | bionic/send.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 117 | bionic/setpgrp.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 118 | bionic/sigblock.c \ |
| 119 | bionic/siginterrupt.c \ |
| 120 | bionic/siglist.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 121 | bionic/signame.c \ |
| 122 | bionic/sigsetmask.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 123 | bionic/sleep.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 124 | bionic/strndup.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 125 | bionic/strntoimax.c \ |
| 126 | bionic/strntoumax.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 127 | bionic/strtotimeval.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 128 | bionic/system_properties.c \ |
Colin Cross | 5e9a086 | 2013-06-24 18:36:39 -0700 | [diff] [blame] | 129 | bionic/system_properties_compat.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 130 | bionic/tcgetpgrp.c \ |
| 131 | bionic/tcsetpgrp.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 132 | bionic/time64.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 133 | bionic/umount.c \ |
| 134 | bionic/unlockpt.c \ |
| 135 | bionic/usleep.c \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 136 | bionic/utmp.c \ |
Elliott Hughes | a89864a | 2012-10-01 17:35:49 -0700 | [diff] [blame] | 137 | bionic/wcscoll.c \ |
Elliott Hughes | eb847bc | 2013-10-09 15:50:50 -0700 | [diff] [blame] | 138 | |
| 139 | |
| 140 | libc_dns_src_files += \ |
| 141 | netbsd/gethnamaddr.c \ |
| 142 | netbsd/inet/nsap_addr.c \ |
| 143 | netbsd/nameser/ns_name.c \ |
| 144 | netbsd/nameser/ns_netint.c \ |
| 145 | netbsd/nameser/ns_parse.c \ |
| 146 | netbsd/nameser/ns_print.c \ |
| 147 | netbsd/nameser/ns_samedomain.c \ |
| 148 | netbsd/nameser/ns_ttl.c \ |
| 149 | netbsd/net/base64.c \ |
| 150 | netbsd/net/getaddrinfo.c \ |
| 151 | netbsd/net/getnameinfo.c \ |
| 152 | netbsd/net/getservbyname.c \ |
| 153 | netbsd/net/getservbyport.c \ |
| 154 | netbsd/net/getservent.c \ |
| 155 | netbsd/net/nsdispatch.c \ |
| 156 | netbsd/resolv/__dn_comp.c \ |
| 157 | netbsd/resolv/herror.c \ |
| 158 | netbsd/resolv/res_cache.c \ |
| 159 | netbsd/resolv/__res_close.c \ |
| 160 | netbsd/resolv/res_comp.c \ |
| 161 | netbsd/resolv/res_data.c \ |
| 162 | netbsd/resolv/res_debug.c \ |
| 163 | netbsd/resolv/res_init.c \ |
| 164 | netbsd/resolv/res_mkquery.c \ |
| 165 | netbsd/resolv/res_query.c \ |
| 166 | netbsd/resolv/__res_send.c \ |
| 167 | netbsd/resolv/res_send.c \ |
| 168 | netbsd/resolv/res_state.c \ |
| 169 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 170 | |
Elliott Hughes | 0620925 | 2013-11-06 16:20:54 -0800 | [diff] [blame] | 171 | # These are used by the 32-bit targets, but not the 64-bit ones. |
Pavel Chupin | a567a8e | 2012-12-18 17:30:02 +0400 | [diff] [blame] | 172 | ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),arm mips x86)) |
| 173 | libc_common_src_files += \ |
Elliott Hughes | 0620925 | 2013-11-06 16:20:54 -0800 | [diff] [blame] | 174 | bionic/legacy_32_bit_support.cpp \ |
Elliott Hughes | 567a8de | 2013-10-24 17:14:55 -0700 | [diff] [blame] | 175 | bionic/ndk_cruft.cpp \ |
Pavel Chupin | a567a8e | 2012-12-18 17:30:02 +0400 | [diff] [blame] | 176 | |
| 177 | endif |
| 178 | |
Christopher Ferris | 59a13c1 | 2013-08-01 13:13:33 -0700 | [diff] [blame] | 179 | # Fortify implementations of libc functions. |
| 180 | libc_common_src_files += \ |
Nick Kralevich | 90201d5 | 2013-10-02 16:11:30 -0700 | [diff] [blame] | 181 | bionic/__FD_chk.cpp \ |
Christopher Ferris | 59a13c1 | 2013-08-01 13:13:33 -0700 | [diff] [blame] | 182 | bionic/__fgets_chk.cpp \ |
| 183 | bionic/__memcpy_chk.cpp \ |
| 184 | bionic/__memmove_chk.cpp \ |
| 185 | bionic/__memset_chk.cpp \ |
Nick Kralevich | b036b5c | 2013-10-09 20:16:34 -0700 | [diff] [blame] | 186 | bionic/__read_chk.cpp \ |
Nick Kralevich | 60f4f9a | 2013-09-24 16:32:07 -0700 | [diff] [blame] | 187 | bionic/__recvfrom_chk.cpp \ |
Christopher Ferris | 59a13c1 | 2013-08-01 13:13:33 -0700 | [diff] [blame] | 188 | bionic/__strcat_chk.cpp \ |
| 189 | bionic/__strchr_chk.cpp \ |
| 190 | bionic/__strcpy_chk.cpp \ |
| 191 | bionic/__strlcat_chk.cpp \ |
| 192 | bionic/__strlcpy_chk.cpp \ |
| 193 | bionic/__strlen_chk.cpp \ |
| 194 | bionic/__strncat_chk.cpp \ |
| 195 | bionic/__strncpy_chk.cpp \ |
| 196 | bionic/__strrchr_chk.cpp \ |
| 197 | bionic/__umask_chk.cpp \ |
| 198 | bionic/__vsnprintf_chk.cpp \ |
| 199 | bionic/__vsprintf_chk.cpp \ |
| 200 | |
Elliott Hughes | 29c7f0b | 2012-10-22 17:05:27 -0700 | [diff] [blame] | 201 | libc_bionic_src_files := \ |
Elliott Hughes | 61e699a | 2013-06-12 14:05:46 -0700 | [diff] [blame] | 202 | bionic/abort.cpp \ |
Elliott Hughes | f8fcfbc | 2013-10-22 13:28:46 -0700 | [diff] [blame] | 203 | bionic/access.cpp \ |
Elliott Hughes | 063cfb2 | 2012-10-25 20:55:23 -0700 | [diff] [blame] | 204 | bionic/assert.cpp \ |
Elliott Hughes | 1195207 | 2013-10-24 15:15:14 -0700 | [diff] [blame] | 205 | bionic/bionic_time_conversions.cpp \ |
Elliott Hughes | 428f556 | 2013-02-05 16:10:59 -0800 | [diff] [blame] | 206 | bionic/brk.cpp \ |
Elliott Hughes | f8fcfbc | 2013-10-22 13:28:46 -0700 | [diff] [blame] | 207 | bionic/chmod.cpp \ |
| 208 | bionic/chown.cpp \ |
Elliott Hughes | 36d6188 | 2013-11-19 13:31:58 -0800 | [diff] [blame^] | 209 | bionic/clone.cpp \ |
David 'Digit' Turner | c30396f | 2012-10-29 15:32:54 +0100 | [diff] [blame] | 210 | bionic/dirent.cpp \ |
Elliott Hughes | cac7b9d | 2013-10-23 09:48:29 -0700 | [diff] [blame] | 211 | bionic/dup2.cpp \ |
| 212 | bionic/epoll_create.cpp \ |
Elliott Hughes | 1195207 | 2013-10-24 15:15:14 -0700 | [diff] [blame] | 213 | bionic/epoll_wait.cpp \ |
| 214 | bionic/epoll_pwait.cpp \ |
Elliott Hughes | 2a0b873 | 2013-10-08 18:50:24 -0700 | [diff] [blame] | 215 | bionic/__errno.cpp \ |
Kito Cheng | 9b84824 | 2013-04-03 11:29:40 +0800 | [diff] [blame] | 216 | bionic/eventfd_read.cpp \ |
| 217 | bionic/eventfd_write.cpp \ |
Elliott Hughes | bf42568 | 2013-10-24 16:29:40 -0700 | [diff] [blame] | 218 | bionic/ffs.cpp \ |
Elliott Hughes | 232163c | 2013-10-09 17:35:36 -0700 | [diff] [blame] | 219 | bionic/fork.cpp \ |
Elliott Hughes | d0be7c8 | 2013-08-08 17:13:33 -0700 | [diff] [blame] | 220 | bionic/futimens.cpp \ |
Nick Kralevich | 2c5153b | 2013-01-11 14:43:05 -0800 | [diff] [blame] | 221 | bionic/getauxval.cpp \ |
Elliott Hughes | 063cfb2 | 2012-10-25 20:55:23 -0700 | [diff] [blame] | 222 | bionic/getcwd.cpp \ |
Elliott Hughes | cac7b9d | 2013-10-23 09:48:29 -0700 | [diff] [blame] | 223 | bionic/inotify_init.cpp \ |
Elliott Hughes | f8fcfbc | 2013-10-22 13:28:46 -0700 | [diff] [blame] | 224 | bionic/lchown.cpp \ |
Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 225 | bionic/libc_init_common.cpp \ |
Elliott Hughes | 8f2a5a0 | 2013-03-15 15:30:25 -0700 | [diff] [blame] | 226 | bionic/libc_logging.cpp \ |
Elliott Hughes | 58b5754 | 2012-10-29 14:27:10 -0700 | [diff] [blame] | 227 | bionic/libgen.cpp \ |
Elliott Hughes | f8fcfbc | 2013-10-22 13:28:46 -0700 | [diff] [blame] | 228 | bionic/link.cpp \ |
| 229 | bionic/lstat.cpp \ |
| 230 | bionic/mkdir.cpp \ |
Elliott Hughes | 594b1a4 | 2013-10-22 10:54:11 -0700 | [diff] [blame] | 231 | bionic/mkfifo.cpp \ |
Elliott Hughes | f8fcfbc | 2013-10-22 13:28:46 -0700 | [diff] [blame] | 232 | bionic/mknod.cpp \ |
| 233 | bionic/open.cpp \ |
Elliott Hughes | 1195207 | 2013-10-24 15:15:14 -0700 | [diff] [blame] | 234 | bionic/pause.cpp \ |
Elliott Hughes | cac7b9d | 2013-10-23 09:48:29 -0700 | [diff] [blame] | 235 | bionic/pipe.cpp \ |
Elliott Hughes | 1195207 | 2013-10-24 15:15:14 -0700 | [diff] [blame] | 236 | bionic/poll.cpp \ |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 237 | bionic/pthread_atfork.cpp \ |
Elliott Hughes | 3e89847 | 2013-02-12 16:40:24 +0000 | [diff] [blame] | 238 | bionic/pthread_attr.cpp \ |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 239 | bionic/pthread_cond.cpp \ |
| 240 | bionic/pthread_create.cpp \ |
Elliott Hughes | 9d23e04 | 2013-02-15 19:21:51 -0800 | [diff] [blame] | 241 | bionic/pthread_detach.cpp \ |
| 242 | bionic/pthread_equal.cpp \ |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 243 | bionic/pthread_exit.cpp \ |
Elliott Hughes | 9d23e04 | 2013-02-15 19:21:51 -0800 | [diff] [blame] | 244 | bionic/pthread_getcpuclockid.cpp \ |
| 245 | bionic/pthread_getschedparam.cpp \ |
| 246 | bionic/pthread_internals.cpp \ |
| 247 | bionic/pthread_join.cpp \ |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 248 | bionic/pthread_key.cpp \ |
Elliott Hughes | 9d23e04 | 2013-02-15 19:21:51 -0800 | [diff] [blame] | 249 | bionic/pthread_kill.cpp \ |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 250 | bionic/pthread_mutex.cpp \ |
| 251 | bionic/pthread_once.cpp \ |
| 252 | bionic/pthread_rwlock.cpp \ |
Elliott Hughes | 9d23e04 | 2013-02-15 19:21:51 -0800 | [diff] [blame] | 253 | bionic/pthread_self.cpp \ |
Elliott Hughes | 3e89847 | 2013-02-12 16:40:24 +0000 | [diff] [blame] | 254 | bionic/pthread_setname_np.cpp \ |
Elliott Hughes | 9d23e04 | 2013-02-15 19:21:51 -0800 | [diff] [blame] | 255 | bionic/pthread_setschedparam.cpp \ |
Elliott Hughes | c5d028f | 2013-01-10 14:42:14 -0800 | [diff] [blame] | 256 | bionic/pthread_sigmask.cpp \ |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 257 | bionic/ptrace.cpp \ |
Chris Dearman | d8a5a6f | 2012-12-07 18:41:10 -0800 | [diff] [blame] | 258 | bionic/raise.cpp \ |
Elliott Hughes | f8fcfbc | 2013-10-22 13:28:46 -0700 | [diff] [blame] | 259 | bionic/readlink.cpp \ |
| 260 | bionic/rename.cpp \ |
| 261 | bionic/rmdir.cpp \ |
Elliott Hughes | 428f556 | 2013-02-05 16:10:59 -0800 | [diff] [blame] | 262 | bionic/sbrk.cpp \ |
Elliott Hughes | 701bec2 | 2013-02-25 13:14:31 -0800 | [diff] [blame] | 263 | bionic/scandir.cpp \ |
Kito Cheng | 4ca685e | 2013-04-10 00:57:42 +0800 | [diff] [blame] | 264 | bionic/sched_getaffinity.cpp \ |
Elliott Hughes | 232163c | 2013-10-09 17:35:36 -0700 | [diff] [blame] | 265 | bionic/setegid.cpp \ |
Elliott Hughes | 4a9e837 | 2012-11-30 11:58:57 -0800 | [diff] [blame] | 266 | bionic/__set_errno.cpp \ |
Elliott Hughes | 232163c | 2013-10-09 17:35:36 -0700 | [diff] [blame] | 267 | bionic/seteuid.cpp \ |
Elliott Hughes | 063cfb2 | 2012-10-25 20:55:23 -0700 | [diff] [blame] | 268 | bionic/setlocale.cpp \ |
Rom Lemarchand | a4b2dc0 | 2013-01-09 15:46:06 -0800 | [diff] [blame] | 269 | bionic/signalfd.cpp \ |
Elliott Hughes | c7e9b23 | 2013-10-16 22:27:54 -0700 | [diff] [blame] | 270 | bionic/sigaction.cpp \ |
| 271 | bionic/sigaddset.cpp \ |
| 272 | bionic/sigdelset.cpp \ |
| 273 | bionic/sigemptyset.cpp \ |
| 274 | bionic/sigfillset.cpp \ |
| 275 | bionic/sigismember.cpp \ |
| 276 | bionic/signal.cpp \ |
Elliott Hughes | 40d105c | 2013-10-16 12:53:58 -0700 | [diff] [blame] | 277 | bionic/sigpending.cpp \ |
Elliott Hughes | 19e6232 | 2013-10-15 11:23:57 -0700 | [diff] [blame] | 278 | bionic/sigprocmask.cpp \ |
Elliott Hughes | 1f5af92 | 2013-10-15 18:01:56 -0700 | [diff] [blame] | 279 | bionic/sigsuspend.cpp \ |
Elliott Hughes | c5d028f | 2013-01-10 14:42:14 -0800 | [diff] [blame] | 280 | bionic/sigwait.cpp \ |
Elliott Hughes | f8fcfbc | 2013-10-22 13:28:46 -0700 | [diff] [blame] | 281 | bionic/stat.cpp \ |
Elliott Hughes | 06040fd | 2013-07-09 13:25:03 -0700 | [diff] [blame] | 282 | bionic/statvfs.cpp \ |
Elliott Hughes | 063cfb2 | 2012-10-25 20:55:23 -0700 | [diff] [blame] | 283 | bionic/strerror.cpp \ |
| 284 | bionic/strerror_r.cpp \ |
Elliott Hughes | 063cfb2 | 2012-10-25 20:55:23 -0700 | [diff] [blame] | 285 | bionic/strsignal.cpp \ |
| 286 | bionic/stubs.cpp \ |
Elliott Hughes | f8fcfbc | 2013-10-22 13:28:46 -0700 | [diff] [blame] | 287 | bionic/symlink.cpp \ |
Elliott Hughes | 91a9925 | 2013-02-12 21:56:42 -0800 | [diff] [blame] | 288 | bionic/sysconf.cpp \ |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 289 | bionic/thread_atexit.cpp \ |
Elliott Hughes | 063cfb2 | 2012-10-25 20:55:23 -0700 | [diff] [blame] | 290 | bionic/tdestroy.cpp \ |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 291 | bionic/timer.cpp \ |
Elliott Hughes | 063cfb2 | 2012-10-25 20:55:23 -0700 | [diff] [blame] | 292 | bionic/tmpfile.cpp \ |
Elliott Hughes | f8fcfbc | 2013-10-22 13:28:46 -0700 | [diff] [blame] | 293 | bionic/unlink.cpp \ |
| 294 | bionic/utimes.cpp \ |
Elliott Hughes | 17a8b0d | 2013-03-21 15:43:53 -0700 | [diff] [blame] | 295 | bionic/wait.cpp \ |
Elliott Hughes | 063cfb2 | 2012-10-25 20:55:23 -0700 | [diff] [blame] | 296 | bionic/wchar.cpp \ |
Elliott Hughes | 29c7f0b | 2012-10-22 17:05:27 -0700 | [diff] [blame] | 297 | |
Pavel Chupin | a567a8e | 2012-12-18 17:30:02 +0400 | [diff] [blame] | 298 | # These are shared by all the 32-bit targets, but not the 64-bit ones. |
| 299 | ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),arm mips x86)) |
| 300 | libc_bionic_src_files += \ |
| 301 | bionic/mmap.cpp \ |
| 302 | |
| 303 | endif |
| 304 | |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 305 | libc_tzcode_src_files := \ |
| 306 | tzcode/asctime.c \ |
| 307 | tzcode/difftime.c \ |
| 308 | tzcode/localtime.c \ |
| 309 | tzcode/strftime.c \ |
| 310 | tzcode/strptime.c \ |
| 311 | |
Elliott Hughes | f077784 | 2013-03-01 16:59:46 -0800 | [diff] [blame] | 312 | libc_upstream_freebsd_src_files := \ |
Elliott Hughes | 6b05c8e | 2013-04-11 13:54:48 -0700 | [diff] [blame] | 313 | upstream-freebsd/lib/libc/stdio/clrerr.c \ |
| 314 | upstream-freebsd/lib/libc/stdio/fclose.c \ |
| 315 | upstream-freebsd/lib/libc/stdio/fdopen.c \ |
| 316 | upstream-freebsd/lib/libc/stdio/feof.c \ |
| 317 | upstream-freebsd/lib/libc/stdio/ferror.c \ |
| 318 | upstream-freebsd/lib/libc/stdio/fgetln.c \ |
| 319 | upstream-freebsd/lib/libc/stdio/fgetpos.c \ |
| 320 | upstream-freebsd/lib/libc/stdio/fgets.c \ |
| 321 | upstream-freebsd/lib/libc/stdio/fileno.c \ |
| 322 | upstream-freebsd/lib/libc/stdio/flags.c \ |
| 323 | upstream-freebsd/lib/libc/stdio/fopen.c \ |
| 324 | upstream-freebsd/lib/libc/stdio/fpurge.c \ |
| 325 | upstream-freebsd/lib/libc/stdio/fputs.c \ |
| 326 | upstream-freebsd/lib/libc/stdio/fsetpos.c \ |
| 327 | upstream-freebsd/lib/libc/stdio/funopen.c \ |
| 328 | upstream-freebsd/lib/libc/stdio/fwalk.c \ |
| 329 | upstream-freebsd/lib/libc/stdio/fwrite.c \ |
| 330 | upstream-freebsd/lib/libc/stdio/getc.c \ |
| 331 | upstream-freebsd/lib/libc/stdio/getchar.c \ |
Elliott Hughes | 677ee56 | 2013-06-12 15:24:15 -0700 | [diff] [blame] | 332 | upstream-freebsd/lib/libc/stdio/makebuf.c \ |
Elliott Hughes | 284f788 | 2013-07-19 15:20:31 -0700 | [diff] [blame] | 333 | upstream-freebsd/lib/libc/stdio/mktemp.c \ |
Elliott Hughes | 6b05c8e | 2013-04-11 13:54:48 -0700 | [diff] [blame] | 334 | upstream-freebsd/lib/libc/stdio/putc.c \ |
| 335 | upstream-freebsd/lib/libc/stdio/putchar.c \ |
| 336 | upstream-freebsd/lib/libc/stdio/puts.c \ |
| 337 | upstream-freebsd/lib/libc/stdio/putw.c \ |
| 338 | upstream-freebsd/lib/libc/stdio/remove.c \ |
| 339 | upstream-freebsd/lib/libc/stdio/rget.c \ |
| 340 | upstream-freebsd/lib/libc/stdio/setbuf.c \ |
| 341 | upstream-freebsd/lib/libc/stdio/setbuffer.c \ |
Elliott Hughes | 677ee56 | 2013-06-12 15:24:15 -0700 | [diff] [blame] | 342 | upstream-freebsd/lib/libc/stdio/setvbuf.c \ |
Elliott Hughes | 6b05c8e | 2013-04-11 13:54:48 -0700 | [diff] [blame] | 343 | upstream-freebsd/lib/libc/stdio/tempnam.c \ |
| 344 | upstream-freebsd/lib/libc/stdio/tmpnam.c \ |
| 345 | upstream-freebsd/lib/libc/stdio/wsetup.c \ |
Elliott Hughes | aec2ffb | 2013-08-12 12:07:05 -0700 | [diff] [blame] | 346 | upstream-freebsd/lib/libc/stdlib/abs.c \ |
Elliott Hughes | d278b82 | 2013-06-25 14:48:10 -0700 | [diff] [blame] | 347 | upstream-freebsd/lib/libc/stdlib/getopt_long.c \ |
Elliott Hughes | aec2ffb | 2013-08-12 12:07:05 -0700 | [diff] [blame] | 348 | upstream-freebsd/lib/libc/stdlib/imaxabs.c \ |
| 349 | upstream-freebsd/lib/libc/stdlib/imaxdiv.c \ |
| 350 | upstream-freebsd/lib/libc/stdlib/labs.c \ |
| 351 | upstream-freebsd/lib/libc/stdlib/llabs.c \ |
Elliott Hughes | 0b25f63 | 2013-04-11 18:08:34 -0700 | [diff] [blame] | 352 | upstream-freebsd/lib/libc/stdlib/qsort.c \ |
Elliott Hughes | f077784 | 2013-03-01 16:59:46 -0800 | [diff] [blame] | 353 | upstream-freebsd/lib/libc/stdlib/realpath.c \ |
Elliott Hughes | eb93ebf | 2013-03-01 18:35:56 -0800 | [diff] [blame] | 354 | upstream-freebsd/lib/libc/string/wcpcpy.c \ |
| 355 | upstream-freebsd/lib/libc/string/wcpncpy.c \ |
| 356 | upstream-freebsd/lib/libc/string/wcscasecmp.c \ |
Elliott Hughes | eb93ebf | 2013-03-01 18:35:56 -0800 | [diff] [blame] | 357 | upstream-freebsd/lib/libc/string/wcscspn.c \ |
| 358 | upstream-freebsd/lib/libc/string/wcsdup.c \ |
| 359 | upstream-freebsd/lib/libc/string/wcslcat.c \ |
| 360 | upstream-freebsd/lib/libc/string/wcslcpy.c \ |
Elliott Hughes | eb93ebf | 2013-03-01 18:35:56 -0800 | [diff] [blame] | 361 | upstream-freebsd/lib/libc/string/wcsncasecmp.c \ |
| 362 | upstream-freebsd/lib/libc/string/wcsncat.c \ |
| 363 | upstream-freebsd/lib/libc/string/wcsncmp.c \ |
| 364 | upstream-freebsd/lib/libc/string/wcsncpy.c \ |
| 365 | upstream-freebsd/lib/libc/string/wcsnlen.c \ |
| 366 | upstream-freebsd/lib/libc/string/wcspbrk.c \ |
Elliott Hughes | eb93ebf | 2013-03-01 18:35:56 -0800 | [diff] [blame] | 367 | upstream-freebsd/lib/libc/string/wcsspn.c \ |
| 368 | upstream-freebsd/lib/libc/string/wcsstr.c \ |
| 369 | upstream-freebsd/lib/libc/string/wcstok.c \ |
| 370 | upstream-freebsd/lib/libc/string/wmemchr.c \ |
Elliott Hughes | eb93ebf | 2013-03-01 18:35:56 -0800 | [diff] [blame] | 371 | upstream-freebsd/lib/libc/string/wmemcpy.c \ |
| 372 | upstream-freebsd/lib/libc/string/wmemmove.c \ |
| 373 | upstream-freebsd/lib/libc/string/wmemset.c \ |
Elliott Hughes | f077784 | 2013-03-01 16:59:46 -0800 | [diff] [blame] | 374 | |
Elliott Hughes | f8b3a92 | 2012-08-10 11:39:58 -0700 | [diff] [blame] | 375 | libc_upstream_netbsd_src_files := \ |
Elliott Hughes | e8bcca3 | 2012-10-23 12:26:26 -0700 | [diff] [blame] | 376 | upstream-netbsd/common/lib/libc/hash/sha1/sha1.c \ |
| 377 | upstream-netbsd/common/lib/libc/inet/inet_addr.c \ |
| 378 | upstream-netbsd/libc/compat-43/creat.c \ |
| 379 | upstream-netbsd/libc/gen/ftw.c \ |
| 380 | upstream-netbsd/libc/gen/nftw.c \ |
| 381 | upstream-netbsd/libc/gen/nice.c \ |
Elliott Hughes | 6b3f49a | 2013-03-06 16:20:55 -0800 | [diff] [blame] | 382 | upstream-netbsd/libc/gen/popen.c \ |
Elliott Hughes | e8bcca3 | 2012-10-23 12:26:26 -0700 | [diff] [blame] | 383 | upstream-netbsd/libc/gen/psignal.c \ |
Elliott Hughes | ab44f52 | 2012-10-23 16:05:09 -0700 | [diff] [blame] | 384 | upstream-netbsd/libc/gen/setjmperr.c \ |
Elliott Hughes | e8bcca3 | 2012-10-23 12:26:26 -0700 | [diff] [blame] | 385 | upstream-netbsd/libc/gen/utime.c \ |
| 386 | upstream-netbsd/libc/inet/inet_ntoa.c \ |
| 387 | upstream-netbsd/libc/inet/inet_ntop.c \ |
| 388 | upstream-netbsd/libc/inet/inet_pton.c \ |
Elliott Hughes | ab44f52 | 2012-10-23 16:05:09 -0700 | [diff] [blame] | 389 | upstream-netbsd/libc/isc/ev_streams.c \ |
| 390 | upstream-netbsd/libc/isc/ev_timers.c \ |
Elliott Hughes | e8bcca3 | 2012-10-23 12:26:26 -0700 | [diff] [blame] | 391 | upstream-netbsd/libc/regex/regcomp.c \ |
| 392 | upstream-netbsd/libc/regex/regerror.c \ |
| 393 | upstream-netbsd/libc/regex/regexec.c \ |
| 394 | upstream-netbsd/libc/regex/regfree.c \ |
| 395 | upstream-netbsd/libc/stdio/getdelim.c \ |
| 396 | upstream-netbsd/libc/stdio/getline.c \ |
Elliott Hughes | ab44f52 | 2012-10-23 16:05:09 -0700 | [diff] [blame] | 397 | upstream-netbsd/libc/stdlib/bsearch.c \ |
| 398 | upstream-netbsd/libc/stdlib/div.c \ |
Elliott Hughes | e8bcca3 | 2012-10-23 12:26:26 -0700 | [diff] [blame] | 399 | upstream-netbsd/libc/stdlib/drand48.c \ |
| 400 | upstream-netbsd/libc/stdlib/erand48.c \ |
Pawit Pornkitprasan | 6522899 | 2013-11-14 23:50:45 +0700 | [diff] [blame] | 401 | upstream-netbsd/libc/stdlib/exit.c \ |
Elliott Hughes | e8bcca3 | 2012-10-23 12:26:26 -0700 | [diff] [blame] | 402 | upstream-netbsd/libc/stdlib/jrand48.c \ |
Elliott Hughes | ab44f52 | 2012-10-23 16:05:09 -0700 | [diff] [blame] | 403 | upstream-netbsd/libc/stdlib/ldiv.c \ |
| 404 | upstream-netbsd/libc/stdlib/lldiv.c \ |
Elliott Hughes | e8bcca3 | 2012-10-23 12:26:26 -0700 | [diff] [blame] | 405 | upstream-netbsd/libc/stdlib/lrand48.c \ |
| 406 | upstream-netbsd/libc/stdlib/mrand48.c \ |
| 407 | upstream-netbsd/libc/stdlib/nrand48.c \ |
| 408 | upstream-netbsd/libc/stdlib/_rand48.c \ |
| 409 | upstream-netbsd/libc/stdlib/seed48.c \ |
| 410 | upstream-netbsd/libc/stdlib/srand48.c \ |
| 411 | upstream-netbsd/libc/stdlib/tdelete.c \ |
| 412 | upstream-netbsd/libc/stdlib/tfind.c \ |
| 413 | upstream-netbsd/libc/stdlib/tsearch.c \ |
Elliott Hughes | c51cd76 | 2013-01-22 14:41:23 -0800 | [diff] [blame] | 414 | upstream-netbsd/libc/string/memccpy.c \ |
Elliott Hughes | e8bcca3 | 2012-10-23 12:26:26 -0700 | [diff] [blame] | 415 | upstream-netbsd/libc/string/strcasestr.c \ |
Elliott Hughes | 2b47307 | 2013-01-22 15:10:19 -0800 | [diff] [blame] | 416 | upstream-netbsd/libc/string/strcoll.c \ |
Elliott Hughes | e8bcca3 | 2012-10-23 12:26:26 -0700 | [diff] [blame] | 417 | upstream-netbsd/libc/string/strxfrm.c \ |
Pawit Pornkitprasan | 6522899 | 2013-11-14 23:50:45 +0700 | [diff] [blame] | 418 | upstream-netbsd/libc/thread-stub/__isthreaded.c \ |
Elliott Hughes | ab44f52 | 2012-10-23 16:05:09 -0700 | [diff] [blame] | 419 | upstream-netbsd/libc/unistd/killpg.c \ |
Elliott Hughes | f8b3a92 | 2012-08-10 11:39:58 -0700 | [diff] [blame] | 420 | |
Elliott Hughes | 2f287bc | 2013-10-29 16:59:54 -0700 | [diff] [blame] | 421 | # Architecture specific source files go here |
| 422 | # ========================================================= |
| 423 | ifeq ($(TARGET_ARCH),arm) |
| 424 | libc_common_src_files += \ |
| 425 | bionic/memchr.c \ |
| 426 | bionic/memmove.c.arm \ |
| 427 | bionic/memrchr.c \ |
| 428 | bionic/strchr.cpp \ |
| 429 | bionic/strnlen.c \ |
| 430 | string/bcopy.c \ |
| 431 | string/index.c \ |
| 432 | string/strlcat.c \ |
| 433 | string/strlcpy.c \ |
| 434 | string/strncat.c \ |
| 435 | string/strncmp.c \ |
| 436 | string/strncpy.c \ |
| 437 | string/strrchr.c \ |
| 438 | upstream-freebsd/lib/libc/string/wcscat.c \ |
| 439 | upstream-freebsd/lib/libc/string/wcschr.c \ |
| 440 | upstream-freebsd/lib/libc/string/wcscmp.c \ |
| 441 | upstream-freebsd/lib/libc/string/wcscpy.c \ |
| 442 | upstream-freebsd/lib/libc/string/wcslen.c \ |
| 443 | upstream-freebsd/lib/libc/string/wcsrchr.c \ |
| 444 | upstream-freebsd/lib/libc/string/wmemcmp.c \ |
| 445 | |
| 446 | endif # arm |
| 447 | |
| 448 | ifeq ($(TARGET_ARCH),mips) |
| 449 | libc_common_src_files += \ |
| 450 | bionic/memchr.c \ |
| 451 | bionic/memcmp.c \ |
| 452 | bionic/memrchr.c \ |
| 453 | bionic/strchr.cpp \ |
| 454 | bionic/strnlen.c \ |
| 455 | string/bcopy.c \ |
| 456 | string/index.c \ |
| 457 | string/strcat.c \ |
| 458 | string/strcmp.c \ |
| 459 | string/strcpy.c \ |
| 460 | string/strlcat.c \ |
| 461 | string/strlcpy.c \ |
| 462 | string/strncat.c \ |
| 463 | string/strncmp.c \ |
| 464 | string/strncpy.c \ |
| 465 | string/strrchr.c \ |
| 466 | upstream-freebsd/lib/libc/string/wcscat.c \ |
| 467 | upstream-freebsd/lib/libc/string/wcschr.c \ |
| 468 | upstream-freebsd/lib/libc/string/wcscmp.c \ |
| 469 | upstream-freebsd/lib/libc/string/wcscpy.c \ |
| 470 | upstream-freebsd/lib/libc/string/wcslen.c \ |
| 471 | upstream-freebsd/lib/libc/string/wcsrchr.c \ |
| 472 | upstream-freebsd/lib/libc/string/wmemcmp.c \ |
| 473 | |
| 474 | endif # mips |
Shin-ichiro KAWASAKI | 1009327 | 2009-09-28 16:11:39 +0900 | [diff] [blame] | 475 | |
Pavel Chupin | a567a8e | 2012-12-18 17:30:02 +0400 | [diff] [blame] | 476 | ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),x86_64)) |
| 477 | libc_common_src_files += \ |
| 478 | bionic/memchr.c \ |
| 479 | bionic/memcmp.c \ |
| 480 | bionic/memcpy.c \ |
| 481 | bionic/memmove.c \ |
| 482 | bionic/memrchr.c \ |
| 483 | bionic/memset.c \ |
Pavel Chupin | a567a8e | 2012-12-18 17:30:02 +0400 | [diff] [blame] | 484 | bionic/strchr.cpp \ |
| 485 | bionic/strnlen.c \ |
| 486 | string/bcopy.c \ |
| 487 | string/index.c \ |
| 488 | string/strcat.c \ |
| 489 | string/strcmp.c \ |
| 490 | string/strcpy.c \ |
| 491 | string/strlcat.c \ |
| 492 | string/strlcpy.c \ |
| 493 | string/strlen.c \ |
| 494 | string/strncat.c \ |
| 495 | string/strncmp.c \ |
| 496 | string/strncpy.c \ |
| 497 | string/strrchr.c \ |
| 498 | upstream-freebsd/lib/libc/string/wcscat.c \ |
| 499 | upstream-freebsd/lib/libc/string/wcschr.c \ |
| 500 | upstream-freebsd/lib/libc/string/wcscmp.c \ |
| 501 | upstream-freebsd/lib/libc/string/wcscpy.c \ |
| 502 | upstream-freebsd/lib/libc/string/wcslen.c \ |
| 503 | upstream-freebsd/lib/libc/string/wcsrchr.c \ |
| 504 | upstream-freebsd/lib/libc/string/wmemcmp.c \ |
| 505 | |
Pavel Chupin | a567a8e | 2012-12-18 17:30:02 +0400 | [diff] [blame] | 506 | endif # x86_64 |
| 507 | |
Elliott Hughes | 2f287bc | 2013-10-29 16:59:54 -0700 | [diff] [blame] | 508 | ifeq ($(TARGET_ARCH),arm) |
| 509 | ifeq ($(strip $(TARGET_CPU_VARIANT)),) |
| 510 | $(warning TARGET_ARCH is arm, but TARGET_CPU_VARIANT is not defined) |
| 511 | endif |
Christopher Ferris | 7c83a1e | 2013-02-26 01:30:00 -0800 | [diff] [blame] | 512 | endif |
| 513 | |
| 514 | ########################################################### |
| 515 | ## Add cpu specific source files. |
| 516 | ## |
| 517 | ## This can be called multiple times, but it will only add |
| 518 | ## the first source file for each unique $(1). |
| 519 | ## $(1): Unique identifier to identify the cpu variant |
| 520 | ## implementation. |
| 521 | ## $(2): Cpu specific source file. |
| 522 | ########################################################### |
| 523 | |
| 524 | define libc-add-cpu-variant-src |
| 525 | $(if $(filter true,$(_LIBC_ARCH_CPU_VARIANT_HAS_$(1))), \ |
| 526 | , \ |
| 527 | $(eval _LIBC_ARCH_CPU_VARIANT_HAS_$(1) := true) \ |
| 528 | $(eval _LIBC_ARCH_CPU_VARIANT_SRC_FILE.$(1) := $(2)) \ |
| 529 | $(eval _LIBC_ARCH_CPU_VARIANT_SRC_FILES += $(2)) \ |
| 530 | ) |
| 531 | endef |
| 532 | |
| 533 | _LIBC_ARCH_COMMON_SRC_FILES := |
| 534 | _LIBC_ARCH_CPU_VARIANT_SRC_FILES := |
| 535 | _LIBC_ARCH_STATIC_SRC_FILES := |
| 536 | _LIBC_ARCH_DYNAMIC_SRC_FILES := |
Christopher Ferris | d7a6329 | 2013-10-03 13:26:22 -0700 | [diff] [blame] | 537 | _LIBC_ARCH_ADDITIONAL_DEPENDENCIES := |
| 538 | |
| 539 | libc_common_additional_dependencies += \ |
| 540 | $(LOCAL_PATH)/arch-$(TARGET_ARCH)/$(TARGET_ARCH).mk |
| 541 | include $(LOCAL_PATH)/arch-$(TARGET_ARCH)/$(TARGET_ARCH).mk |
Christopher Ferris | 7c83a1e | 2013-02-26 01:30:00 -0800 | [diff] [blame] | 542 | |
Elliott Hughes | eb847bc | 2013-10-09 15:50:50 -0700 | [diff] [blame] | 543 | libc_bionic_src_files += $(_LIBC_ARCH_COMMON_SRC_FILES) |
| 544 | libc_bionic_src_files += $(_LIBC_ARCH_CPU_VARIANT_SRC_FILES) |
Christopher Ferris | 7c83a1e | 2013-02-26 01:30:00 -0800 | [diff] [blame] | 545 | libc_arch_static_src_files := $(_LIBC_ARCH_STATIC_SRC_FILES) |
| 546 | libc_arch_dynamic_src_files := $(_LIBC_ARCH_DYNAMIC_SRC_FILES) |
Christopher Ferris | d7a6329 | 2013-10-03 13:26:22 -0700 | [diff] [blame] | 547 | libc_common_additional_dependencies += $(_LIBC_ARCH_ADDITIONAL_DEPENDENCIES) |
Christopher Ferris | 7c83a1e | 2013-02-26 01:30:00 -0800 | [diff] [blame] | 548 | |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 549 | # Define some common cflags |
| 550 | # ======================================================== |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 551 | libc_common_cflags := \ |
Elliott Hughes | 470631e | 2012-06-06 10:32:56 -0700 | [diff] [blame] | 552 | -DANDROID_CHANGES \ |
Elliott Hughes | 470631e | 2012-06-06 10:32:56 -0700 | [diff] [blame] | 553 | -D_LIBC=1 \ |
Elliott Hughes | 2ec400b | 2013-10-08 17:04:33 -0700 | [diff] [blame] | 554 | -Wall -Wextra \ |
| 555 | |
| 556 | # Try to catch typical 32-bit assumptions that break with 64-bit pointers. |
| 557 | libc_common_cflags += \ |
| 558 | -Werror=pointer-to-int-cast \ |
| 559 | -Werror=int-to-pointer-cast \ |
| 560 | -Werror=type-limits \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 561 | |
Dave Bort | d2c9dcc | 2009-04-23 15:50:03 -0700 | [diff] [blame] | 562 | ifeq ($(strip $(DEBUG_BIONIC_LIBC)),true) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 563 | libc_common_cflags += -DDEBUG |
| 564 | endif |
| 565 | |
Jack Ren | 2fd81ef | 2011-11-19 09:48:03 +0800 | [diff] [blame] | 566 | # To customize dlmalloc's alignment, set BOARD_MALLOC_ALIGNMENT in |
| 567 | # the appropriate BoardConfig.mk file. |
| 568 | # |
| 569 | ifneq ($(BOARD_MALLOC_ALIGNMENT),) |
| 570 | libc_common_cflags += -DMALLOC_ALIGNMENT=$(BOARD_MALLOC_ALIGNMENT) |
| 571 | endif |
| 572 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 573 | ifeq ($(TARGET_ARCH),arm) |
Raghu Gandham | a4c7933 | 2012-08-07 12:23:24 -0700 | [diff] [blame] | 574 | libc_common_cflags += -DSOFTFLOAT |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 575 | libc_common_cflags += -fstrict-aliasing |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 576 | libc_crt_target_cflags := -mthumb-interwork |
Elliott Hughes | 7e841ed | 2013-10-03 23:30:33 -0700 | [diff] [blame] | 577 | endif # arm |
Raghu Gandham | a4c7933 | 2012-08-07 12:23:24 -0700 | [diff] [blame] | 578 | |
| 579 | ifeq ($(TARGET_ARCH),mips) |
| 580 | ifneq ($(ARCH_MIPS_HAS_FPU),true) |
| 581 | libc_common_cflags += -DSOFTFLOAT |
| 582 | endif |
| 583 | libc_common_cflags += -fstrict-aliasing |
| 584 | libc_crt_target_cflags := $(TARGET_GLOBAL_CFLAGS) |
| 585 | endif # mips |
| 586 | |
Elliott Hughes | 7e841ed | 2013-10-03 23:30:33 -0700 | [diff] [blame] | 587 | ifeq ($(TARGET_ARCH),x86) |
Elliott Hughes | 7e841ed | 2013-10-03 23:30:33 -0700 | [diff] [blame] | 588 | libc_crt_target_cflags := -m32 |
| 589 | libc_crt_target_ldflags := -melf_i386 |
| 590 | endif # x86 |
| 591 | |
| 592 | ifeq ($(TARGET_ARCH),x86_64) |
Elliott Hughes | 7e841ed | 2013-10-03 23:30:33 -0700 | [diff] [blame] | 593 | libc_crt_target_cflags := -m64 |
| 594 | libc_crt_target_ldflags := -melf_x86_64 |
| 595 | endif # x86_64 |
| 596 | |
Andy McFadden | fcd00eb | 2010-05-28 13:31:45 -0700 | [diff] [blame] | 597 | # Define ANDROID_SMP appropriately. |
| 598 | ifeq ($(TARGET_CPU_SMP),true) |
| 599 | libc_common_cflags += -DANDROID_SMP=1 |
| 600 | else |
| 601 | libc_common_cflags += -DANDROID_SMP=0 |
| 602 | endif |
| 603 | |
Elliott Hughes | 76be660 | 2012-08-08 14:07:37 -0700 | [diff] [blame] | 604 | # crtbrand.c needs <stdint.h> and a #define for the platform SDK version. |
| 605 | libc_crt_target_cflags += \ |
| 606 | -I$(LOCAL_PATH)/include \ |
Elliott Hughes | eb847bc | 2013-10-09 15:50:50 -0700 | [diff] [blame] | 607 | -I$(LOCAL_PATH)/arch-$(TARGET_ARCH)/include \ |
| 608 | -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION) \ |
Andy McFadden | fcd00eb | 2010-05-28 13:31:45 -0700 | [diff] [blame] | 609 | |
Stephen Hines | 762cea4 | 2013-09-30 17:10:53 -0700 | [diff] [blame] | 610 | # Define some common conlyflags |
| 611 | libc_common_conlyflags := \ |
| 612 | -std=gnu99 |
| 613 | |
| 614 | # Define some common cppflags |
| 615 | libc_common_cppflags := \ |
| 616 | -std=gnu++11 |
| 617 | |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 618 | # Define some common includes |
| 619 | # ======================================================== |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 620 | libc_common_c_includes := \ |
| 621 | $(LOCAL_PATH)/stdlib \ |
| 622 | $(LOCAL_PATH)/string \ |
Nick Kralevich | 76656af | 2012-06-07 16:30:02 -0700 | [diff] [blame] | 623 | $(LOCAL_PATH)/stdio \ |
| 624 | external/safe-iop/include |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 625 | |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 626 | # Define the libc run-time (crt) support object files that must be built, |
| 627 | # which are needed to build all other objects (shared/static libs and |
| 628 | # executables) |
| 629 | # ========================================================================== |
Raghu Gandham | a4c7933 | 2012-08-07 12:23:24 -0700 | [diff] [blame] | 630 | # ARM, MIPS, and x86 all need crtbegin_so/crtend_so. |
David 'Digit' Turner | 6a9b888 | 2010-06-18 14:47:22 -0700 | [diff] [blame] | 631 | # |
| 632 | # For x86, the .init section must point to a function that calls all |
| 633 | # entries in the .ctors section. (on ARM this is done through the |
| 634 | # .init_array section instead). |
| 635 | # |
Raghu Gandham | a4c7933 | 2012-08-07 12:23:24 -0700 | [diff] [blame] | 636 | # For all the platforms, the .fini_array section must point to a function |
David 'Digit' Turner | 6a9b888 | 2010-06-18 14:47:22 -0700 | [diff] [blame] | 637 | # that will call __cxa_finalize(&__dso_handle) in order to ensure that |
| 638 | # static C++ destructors are properly called on dlclose(). |
| 639 | # |
Pavel Chupin | b49c17c | 2013-10-02 16:38:05 +0400 | [diff] [blame] | 640 | libc_crt_target_crtbegin_file := $(LOCAL_PATH)/arch-common/bionic/crtbegin.c |
| 641 | libc_crt_target_crtbegin_so_file := $(LOCAL_PATH)/arch-common/bionic/crtbegin_so.c |
| 642 | |
Raghu Gandham | a4c7933 | 2012-08-07 12:23:24 -0700 | [diff] [blame] | 643 | ifeq ($(TARGET_ARCH),arm) |
Raghu Gandham | a4c7933 | 2012-08-07 12:23:24 -0700 | [diff] [blame] | 644 | libc_crt_target_so_cflags := |
David 'Digit' Turner | 2d2dbd3 | 2011-06-25 17:26:38 +0200 | [diff] [blame] | 645 | endif |
Raghu Gandham | a4c7933 | 2012-08-07 12:23:24 -0700 | [diff] [blame] | 646 | ifeq ($(TARGET_ARCH),mips) |
Raghu Gandham | a4c7933 | 2012-08-07 12:23:24 -0700 | [diff] [blame] | 647 | libc_crt_target_so_cflags := -fPIC |
Pavel Chupin | b49c17c | 2013-10-02 16:38:05 +0400 | [diff] [blame] | 648 | libc_crt_target_crtbegin_file := $(LOCAL_PATH)/arch-$(TARGET_ARCH)/bionic/crtbegin.c |
Raghu Gandham | a4c7933 | 2012-08-07 12:23:24 -0700 | [diff] [blame] | 649 | endif |
Pavel Chupin | a567a8e | 2012-12-18 17:30:02 +0400 | [diff] [blame] | 650 | ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),x86 x86_64)) |
Raghu Gandham | a4c7933 | 2012-08-07 12:23:24 -0700 | [diff] [blame] | 651 | libc_crt_target_so_cflags := -fPIC |
| 652 | endif |
Raghu Gandham | a4c7933 | 2012-08-07 12:23:24 -0700 | [diff] [blame] | 653 | libc_crt_target_so_cflags += $(libc_crt_target_cflags) |
Michael Hope | ea8fad1 | 2012-07-31 16:18:22 +1200 | [diff] [blame] | 654 | |
| 655 | # See the comment in crtbrand.c for the reason why we need to generate |
| 656 | # crtbrand.s before generating crtbrand.o. |
| 657 | GEN := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbrand.s |
| 658 | $(GEN): $(LOCAL_PATH)/bionic/crtbrand.c |
| 659 | @mkdir -p $(dir $@) |
Ying Wang | cf46487 | 2012-09-07 17:06:56 -0700 | [diff] [blame] | 660 | $(hide) $(TARGET_CC) $(libc_crt_target_so_cflags) -S \ |
| 661 | -MD -MF $(@:%.s=%.d) -o $@ $< |
| 662 | $(hide) sed -i -e '/\.note\.ABI-tag/s/progbits/note/' $@ |
| 663 | $(call transform-d-to-p-args,$(@:%.s=%.d),$(@:%.s=%.P)) |
| 664 | -include $(GEN:%.s=%.P) |
Michael Hope | ea8fad1 | 2012-07-31 16:18:22 +1200 | [diff] [blame] | 665 | ALL_GENERATED_SOURCES += $(GEN) |
| 666 | |
| 667 | GEN := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbrand.o |
| 668 | $(GEN): $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbrand.s |
| 669 | @mkdir -p $(dir $@) |
Ying Wang | cf46487 | 2012-09-07 17:06:56 -0700 | [diff] [blame] | 670 | $(hide) $(TARGET_CC) $(libc_crt_target_so_cflags) -o $@ -c $< |
Michael Hope | ea8fad1 | 2012-07-31 16:18:22 +1200 | [diff] [blame] | 671 | ALL_GENERATED_SOURCES += $(GEN) |
| 672 | |
Ying Wang | fc9e525 | 2012-05-15 15:15:11 -0700 | [diff] [blame] | 673 | GEN := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_so.o |
Elliott Hughes | 12949e5 | 2012-09-10 11:16:12 -0700 | [diff] [blame] | 674 | $(GEN): $(libc_crt_target_crtbegin_so_file) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 675 | @mkdir -p $(dir $@) |
Ying Wang | cf46487 | 2012-09-07 17:06:56 -0700 | [diff] [blame] | 676 | $(hide) $(TARGET_CC) $(libc_crt_target_so_cflags) \ |
| 677 | -MD -MF $(@:%.o=%.d) -o $@ -c $< |
| 678 | $(transform-d-to-p) |
| 679 | -include $(GEN:%.o=%.P) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 680 | ALL_GENERATED_SOURCES += $(GEN) |
| 681 | |
Ying Wang | fc9e525 | 2012-05-15 15:15:11 -0700 | [diff] [blame] | 682 | GEN := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_so.o |
Pavel Chupin | b49c17c | 2013-10-02 16:38:05 +0400 | [diff] [blame] | 683 | $(GEN): $(LOCAL_PATH)/arch-common/bionic/crtend_so.S |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 684 | @mkdir -p $(dir $@) |
Ying Wang | cf46487 | 2012-09-07 17:06:56 -0700 | [diff] [blame] | 685 | $(hide) $(TARGET_CC) $(libc_crt_target_so_cflags) \ |
| 686 | -MD -MF $(@:%.o=%.d) -o $@ -c $< |
| 687 | $(transform-d-to-p) |
| 688 | -include $(GEN:%.o=%.P) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 689 | ALL_GENERATED_SOURCES += $(GEN) |
Shih-wei Liao | fc0725e | 2012-07-28 00:33:28 -0700 | [diff] [blame] | 690 | |
Ying Wang | cf46487 | 2012-09-07 17:06:56 -0700 | [diff] [blame] | 691 | # The following two are installed to device |
Shih-wei Liao | fc0725e | 2012-07-28 00:33:28 -0700 | [diff] [blame] | 692 | GEN := $(TARGET_OUT_SHARED_LIBRARIES)/crtbegin_so.o |
Ying Wang | cf46487 | 2012-09-07 17:06:56 -0700 | [diff] [blame] | 693 | $(GEN): $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_so.o |
| 694 | $(hide) mkdir -p $(dir $@) && cp -f $< $@ |
Shih-wei Liao | fc0725e | 2012-07-28 00:33:28 -0700 | [diff] [blame] | 695 | ALL_GENERATED_SOURCES += $(GEN) |
| 696 | |
| 697 | GEN := $(TARGET_OUT_SHARED_LIBRARIES)/crtend_so.o |
Ying Wang | cf46487 | 2012-09-07 17:06:56 -0700 | [diff] [blame] | 698 | $(GEN): $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_so.o |
| 699 | $(hide) mkdir -p $(dir $@) && cp -f $< $@ |
Shih-wei Liao | fc0725e | 2012-07-28 00:33:28 -0700 | [diff] [blame] | 700 | ALL_GENERATED_SOURCES += $(GEN) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 701 | |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 702 | |
Michael Hope | ea8fad1 | 2012-07-31 16:18:22 +1200 | [diff] [blame] | 703 | GEN := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_static1.o |
Elliott Hughes | 12949e5 | 2012-09-10 11:16:12 -0700 | [diff] [blame] | 704 | $(GEN): $(libc_crt_target_crtbegin_file) |
Michael Hope | ea8fad1 | 2012-07-31 16:18:22 +1200 | [diff] [blame] | 705 | @mkdir -p $(dir $@) |
Ying Wang | cf46487 | 2012-09-07 17:06:56 -0700 | [diff] [blame] | 706 | $(hide) $(TARGET_CC) $(libc_crt_target_cflags) \ |
| 707 | -MD -MF $(@:%.o=%.d) -o $@ -c $< |
| 708 | $(transform-d-to-p) |
| 709 | -include $(GEN:%.o=%.P) |
Michael Hope | ea8fad1 | 2012-07-31 16:18:22 +1200 | [diff] [blame] | 710 | ALL_GENERATED_SOURCES += $(GEN) |
| 711 | |
Ying Wang | fc9e525 | 2012-05-15 15:15:11 -0700 | [diff] [blame] | 712 | GEN := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_static.o |
Michael Hope | ea8fad1 | 2012-07-31 16:18:22 +1200 | [diff] [blame] | 713 | $(GEN): $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_static1.o $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbrand.o |
| 714 | @mkdir -p $(dir $@) |
Pavel Chupin | e85c183 | 2013-08-16 18:11:13 +0400 | [diff] [blame] | 715 | $(hide) $(TARGET_LD) $(libc_crt_target_ldflags) -r -o $@ $^ |
Michael Hope | ea8fad1 | 2012-07-31 16:18:22 +1200 | [diff] [blame] | 716 | ALL_GENERATED_SOURCES += $(GEN) |
| 717 | |
| 718 | GEN := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_dynamic1.o |
Elliott Hughes | 12949e5 | 2012-09-10 11:16:12 -0700 | [diff] [blame] | 719 | $(GEN): $(libc_crt_target_crtbegin_file) |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 720 | @mkdir -p $(dir $@) |
Ying Wang | cf46487 | 2012-09-07 17:06:56 -0700 | [diff] [blame] | 721 | $(hide) $(TARGET_CC) $(libc_crt_target_cflags) \ |
| 722 | -MD -MF $(@:%.o=%.d) -o $@ -c $< |
| 723 | $(transform-d-to-p) |
| 724 | -include $(GEN:%.o=%.P) |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 725 | ALL_GENERATED_SOURCES += $(GEN) |
| 726 | |
Ying Wang | fc9e525 | 2012-05-15 15:15:11 -0700 | [diff] [blame] | 727 | GEN := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_dynamic.o |
Michael Hope | ea8fad1 | 2012-07-31 16:18:22 +1200 | [diff] [blame] | 728 | $(GEN): $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_dynamic1.o $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbrand.o |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 729 | @mkdir -p $(dir $@) |
Pavel Chupin | e85c183 | 2013-08-16 18:11:13 +0400 | [diff] [blame] | 730 | $(hide) $(TARGET_LD) $(libc_crt_target_ldflags) -r -o $@ $^ |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 731 | ALL_GENERATED_SOURCES += $(GEN) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 732 | |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 733 | # We rename crtend.o to crtend_android.o to avoid a |
| 734 | # name clash between gcc and bionic. |
Ying Wang | fc9e525 | 2012-05-15 15:15:11 -0700 | [diff] [blame] | 735 | GEN := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_android.o |
Pavel Chupin | b49c17c | 2013-10-02 16:38:05 +0400 | [diff] [blame] | 736 | $(GEN): $(LOCAL_PATH)/arch-common/bionic/crtend.S |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 737 | @mkdir -p $(dir $@) |
Ying Wang | cf46487 | 2012-09-07 17:06:56 -0700 | [diff] [blame] | 738 | $(hide) $(TARGET_CC) $(libc_crt_target_cflags) \ |
| 739 | -MD -MF $(@:%.o=%.d) -o $@ -c $< |
| 740 | $(transform-d-to-p) |
| 741 | -include $(GEN:%.o=%.P) |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 742 | ALL_GENERATED_SOURCES += $(GEN) |
| 743 | |
| 744 | |
| 745 | # To enable malloc leak check for statically linked programs, add |
| 746 | # "WITH_MALLOC_CHECK_LIBC_A := true" to buildspec.mk |
| 747 | WITH_MALLOC_CHECK_LIBC_A := $(strip $(WITH_MALLOC_CHECK_LIBC_A)) |
| 748 | |
| 749 | # ======================================================== |
Nick Kralevich | 6334c66 | 2012-07-10 10:46:19 -0700 | [diff] [blame] | 750 | # libbionic_ssp.a - stack protector code |
| 751 | # ======================================================== |
| 752 | # |
| 753 | # The stack protector code needs to be compiled |
| 754 | # with -fno-stack-protector, since it modifies the |
| 755 | # stack canary. |
| 756 | |
| 757 | include $(CLEAR_VARS) |
| 758 | |
Elliott Hughes | 642331b | 2013-03-06 15:03:53 -0800 | [diff] [blame] | 759 | LOCAL_SRC_FILES := bionic/__stack_chk_fail.cpp |
Elliott Hughes | dc5ec07 | 2013-02-14 11:15:58 -0800 | [diff] [blame] | 760 | LOCAL_CFLAGS := $(libc_common_cflags) -fno-stack-protector -Werror |
Stephen Hines | 762cea4 | 2013-09-30 17:10:53 -0700 | [diff] [blame] | 761 | LOCAL_CONLYFLAGS := $(libc_common_conlyflags) |
| 762 | LOCAL_CPPFLAGS := $(libc_common_cppflags) |
Nick Kralevich | 6334c66 | 2012-07-10 10:46:19 -0700 | [diff] [blame] | 763 | LOCAL_C_INCLUDES := $(libc_common_c_includes) |
| 764 | LOCAL_MODULE := libbionic_ssp |
Christopher Ferris | d7a6329 | 2013-10-03 13:26:22 -0700 | [diff] [blame] | 765 | LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies) |
Nick Kralevich | 6334c66 | 2012-07-10 10:46:19 -0700 | [diff] [blame] | 766 | LOCAL_SYSTEM_SHARED_LIBRARIES := |
| 767 | |
| 768 | include $(BUILD_STATIC_LIBRARY) |
| 769 | |
| 770 | |
| 771 | # ======================================================== |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 772 | # libc_tzcode.a - upstream 'tzcode' code |
| 773 | # ======================================================== |
| 774 | |
| 775 | include $(CLEAR_VARS) |
| 776 | |
| 777 | LOCAL_SRC_FILES := $(libc_tzcode_src_files) |
| 778 | LOCAL_CFLAGS := \ |
| 779 | $(libc_common_cflags) \ |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 780 | -DSTD_INSPIRED=1 \ |
| 781 | -DTZDIR=\"/system/usr/share/zoneinfo\" \ |
| 782 | -DTM_GMTOFF=tm_gmtoff \ |
| 783 | -DUSG_COMPAT=1 |
Stephen Hines | 762cea4 | 2013-09-30 17:10:53 -0700 | [diff] [blame] | 784 | LOCAL_CONLYFLAGS := $(libc_common_conlyflags) |
| 785 | LOCAL_CPPFLAGS := $(libc_common_cppflags) |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 786 | LOCAL_C_INCLUDES := $(libc_common_c_includes) |
| 787 | LOCAL_MODULE := libc_tzcode |
Christopher Ferris | d7a6329 | 2013-10-03 13:26:22 -0700 | [diff] [blame] | 788 | LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies) |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 789 | LOCAL_SYSTEM_SHARED_LIBRARIES := |
| 790 | |
| 791 | include $(BUILD_STATIC_LIBRARY) |
| 792 | |
| 793 | |
| 794 | # ======================================================== |
Elliott Hughes | eb847bc | 2013-10-09 15:50:50 -0700 | [diff] [blame] | 795 | # libc_dns.a - modified NetBSD DNS code |
| 796 | # ======================================================== |
| 797 | |
| 798 | include $(CLEAR_VARS) |
| 799 | |
| 800 | LOCAL_SRC_FILES := $(libc_dns_src_files) |
| 801 | LOCAL_CFLAGS := \ |
| 802 | $(libc_common_cflags) \ |
| 803 | -DINET6 \ |
| 804 | -I$(LOCAL_PATH)/private \ |
| 805 | -I$(LOCAL_PATH)/upstream-netbsd/libc/include # for NetBSD private headers |
| 806 | |
| 807 | LOCAL_CONLYFLAGS := $(libc_common_conlyflags) |
| 808 | LOCAL_CPPFLAGS := $(libc_common_cppflags) |
| 809 | LOCAL_C_INCLUDES := $(libc_common_c_includes) |
| 810 | LOCAL_MODULE := libc_dns |
| 811 | LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies) |
| 812 | LOCAL_SYSTEM_SHARED_LIBRARIES := |
| 813 | |
| 814 | include $(BUILD_STATIC_LIBRARY) |
| 815 | |
| 816 | |
| 817 | # ======================================================== |
Elliott Hughes | f077784 | 2013-03-01 16:59:46 -0800 | [diff] [blame] | 818 | # libc_freebsd.a - upstream FreeBSD C library code |
| 819 | # ======================================================== |
| 820 | # |
| 821 | # These files are built with the freebsd-compat.h header file |
| 822 | # automatically included. |
| 823 | |
| 824 | include $(CLEAR_VARS) |
| 825 | |
| 826 | LOCAL_SRC_FILES := $(libc_upstream_freebsd_src_files) |
| 827 | LOCAL_CFLAGS := \ |
| 828 | $(libc_common_cflags) \ |
| 829 | -I$(LOCAL_PATH)/upstream-freebsd \ |
| 830 | -I$(LOCAL_PATH)/upstream-freebsd/libc/include \ |
| 831 | -include upstream-freebsd/freebsd-compat.h |
Stephen Hines | 762cea4 | 2013-09-30 17:10:53 -0700 | [diff] [blame] | 832 | LOCAL_CONLYFLAGS := $(libc_common_conlyflags) |
| 833 | LOCAL_CPPFLAGS := $(libc_common_cppflags) |
Elliott Hughes | f077784 | 2013-03-01 16:59:46 -0800 | [diff] [blame] | 834 | LOCAL_C_INCLUDES := $(libc_common_c_includes) |
| 835 | LOCAL_MODULE := libc_freebsd |
Christopher Ferris | d7a6329 | 2013-10-03 13:26:22 -0700 | [diff] [blame] | 836 | LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies) |
Elliott Hughes | f077784 | 2013-03-01 16:59:46 -0800 | [diff] [blame] | 837 | LOCAL_SYSTEM_SHARED_LIBRARIES := |
| 838 | |
| 839 | include $(BUILD_STATIC_LIBRARY) |
| 840 | |
| 841 | |
| 842 | # ======================================================== |
Elliott Hughes | f8b3a92 | 2012-08-10 11:39:58 -0700 | [diff] [blame] | 843 | # libc_netbsd.a - upstream NetBSD C library code |
| 844 | # ======================================================== |
| 845 | # |
| 846 | # These files are built with the netbsd-compat.h header file |
| 847 | # automatically included. |
| 848 | |
| 849 | include $(CLEAR_VARS) |
| 850 | |
| 851 | LOCAL_SRC_FILES := $(libc_upstream_netbsd_src_files) |
| 852 | LOCAL_CFLAGS := \ |
| 853 | $(libc_common_cflags) \ |
Elliott Hughes | eb847bc | 2013-10-09 15:50:50 -0700 | [diff] [blame] | 854 | -DPOSIX_MISTAKE \ |
Elliott Hughes | 3d2d448 | 2012-08-13 16:38:29 -0700 | [diff] [blame] | 855 | -I$(LOCAL_PATH)/upstream-netbsd \ |
Elliott Hughes | ab44f52 | 2012-10-23 16:05:09 -0700 | [diff] [blame] | 856 | -I$(LOCAL_PATH)/upstream-netbsd/libc/include \ |
Elliott Hughes | f8b3a92 | 2012-08-10 11:39:58 -0700 | [diff] [blame] | 857 | -include upstream-netbsd/netbsd-compat.h |
Stephen Hines | 762cea4 | 2013-09-30 17:10:53 -0700 | [diff] [blame] | 858 | LOCAL_CONLYFLAGS := $(libc_common_conlyflags) |
| 859 | LOCAL_CPPFLAGS := $(libc_common_cppflags) |
Elliott Hughes | f8b3a92 | 2012-08-10 11:39:58 -0700 | [diff] [blame] | 860 | LOCAL_C_INCLUDES := $(libc_common_c_includes) |
| 861 | LOCAL_MODULE := libc_netbsd |
Christopher Ferris | d7a6329 | 2013-10-03 13:26:22 -0700 | [diff] [blame] | 862 | LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies) |
Elliott Hughes | f8b3a92 | 2012-08-10 11:39:58 -0700 | [diff] [blame] | 863 | LOCAL_SYSTEM_SHARED_LIBRARIES := |
| 864 | |
| 865 | include $(BUILD_STATIC_LIBRARY) |
| 866 | |
| 867 | |
| 868 | # ======================================================== |
Elliott Hughes | 29c7f0b | 2012-10-22 17:05:27 -0700 | [diff] [blame] | 869 | # libc_bionic.a - home-grown C library code |
| 870 | # ======================================================== |
| 871 | # |
| 872 | include $(CLEAR_VARS) |
| 873 | |
| 874 | LOCAL_SRC_FILES := $(libc_bionic_src_files) |
| 875 | LOCAL_CFLAGS := $(libc_common_cflags) -Werror |
Stephen Hines | 762cea4 | 2013-09-30 17:10:53 -0700 | [diff] [blame] | 876 | LOCAL_CONLYFLAGS := $(libc_common_conlyflags) |
| 877 | LOCAL_CPPFLAGS := $(libc_common_cppflags) |
Elliott Hughes | 29c7f0b | 2012-10-22 17:05:27 -0700 | [diff] [blame] | 878 | LOCAL_C_INCLUDES := $(libc_common_c_includes) |
| 879 | LOCAL_MODULE := libc_bionic |
Christopher Ferris | d7a6329 | 2013-10-03 13:26:22 -0700 | [diff] [blame] | 880 | LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies) |
Elliott Hughes | 29c7f0b | 2012-10-22 17:05:27 -0700 | [diff] [blame] | 881 | LOCAL_SYSTEM_SHARED_LIBRARIES := |
| 882 | |
Elliott Hughes | 66759d6 | 2013-10-31 14:09:39 -0700 | [diff] [blame] | 883 | # Set -DPTHREAD_DEBUG_ENABLED=true to enable support for pthread deadlock prediction. |
| 884 | # Since this code is experimental it is disabled by default. |
| 885 | LOCAL_CFLAGS += $(libc_common_cflags) -DPTHREAD_DEBUG_ENABLED=false |
| 886 | |
Elliott Hughes | 29c7f0b | 2012-10-22 17:05:27 -0700 | [diff] [blame] | 887 | include $(BUILD_STATIC_LIBRARY) |
| 888 | |
| 889 | |
| 890 | # ======================================================== |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 891 | # libc_common.a |
| 892 | # ======================================================== |
Elliott Hughes | f8b3a92 | 2012-08-10 11:39:58 -0700 | [diff] [blame] | 893 | |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 894 | include $(CLEAR_VARS) |
| 895 | |
| 896 | LOCAL_SRC_FILES := $(libc_common_src_files) |
Elliott Hughes | eb847bc | 2013-10-09 15:50:50 -0700 | [diff] [blame] | 897 | LOCAL_CFLAGS := $(libc_common_cflags) |
Stephen Hines | 762cea4 | 2013-09-30 17:10:53 -0700 | [diff] [blame] | 898 | LOCAL_CONLYFLAGS := $(libc_common_conlyflags) |
| 899 | LOCAL_CPPFLAGS := $(libc_common_cppflags) |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 900 | LOCAL_C_INCLUDES := $(libc_common_c_includes) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 901 | LOCAL_MODULE := libc_common |
Christopher Ferris | d7a6329 | 2013-10-03 13:26:22 -0700 | [diff] [blame] | 902 | LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies) |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 903 | LOCAL_WHOLE_STATIC_LIBRARIES := \ |
| 904 | libbionic_ssp \ |
| 905 | libc_bionic \ |
Elliott Hughes | eb847bc | 2013-10-09 15:50:50 -0700 | [diff] [blame] | 906 | libc_dns \ |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 907 | libc_freebsd \ |
| 908 | libc_netbsd \ |
Elliott Hughes | eb847bc | 2013-10-09 15:50:50 -0700 | [diff] [blame] | 909 | libc_tzcode \ |
| 910 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 911 | LOCAL_SYSTEM_SHARED_LIBRARIES := |
| 912 | |
Ying Wang | c97c5fc | 2012-08-11 14:23:19 -0700 | [diff] [blame] | 913 | # TODO: split out the asflags. |
| 914 | LOCAL_ASFLAGS := $(LOCAL_CFLAGS) |
| 915 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 916 | include $(BUILD_STATIC_LIBRARY) |
| 917 | |
| 918 | |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 919 | # ======================================================== |
Dima Zavin | 49e5533 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 920 | # libc_nomalloc.a |
| 921 | # ======================================================== |
| 922 | # |
| 923 | # This is a version of the static C library that does not |
Elliott Hughes | 91a9925 | 2013-02-12 21:56:42 -0800 | [diff] [blame] | 924 | # include malloc. It's useful in situations when the user wants |
| 925 | # to provide their own malloc implementation, or wants to |
| 926 | # explicitly disallow the use of the use of malloc, |
| 927 | # such as in the dynamic loader. |
Dima Zavin | 49e5533 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 928 | |
| 929 | include $(CLEAR_VARS) |
| 930 | |
| 931 | LOCAL_SRC_FILES := \ |
| 932 | $(libc_arch_static_src_files) \ |
David 'Digit' Turner | 6a51def | 2010-08-27 08:19:19 -0700 | [diff] [blame] | 933 | $(libc_static_common_src_files) \ |
Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 934 | bionic/libc_init_static.cpp |
Dima Zavin | 49e5533 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 935 | |
| 936 | LOCAL_C_INCLUDES := $(libc_common_c_includes) |
David 'Digit' Turner | 6a51def | 2010-08-27 08:19:19 -0700 | [diff] [blame] | 937 | LOCAL_CFLAGS := $(libc_common_cflags) \ |
Stephen Hines | 762cea4 | 2013-09-30 17:10:53 -0700 | [diff] [blame] | 938 | -DLIBC_STATIC |
| 939 | LOCAL_CONLYFLAGS := $(libc_common_conlyflags) |
| 940 | LOCAL_CPPFLAGS := $(libc_common_cppflags) |
Dima Zavin | 49e5533 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 941 | |
| 942 | LOCAL_MODULE := libc_nomalloc |
Christopher Ferris | d7a6329 | 2013-10-03 13:26:22 -0700 | [diff] [blame] | 943 | LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies) |
Dima Zavin | 49e5533 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 944 | LOCAL_WHOLE_STATIC_LIBRARIES := libc_common |
| 945 | LOCAL_SYSTEM_SHARED_LIBRARIES := |
| 946 | |
| 947 | include $(BUILD_STATIC_LIBRARY) |
| 948 | |
| 949 | |
| 950 | # ======================================================== |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 951 | # libc.a |
| 952 | # ======================================================== |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 953 | include $(CLEAR_VARS) |
| 954 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 955 | LOCAL_SRC_FILES := \ |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 956 | $(libc_arch_static_src_files) \ |
David 'Digit' Turner | 6a51def | 2010-08-27 08:19:19 -0700 | [diff] [blame] | 957 | $(libc_static_common_src_files) \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 958 | bionic/dlmalloc.c \ |
Elliott Hughes | c4d1fec | 2012-08-28 14:15:04 -0700 | [diff] [blame] | 959 | bionic/malloc_debug_common.cpp \ |
Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 960 | bionic/libc_init_static.cpp |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 961 | |
Vladimir Chtchetkine | b74ceb2 | 2009-11-17 14:13:38 -0800 | [diff] [blame] | 962 | LOCAL_CFLAGS := $(libc_common_cflags) \ |
Stephen Hines | 762cea4 | 2013-09-30 17:10:53 -0700 | [diff] [blame] | 963 | -DLIBC_STATIC |
| 964 | LOCAL_CONLYFLAGS := $(libc_common_conlyflags) |
| 965 | LOCAL_CPPFLAGS := $(libc_common_cppflags) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 966 | LOCAL_C_INCLUDES := $(libc_common_c_includes) |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 967 | LOCAL_MODULE := libc |
Christopher Ferris | d7a6329 | 2013-10-03 13:26:22 -0700 | [diff] [blame] | 968 | LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 969 | LOCAL_WHOLE_STATIC_LIBRARIES := libc_common |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 970 | LOCAL_SYSTEM_SHARED_LIBRARIES := |
| 971 | |
| 972 | include $(BUILD_STATIC_LIBRARY) |
| 973 | |
| 974 | |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 975 | # ======================================================== |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 976 | # libc.so |
| 977 | # ======================================================== |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 978 | include $(CLEAR_VARS) |
| 979 | |
Elliott Hughes | 66759d6 | 2013-10-31 14:09:39 -0700 | [diff] [blame] | 980 | LOCAL_CFLAGS := $(libc_common_cflags) |
Stephen Hines | 762cea4 | 2013-09-30 17:10:53 -0700 | [diff] [blame] | 981 | LOCAL_CONLYFLAGS := $(libc_common_conlyflags) |
| 982 | LOCAL_CPPFLAGS := $(libc_common_cppflags) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 983 | LOCAL_C_INCLUDES := $(libc_common_c_includes) |
| 984 | |
| 985 | LOCAL_SRC_FILES := \ |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 986 | $(libc_arch_dynamic_src_files) \ |
David 'Digit' Turner | 6a51def | 2010-08-27 08:19:19 -0700 | [diff] [blame] | 987 | $(libc_static_common_src_files) \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 988 | bionic/dlmalloc.c \ |
Elliott Hughes | c4d1fec | 2012-08-28 14:15:04 -0700 | [diff] [blame] | 989 | bionic/malloc_debug_common.cpp \ |
Elliott Hughes | 1e980b6 | 2013-01-17 18:36:06 -0800 | [diff] [blame] | 990 | bionic/pthread_debug.cpp \ |
Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 991 | bionic/libc_init_dynamic.cpp |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 992 | |
Ard Biesheuvel | f3cfcd8 | 2012-08-21 14:13:50 +0200 | [diff] [blame] | 993 | ifeq ($(TARGET_ARCH),arm) |
| 994 | LOCAL_NO_CRT := true |
| 995 | LOCAL_CFLAGS += -DCRT_LEGACY_WORKAROUND |
| 996 | |
| 997 | LOCAL_SRC_FILES := \ |
Pavel Chupin | b49c17c | 2013-10-02 16:38:05 +0400 | [diff] [blame] | 998 | arch-common/bionic/crtbegin_so.c \ |
Ard Biesheuvel | f3cfcd8 | 2012-08-21 14:13:50 +0200 | [diff] [blame] | 999 | arch-arm/bionic/atexit_legacy.c \ |
| 1000 | $(LOCAL_SRC_FILES) \ |
Pavel Chupin | b49c17c | 2013-10-02 16:38:05 +0400 | [diff] [blame] | 1001 | arch-common/bionic/crtend_so.S |
Ard Biesheuvel | f3cfcd8 | 2012-08-21 14:13:50 +0200 | [diff] [blame] | 1002 | endif |
| 1003 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1004 | LOCAL_MODULE:= libc |
Christopher Ferris | d7a6329 | 2013-10-03 13:26:22 -0700 | [diff] [blame] | 1005 | LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies) |
Elliott Hughes | 914d8d4 | 2012-10-18 11:28:56 -0700 | [diff] [blame] | 1006 | LOCAL_REQUIRED_MODULES := tzdata |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1007 | |
| 1008 | # WARNING: The only library libc.so should depend on is libdl.so! If you add other libraries, |
| 1009 | # make sure to add -Wl,--exclude-libs=libgcc.a to the LOCAL_LDFLAGS for those libraries. This |
| 1010 | # ensures that symbols that are pulled into those new libraries from libgcc.a are not declared |
| 1011 | # external; if that were the case, then libc would not pull those symbols from libgcc.a as it |
| 1012 | # should, instead relying on the external symbols from the dependent libraries. That would |
| 1013 | # create an "cloaked" dependency on libgcc.a in libc though the libraries, which is not what |
| 1014 | # you wanted! |
| 1015 | |
| 1016 | LOCAL_SHARED_LIBRARIES := libdl |
| 1017 | LOCAL_WHOLE_STATIC_LIBRARIES := libc_common |
| 1018 | LOCAL_SYSTEM_SHARED_LIBRARIES := |
| 1019 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1020 | include $(BUILD_SHARED_LIBRARY) |
| 1021 | |
| 1022 | |
Vladimir Chtchetkine | b74ceb2 | 2009-11-17 14:13:38 -0800 | [diff] [blame] | 1023 | # For all builds, except for the -user build we will enable memory |
| 1024 | # allocation checking (including memory leaks, buffer overwrites, etc.) |
| 1025 | # Note that all these checks are also controlled by env. settings |
| 1026 | # that can enable, or disable specific checks. Note also that some of |
| 1027 | # the checks are available only in emulator and are implemeted in |
| 1028 | # libc_malloc_qemu_instrumented.so. |
| 1029 | ifneq ($(TARGET_BUILD_VARIANT),user) |
| 1030 | |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 1031 | # ======================================================== |
Vladimir Chtchetkine | b74ceb2 | 2009-11-17 14:13:38 -0800 | [diff] [blame] | 1032 | # libc_malloc_debug_leak.so |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1033 | # ======================================================== |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1034 | include $(CLEAR_VARS) |
| 1035 | |
Dima Zavin | ca122b0 | 2009-05-27 10:52:37 -0700 | [diff] [blame] | 1036 | LOCAL_CFLAGS := \ |
| 1037 | $(libc_common_cflags) \ |
| 1038 | -DMALLOC_LEAK_CHECK |
Stephen Hines | 762cea4 | 2013-09-30 17:10:53 -0700 | [diff] [blame] | 1039 | LOCAL_CONLYFLAGS := $(libc_common_conlyflags) |
| 1040 | LOCAL_CPPFLAGS := $(libc_common_cppflags) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1041 | |
| 1042 | LOCAL_C_INCLUDES := $(libc_common_c_includes) |
| 1043 | |
| 1044 | LOCAL_SRC_FILES := \ |
Elliott Hughes | 1e980b6 | 2013-01-17 18:36:06 -0800 | [diff] [blame] | 1045 | bionic/debug_mapinfo.cpp \ |
| 1046 | bionic/debug_stacktrace.cpp \ |
Elliott Hughes | c4d1fec | 2012-08-28 14:15:04 -0700 | [diff] [blame] | 1047 | bionic/malloc_debug_leak.cpp \ |
| 1048 | bionic/malloc_debug_check.cpp \ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1049 | |
Vladimir Chtchetkine | b74ceb2 | 2009-11-17 14:13:38 -0800 | [diff] [blame] | 1050 | LOCAL_MODULE:= libc_malloc_debug_leak |
Christopher Ferris | d7a6329 | 2013-10-03 13:26:22 -0700 | [diff] [blame] | 1051 | LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1052 | |
Pavel Chupin | e007775 | 2012-09-10 19:35:25 +0400 | [diff] [blame] | 1053 | LOCAL_SHARED_LIBRARIES := libc libdl |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1054 | LOCAL_WHOLE_STATIC_LIBRARIES := libc_common |
| 1055 | LOCAL_SYSTEM_SHARED_LIBRARIES := |
Bruce Beare | aa46fa2 | 2010-07-08 14:47:50 -0700 | [diff] [blame] | 1056 | LOCAL_ALLOW_UNDEFINED_SYMBOLS := true |
Iliyan Malchev | 3680704 | 2011-03-14 14:02:05 -0700 | [diff] [blame] | 1057 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1058 | # Don't install on release build |
Vladimir Chtchetkine | b74ceb2 | 2009-11-17 14:13:38 -0800 | [diff] [blame] | 1059 | LOCAL_MODULE_TAGS := eng debug |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1060 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1061 | include $(BUILD_SHARED_LIBRARY) |
| 1062 | |
Vladimir Chtchetkine | b74ceb2 | 2009-11-17 14:13:38 -0800 | [diff] [blame] | 1063 | |
| 1064 | # ======================================================== |
| 1065 | # libc_malloc_debug_qemu.so |
| 1066 | # ======================================================== |
| 1067 | include $(CLEAR_VARS) |
| 1068 | |
| 1069 | LOCAL_CFLAGS := \ |
| 1070 | $(libc_common_cflags) \ |
| 1071 | -DMALLOC_QEMU_INSTRUMENT |
Stephen Hines | 762cea4 | 2013-09-30 17:10:53 -0700 | [diff] [blame] | 1072 | LOCAL_CONLYFLAGS := $(libc_common_conlyflags) |
| 1073 | LOCAL_CPPFLAGS := $(libc_common_cppflags) |
Vladimir Chtchetkine | b74ceb2 | 2009-11-17 14:13:38 -0800 | [diff] [blame] | 1074 | |
| 1075 | LOCAL_C_INCLUDES := $(libc_common_c_includes) |
| 1076 | |
| 1077 | LOCAL_SRC_FILES := \ |
Elliott Hughes | c4d1fec | 2012-08-28 14:15:04 -0700 | [diff] [blame] | 1078 | bionic/malloc_debug_qemu.cpp |
Vladimir Chtchetkine | b74ceb2 | 2009-11-17 14:13:38 -0800 | [diff] [blame] | 1079 | |
| 1080 | LOCAL_MODULE:= libc_malloc_debug_qemu |
Christopher Ferris | d7a6329 | 2013-10-03 13:26:22 -0700 | [diff] [blame] | 1081 | LOCAL_ADDITIONAL_DEPENDENCIES := $(libc_common_additional_dependencies) |
Vladimir Chtchetkine | b74ceb2 | 2009-11-17 14:13:38 -0800 | [diff] [blame] | 1082 | |
Mathias Agopian | 7c0c379 | 2011-09-05 23:54:55 -0700 | [diff] [blame] | 1083 | LOCAL_SHARED_LIBRARIES := libc libdl |
Vladimir Chtchetkine | b74ceb2 | 2009-11-17 14:13:38 -0800 | [diff] [blame] | 1084 | LOCAL_WHOLE_STATIC_LIBRARIES := libc_common |
| 1085 | LOCAL_SYSTEM_SHARED_LIBRARIES := |
Iliyan Malchev | 3680704 | 2011-03-14 14:02:05 -0700 | [diff] [blame] | 1086 | |
Vladimir Chtchetkine | b74ceb2 | 2009-11-17 14:13:38 -0800 | [diff] [blame] | 1087 | # Don't install on release build |
| 1088 | LOCAL_MODULE_TAGS := eng debug |
| 1089 | |
| 1090 | include $(BUILD_SHARED_LIBRARY) |
| 1091 | |
| 1092 | endif #!user |
| 1093 | |
| 1094 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1095 | # ======================================================== |
| 1096 | include $(call all-makefiles-under,$(LOCAL_PATH)) |