diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-12-24 17:43:20 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-12-24 17:43:20 +0100 |
commit | 94aa644695fc622b96b99e2fa40674d98a2945a7 (patch) | |
tree | 4e09f72a5a5e871b7deea0b2b47ec45efbe82f48 /Makefile.am | |
parent | 8146a7e3e616994928d2e3f3e9e48aaa4c06b1ad (diff) | |
download | gnumach-94aa644695fc622b96b99e2fa40674d98a2945a7.tar.gz gnumach-94aa644695fc622b96b99e2fa40674d98a2945a7.tar.bz2 gnumach-94aa644695fc622b96b99e2fa40674d98a2945a7.zip |
ld_magic_routines: Restore yet more symbol
cef6d34aa026 ("Implement our own functions to convert between host and
network values") dropped the glibc pieces from clib_routines, but
dropped too many ld symbols.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 82e7e9da..6e629e87 100644 --- a/Makefile.am +++ b/Makefile.am @@ -171,7 +171,7 @@ noinst_PROGRAMS += \ # This is the list of routines we use from libgcc. libgcc_routines := udivdi3 __udivdi3 __udivmoddi4 __umoddi3 __divdi3 __moddi3 __ffsdi2 # References generated by ld. -ld_magic_routines := __rel_iplt_start __rel_iplt_end __rela_iplt_start __rela_iplt_end etext _edata _end +ld_magic_routines := __rel_iplt_start __rel_iplt_end __rela_iplt_start __rela_iplt_end _START etext _edata _end gnumach-undef: gnumach.$(OBJEXT) $(NM_V) $(NM) -u $< | sed 's/ *U *//' | sort -u > $@ MOSTLYCLEANFILES += gnumach-undef |