diff options
author | Christopher Ferris <cferris@google.com> | 2013-02-26 01:30:00 -0800 |
---|---|---|
committer | Christopher Ferris <cferris@google.com> | 2013-03-12 14:06:08 -0700 |
commit | 04954a43b362b8c817cc5859513efad0c344f412 (patch) | |
tree | 372c39b6cfec1bc006a1adbdbc191a7c594a136b /libc/arch-x86 | |
parent | 6b4c77f854c079138d552608b9df5fa3035f0fcc (diff) | |
download | bionic-04954a43b362b8c817cc5859513efad0c344f412.zip bionic-04954a43b362b8c817cc5859513efad0c344f412.tar.gz bionic-04954a43b362b8c817cc5859513efad0c344f412.tar.bz2 |
Break bionic implementations into arch versions.
Move arch specific code for arm, mips, x86 into separate
makefiles.
In addition, add different arm cpu versions of memcpy/memset.
Bug: 8005082
Merge from internal master (acdde8c1cf8e8beed98c052757d96695b820b50c).
Change-Id: I04f3d0715104fab618e1abf7cf8f7eec9bec79df
Diffstat (limited to 'libc/arch-x86')
-rw-r--r-- | libc/arch-x86/x86.mk | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libc/arch-x86/x86.mk b/libc/arch-x86/x86.mk new file mode 100644 index 0000000..0e5d283 --- /dev/null +++ b/libc/arch-x86/x86.mk @@ -0,0 +1,27 @@ +_LIBC_ARCH_COMMON_SRC_FILES := \ + arch-x86/bionic/clone.S \ + arch-x86/bionic/_exit_with_stack_teardown.S \ + arch-x86/bionic/futex_x86.S \ + arch-x86/bionic/__get_sp.S \ + arch-x86/bionic/__get_tls.c \ + arch-x86/bionic/_setjmp.S \ + arch-x86/bionic/setjmp.S \ + arch-x86/bionic/__set_tls.c \ + arch-x86/bionic/sigsetjmp.S \ + arch-x86/bionic/syscall.S \ + arch-x86/bionic/vfork.S \ + arch-x86/string/bcopy_wrapper.S \ + arch-x86/string/bzero_wrapper.S \ + arch-x86/string/ffs.S \ + arch-x86/string/memcmp_wrapper.S \ + arch-x86/string/memcpy_wrapper.S \ + arch-x86/string/memmove_wrapper.S \ + arch-x86/string/memset_wrapper.S \ + arch-x86/string/strcmp_wrapper.S \ + arch-x86/string/strlen_wrapper.S \ + arch-x86/string/strncmp_wrapper.S \ + +_LIBC_ARCH_STATIC_SRC_FILES := \ + bionic/dl_iterate_phdr_static.c \ + +_LIBC_ARCH_DYNAMIC_SRC_FILES := |