• Elliott Hughes's avatar
    Fix x86_64 build, clean up intermediate libraries. · eb847bc8
    Elliott Hughes authored
    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 ...
    eb847bc8
__stack_chk_fail.cpp 1.52 KB