mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
Mon Dec 4 12:10:28 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* stdlib/gen-mpn-copy (translations): Updated for new layout in GMP 1.910. * malloc/malloc.c (__malloc_initialize): Renamed from initialize; made global. (malloc): Caller changed. * malloc/realloc.c (realloc): Call __malloc_initialize if necessary, before checking hook. * malloc/malloc.h: Declare __malloc_initialize. * sysdeps/mach/hurd/ioctl.c: For IOC_VOID request, send ARG itself as integer_t arg in RPC.
This commit is contained in:
parent
ba848785bb
commit
b5a08c5aca
15
ChangeLog
15
ChangeLog
@ -1,3 +1,18 @@
|
||||
Mon Dec 4 12:10:28 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
||||
|
||||
* stdlib/gen-mpn-copy (translations): Updated for new layout in
|
||||
GMP 1.910.
|
||||
|
||||
* malloc/malloc.c (__malloc_initialize): Renamed from initialize;
|
||||
made global.
|
||||
(malloc): Caller changed.
|
||||
* malloc/realloc.c (realloc): Call __malloc_initialize if
|
||||
necessary, before checking hook.
|
||||
* malloc/malloc.h: Declare __malloc_initialize.
|
||||
|
||||
* sysdeps/mach/hurd/ioctl.c: For IOC_VOID request, send ARG itself
|
||||
as integer_t arg in RPC.
|
||||
|
||||
Sat Dec 2 03:47:27 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
||||
|
||||
* sysdeps/mach/hurd/brk.c (DATA_SIZE): Bump to 128MB.
|
||||
|
@ -49,13 +49,13 @@ tests := tst-strtol tst-strtod testmb testrand testsort testdiv
|
||||
|
||||
# Several mpn functions from GNU MP are used by the strtod function.
|
||||
mpn-routines := add_1 add_n addmul_1 cmp divmod divmod_1 udiv_qrnnd \
|
||||
lshift rshift mod_1 mul mul_1 mul_n sub_n submul_1
|
||||
lshift rshift mod_1 mul mul_1 mul_n sub_n submul_1
|
||||
mpn-headers = longlong.h gmp.h gmp-impl.h gmp-mparam.h asm-syntax.h
|
||||
|
||||
routines := $(strip $(routines) $(mpn-routines)) \
|
||||
dbl2mpn ldbl2mpn \
|
||||
mpn2flt mpn2dbl mpn2ldbl
|
||||
aux := mp_clz_tab fpioconst
|
||||
aux := mp_clz_tab fpioconst
|
||||
distribute := $(distribute) $(mpn-headers) gen-mpn-copy fpioconst.h
|
||||
|
||||
|
||||
@ -74,8 +74,9 @@ mpn-sysdep := $(addsuffix .c,$(mpn-routines)) \
|
||||
$(addsuffix .S,$(mpn-routines)) \
|
||||
$(addsuffix .s,$(mpn-routines)) gmp-mparam.h asm-syntax.h
|
||||
|
||||
mpn-try := $(addprefix $(gmp-srcdir)/mpn/*/,$(mpn-sysdep))
|
||||
mpn-found := $(wildcard $(mpn-try))
|
||||
mpn-try := $(addprefix $(gmp-srcdir)/mpn/*/,$(mpn-sysdep)) \
|
||||
$(addprefix $(gmp-srcdir)/mpn/*/*/,$(mpn-sysdep))
|
||||
mpn-found = $(wildcard $(mpn-try))
|
||||
|
||||
include mpn-copy.mk
|
||||
%.mk: gen-%; sh $< > $@
|
||||
|
@ -1,21 +1,21 @@
|
||||
#!/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
|
||||
sparc64 sparc/sparc64
|
||||
sparc32/v8 sparc/sparc8
|
||||
sparc32 sparc
|
||||
x86/pentium i386/i586
|
||||
x86 i386
|
||||
m68k/mc68000 m68k/m68000
|
||||
m68k/mc68020 m68k/m68020
|
||||
m88k/mc88100 m88k/m88100
|
||||
m88k/mc88110 m88k/m88110
|
||||
mips3 mips/mips3
|
||||
mips2 mips
|
||||
hppa/hppa1_1 hppa/hppa1.1
|
||||
alpha/ev5 alpha/alphaev5
|
||||
power rs6000
|
||||
am29000 a29k
|
||||
'
|
||||
|
||||
set $translations
|
||||
|
Loading…
Reference in New Issue
Block a user