bionic/libc/arch-x86/atom/string
David 'Digit' Turner 891dedb935 libc: Fix 'index' symbol export.
The C library didn't export the 'index' symbol, but its C++ name-mangling
instead, which broke the ABI and prevented some applications from loading
properly.

The main reason was that the implementation under bionic/index.cpp relied
on the declaration to specify that the function has C linkage.

However, the declaration for index() was removed from both <string.h>
and <strings.h> in a recent patch, which made the compiler think it was
ok to compile the function with C++ linkage instead!

This patch does the following:

- Move index() definition to bionic/ndk_cruft.cpp and ensure it uses
  C linkage.

  Note that this removes index() from the 64-bit library entirely, this
  is intentional and will break source compatibility. Simply replacing
  an index() call with the equivalent strchr() should be enough to fix
  this in third-party code.

- Remove bionic/index.cpp from the tree and build files.

- Remove x86 assembly implementation from arch-x86/ to avoid conflict
  with the one in ndk_cruft.cpp

BUG=15606653

Change-Id: I816b589f69c8f8a6511f6be6195d20cf1c4e8123
2014-06-16 13:10:20 -07:00
..
cache.h Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
sse2-bzero-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
sse2-memchr-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
sse2-memrchr-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
sse2-memset-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
sse2-strchr-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
sse2-strlen-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
sse2-strnlen-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
sse2-strrchr-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
sse2-wcschr-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
sse2-wcscmp-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
sse2-wcslen-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
sse2-wcsrchr-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
ssse3-bcopy-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
ssse3-memcmp-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
ssse3-memcpy-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
ssse3-memmove-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
ssse3-strcat-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
ssse3-strcmp-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
ssse3-strcpy-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
ssse3-strlcat-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
ssse3-strlcpy-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
ssse3-strncat-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
ssse3-strncmp-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
ssse3-strncpy-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
ssse3-wcscat-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
ssse3-wcscpy-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00
ssse3-wmemcmp-atom.S Add 32-bit Silvermont-optimized string/memory functions. 2014-05-12 13:56:59 -07:00