mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-18 11:00:07 +00:00
6cab5056c4
* stdlib/Makefile (mpn-found): Don't omit %.s. (mpn-copy-sysdep): Omit files in nonexistent directories. (copy-mpn): Commit files to CVS. * stdlib/gen-mpn-copy (translations): Update translations for GMP 1.906.7. * configure.in (machine): Translate alpha* to alpha/&, hppa* to hppa/&. Thu Oct 12 15:45:32 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> * hurd/hurd.h (file_name_lookup_under): Declare it. * hurd/Makefile (headers): Add hurd/lookup.h. * hurd/hurdinit.c (_hurd_ports_use): New function. * hurd/hurd.h (_hurd_ports_use): Declare it. (hurd_invoke_translator, hurd_file_name_lookup, hurd_file_name_split, hurd_file_name_lookup_retry): Remove these decls. * hurd/Makefile (routines): Remove invoke-trans.
36 lines
763 B
Bash
36 lines
763 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
|
|
mips2 mips
|
|
mips3 mips/mips3
|
|
hppa1_0 hppa
|
|
hppa1_1 hppa/hppa1.1
|
|
ev4 alpha
|
|
ev5 alpha/alphaev5
|
|
power rs6000
|
|
am29000 a29k
|
|
'
|
|
|
|
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
|