From b22fc5f5651706304ac09305ac3ee5bf84516378 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 6 May 1998 12:54:05 +0000 Subject: Update. 1998-05-06 12:51 Ulrich Drepper * sysdeps/i386/fpu/bits/mathinline.h (pow): Use long long int for test for integer. * sysdeps/libm-i387/e_pow.S: Correctly shift double word. * sysdeps/libm-i387/e_powl.S: Likewise. 1998-03-31 Wolfram Gloger * malloc/malloc.c (chunk2mem_check, top_check): New functions. (malloc_check, free_check, realloc_check, memalign_check): Use them to improve overrun checking. Overruns of a single byte and corruption of the top chunk are now detected much more reliably. 1998-05-06 Andreas Jaeger * math/libm-test.c (pow_test): Add test for special value from PR libc/590. --- Makeconfig | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'Makeconfig') diff --git a/Makeconfig b/Makeconfig index 39cb3cd..1a93b0a 100644 --- a/Makeconfig +++ b/Makeconfig @@ -754,4 +754,36 @@ have-thread-library = yes rpath-link := $(rpath-link):$(common-objpfx)linuxthreads endif +ifndef avoid-generated +-include $(common-objpfx)sysd-dirs +define \n + + +endef +sysdep-subdirs := $(subst $(\n), ,$(sysdep-subdirs)) +endif + +# These are the subdirectories containing the library source. +subdirs = csu assert ctype db2 locale intl catgets math setjmp signal stdlib \ + stdio-common $(stdio) malloc string wcsmbs time dirent grp pwd \ + posix io termios resource misc socket sysvipc gmon gnulib iconv \ + iconvdata wctype manual shadow md5-crypt po argp $(add-ons) nss \ + localedata timezone rt $(sysdep-subdirs) $(binfmt-subdir) + +# The mach and hurd subdirectories have many generated header files which +# much of the rest of the library depends on, so it is best to build them +# first (and mach before hurd, at that). The before-compile additions in +# sysdeps/{mach,hurd}/Makefile should make it reliably work for these files +# not to exist when making in other directories, but it will be slower that +# way with more somewhat expensive `make' invocations. +subdirs := $(filter mach,$(subdirs)) $(filter hurd,$(subdirs)) \ + $(filter-out mach hurd,$(subdirs)) + +all-Subdirs-files = $(wildcard $(addsuffix /Subdirs, $(config-sysdirs))) +$(common-objpfx)sysd-dirs: $(common-objpfx)config.make $(all-Subdirs-files) + (echo define sysdep-subdirs; \ + sed 's/#.*$$//' $(all-Subdirs-files) /dev/null; \ + echo endef) > $@-tmp + mv -f $@-tmp $@ + endif # Makeconfig not yet included -- cgit v1.1