yann@1: From http://www.mail-archive.com/pld-cvs-commit@pld-linux.org/msg00229.html yann@1: Fixes yann@1: rtld.c: In function '_dl_start': yann@1: dynamic-link.h:47: error: nested function 'elf_machine_rela_relative' declared but never defined yann@1: dynamic-link.h:41: error: nested function 'elf_machine_rela' declared but never defined yann@1: when compiling glibc-2.3.4 with gcc-4.0 yann@1: yann@1: But see also yann@1: http://sources.redhat.com/ml/libc-hacker/2005-02/msg00000.html yann@1: and yann@1: http://sources.redhat.com/ml/libc-hacker/2005-03/msg00008.html yann@1: which seem to propose less radical fixes? yann@1: yann@1: Aha. See also http://sources.redhat.com/bugzilla/show_bug.cgi?id=721 yann@1: yann@1: --- glibc-2.3-20050307/elf/dynamic-link.h.old 2005-03-12 18:12:37.000000000 -0800 yann@1: +++ glibc-2.3-20050307/elf/dynamic-link.h 2005-03-12 18:12:59.777820848 -0800 yann@1: @@ -19,43 +19,6 @@ yann@1: yann@1: #include yann@1: #include yann@1: - yann@1: -#ifdef RESOLVE yann@1: -/* We pass reloc_addr as a pointer to void, as opposed to a pointer to yann@1: - ElfW(Addr), because not all architectures can assume that the yann@1: - relocated address is properly aligned, whereas the compiler is yann@1: - entitled to assume that a pointer to a type is properly aligned for yann@1: - the type. Even if we cast the pointer back to some other type with yann@1: - less strict alignment requirements, the compiler might still yann@1: - remember that the pointer was originally more aligned, thereby yann@1: - optimizing away alignment tests or using word instructions for yann@1: - copying memory, breaking the very code written to handle the yann@1: - unaligned cases. */ yann@1: -auto void __attribute__((always_inline)) yann@1: -elf_machine_rel (struct link_map *map, const ElfW(Rel) *reloc, yann@1: - const ElfW(Sym) *sym, const struct r_found_version *version, yann@1: - void *const reloc_addr); yann@1: -auto void __attribute__((always_inline)) yann@1: -elf_machine_rela (struct link_map *map, const ElfW(Rela) *reloc, yann@1: - const ElfW(Sym) *sym, const struct r_found_version *version, yann@1: - void *const reloc_addr); yann@1: -auto void __attribute__((always_inline)) yann@1: -elf_machine_rel_relative (ElfW(Addr) l_addr, const ElfW(Rel) *reloc, yann@1: - void *const reloc_addr); yann@1: -auto void __attribute__((always_inline)) yann@1: -elf_machine_rela_relative (ElfW(Addr) l_addr, const ElfW(Rela) *reloc, yann@1: - void *const reloc_addr); yann@1: -# if ELF_MACHINE_NO_RELA || defined ELF_MACHINE_PLT_REL yann@1: -auto void __attribute__((always_inline)) yann@1: -elf_machine_lazy_rel (struct link_map *map, yann@1: - ElfW(Addr) l_addr, const ElfW(Rel) *reloc); yann@1: -# else yann@1: -auto void __attribute__((always_inline)) yann@1: -elf_machine_lazy_rel (struct link_map *map, yann@1: - ElfW(Addr) l_addr, const ElfW(Rela) *reloc); yann@1: -# endif yann@1: -#endif yann@1: - yann@1: #include yann@1: yann@1: #ifndef VERSYMIDX