mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-13 08:40:07 +00:00
49e522bfb8
* locale/loadlocale.c (_nl_load_locale): If LOCALE/LC_* is a directory, open LOCALE/LC_*/SYS_LC_* instead. * stdio/fpioconst.c, stdio/fpioconst.h, stdio/gmp-impl.h, stdio/gmp.h, stdio/longlong.h, stdio/mp_clz_tab.c, stdio/gen-mpn-copy: Files moved to stdlib. * stdio/Makefile: All mpn stuff moved to stdlib/Makefile. * stdio/printf_fp.c: Use ../stdlib to find fpioconst.h and gmp headers. * stdlib/strtod.c: Don't use ../stdio to find fpioconst.h and gmp headers.
32 lines
717 B
Bash
32 lines
717 B
Bash
#!/bin/sh
|
|
|
|
translations='
|
|
pentium i386/i586
|
|
sparc8 sparc/sparc8
|
|
sparc9 sparc/sparc9
|
|
mc68000 m68k/m68000
|
|
mc68020 m68k/m68020
|
|
mc88100 m88k/m88100
|
|
mc88110 m88k/m88110
|
|
r3000 mips
|
|
r4000 mips/mips64
|
|
hppa1_0 hppa/hppa1.0
|
|
hppa1_1 hppa/hppa1.1
|
|
'
|
|
|
|
set $translations
|
|
while [ $# -ge 2 ]; do
|
|
gmp=$1 glibc=$2
|
|
shift; shift
|
|
echo 'mpn-found-1 := $(filter $(gmp-srcdir)/mpn/'$gmp'/%,$(mpn-found))
|
|
mpn-copy-1 := $(patsubst $(gmp-srcdir)/mpn/'$gmp'/%,$(sysdep_dir)/'$glibc\
|
|
'/%,$(mpn-found-1))
|
|
mpn-found := $(filter-out $(mpn-found-1),$(mpn-found))
|
|
mpn-copy-sysdep := $(mpn-copy-sysdep) $(mpn-copy-1)
|
|
$(mpn-copy-1): $(sysdep_dir)/'$glibc'/%: \
|
|
$(ignore gmp2glibc.sed) $(gmp-srcdir)/mpn/'$gmp'/%
|
|
$(gmp2glibc)'
|
|
done
|
|
|
|
exit 0
|