platform_bionic/libc/stdlib
Elliott Hughes eb847bc866 Fix x86_64 build, clean up intermediate libraries.
The x86_64 build was failing because clone.S had a call to __thread_entry which
was being added to a different intermediate .a on the way to making libc.so,
and the linker couldn't guarantee statically that such a relocation would be
possible.

  ld: error: out/target/product/generic_x86_64/obj/STATIC_LIBRARIES/libc_common_intermediates/libc_common.a(clone.o): requires dynamic R_X86_64_PC32 reloc against '__thread_entry' which may overflow at runtime; recompile with -fPIC

This patch addresses that by ensuring that the caller and callee end up in the
same intermediate .a. While I'm here, I've tried to clean up some of the mess
that led to this situation too. In particular, this removes libc/private/ from
the default include path (except for the DNS code), and splits out the DNS
code into its own library (since it's a weird special case of upstream NetBSD
code that's diverged so heavily it's unlikely ever to get back in sync).

There's more cleanup of the DNS situation possible, but this is definitely a
step in the right direction, and it's more than enough to get x86_64 building
cleanly.

Change-Id: I00425a7245b7a2573df16cc38798187d0729e7c4
2013-10-09 16:00:17 -07:00
..
atexit.c Fix x86_64 build, clean up intermediate libraries. 2013-10-09 16:00:17 -07:00
atexit.h stdlib: atexit: include <sys/cdefs.h> 2013-02-16 21:23:27 +05:30
ctype_.c Make ctype.h a little less unhygienic. 2013-08-13 14:30:59 -07:00
ctype_private.h Fix x86_64 build, clean up intermediate libraries. 2013-10-09 16:00:17 -07:00
exit.c Fix x86_64 build, clean up intermediate libraries. 2013-10-09 16:00:17 -07:00
getenv.c improve readability of stdlib: fix indentation and remove trailing spaces 2010-04-29 07:29:06 -07:00
putenv.c improve readability of stdlib: fix indentation and remove trailing spaces 2010-04-29 07:29:06 -07:00
setenv.c auto import from //depot/cupcake/@135843 2009-03-03 19:28:35 -08:00
strtod.c Bug 3330205 Thread safety for bignum powers of 5 2011-01-17 11:32:11 -08:00
strtoimax.c improve readability of stdlib: fix indentation and remove trailing spaces 2010-04-29 07:29:06 -07:00
strtol.c auto import from //depot/cupcake/@135843 2009-03-03 19:28:35 -08:00
strtoll.c auto import from //depot/cupcake/@135843 2009-03-03 19:28:35 -08:00
strtoul.c auto import from //depot/cupcake/@135843 2009-03-03 19:28:35 -08:00
strtoull.c auto import from //depot/cupcake/@135843 2009-03-03 19:28:35 -08:00
strtoumax.c improve readability of stdlib: fix indentation and remove trailing spaces 2010-04-29 07:29:06 -07:00
tolower_.c auto import from //depot/cupcake/@135843 2009-03-03 19:28:35 -08:00
toupper_.c auto import from //depot/cupcake/@135843 2009-03-03 19:28:35 -08:00