diff options
author | Greg McGary <greg@mcgary.org> | 2000-08-17 07:38:02 +0000 |
---|---|---|
committer | Greg McGary <greg@mcgary.org> | 2000-08-17 07:38:02 +0000 |
commit | e64911d1d6b3539c69d9cfe4fdaa5841e4f28cc8 (patch) | |
tree | 29ef3bfb2c18e1605e78881b97e5e2fd5be896cf /math | |
parent | 9e25f6e29bd6728ad4012e3c4c9b11a96b7a4acf (diff) | |
download | glibc-e64911d1d6b3539c69d9cfe4fdaa5841e4f28cc8.zip glibc-e64911d1d6b3539c69d9cfe4fdaa5841e4f28cc8.tar.gz glibc-e64911d1d6b3539c69d9cfe4fdaa5841e4f28cc8.tar.bz2 |
Update.
2000-08-17 Greg McGary <greg@mcgary.org>
* Makeconfig (link-extra-libs-bounded): Strip `-bp' suffix
from test program name when constructing suffix for $(LDLIBS-*).
(bounded-thread-library): New variable.
* crypt/Makefile
[build-shared, build-static] (libcrypt-dep): Remove variable.
($(addprefix $(objpfx),$(tests))): Consolidate individual dependencies.
[build-bounded] ($(tests:%=$(objpfx)%-bp)): Add dependencies.
* linuxthreads/Makefile (libpthread, librt): Remove variables.
(librt-tests): Add variable. (tests): Use it.
[build-shared, build-static]
($(addprefix $(objpfx),$(tests)), $(addprefix $(objpfx),$(librt-tests))):
Consolidate individual dependencies.
[build-bounded]
($(tests:%=$(objpfx)%-bp), $(librt-tests:%=$(objpfx)%-bp)):
Add dependencies.
* math/Makefile (LDLIBS-*): Remove variables (they are redundant).
[build-bounded] ($(tests:%=$(objpfx)%-bp)): Add dependencies.
* misc/Makefile
[build-bounded] ($(objpfx)tst-tsearch-bp): Add dependencies.
* rt/Makefile
[build-shared, build-static]
($(addprefix $(objpfx),$(tests))): Consolidate individual dependencies.
[build-bounded] ($(tests:%=$(objpfx)%-bp)): Add dependencies.
2000-08-17 Greg McGary <greg@mcgary.org>
* sysdeps/generic/bp-checks.h: s/\(CHECK\w+\)opt/\1_NULL_OK/
* sysdeps/unix/make-syscalls.sh: Likewise.
* sysdeps/unix/sysv/linux/shmctl.c: Likewise.
* sysdeps/unix/sysv/linux/sigprocmask.c: Likewise.
* sysdeps/unix/sysv/linux/ia64/sigaction.c: Likewise.
* sysdeps/unix/sysv/linux/ia64/sigprocmask.c: Likewise.
* sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c: Likewise.
2000-08-17 Greg McGary <greg@mcgary.org>
* sysdeps/i386/fpu/s_frexp.S: Check bounds.
Wrap extern symbols in BP_SYM ().
* sysdeps/i386/fpu/s_frexpf.S: Likewise.
* sysdeps/i386/fpu/s_frexpl.S: Likewise.
* sysdeps/i386/fpu/s_remquo.S: Likewise.
* sysdeps/i386/fpu/s_remquof.S: Likewise.
* sysdeps/i386/fpu/s_remquol.S: Likewise.
* sysdeps/i386/fpu/s_sincos.S: Likewise.
* sysdeps/i386/fpu/s_sincosf.S: Likewise.
* sysdeps/i386/fpu/s_sincosl.S: Likewise.
* sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
* sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/math/Makefile b/math/Makefile index 2c868d0..86a99e1 100644 --- a/math/Makefile +++ b/math/Makefile @@ -119,17 +119,6 @@ CFLAGS-test-ldouble.c = -fno-inline -ffloat-store CFLAGS-test-ifloat.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ CFLAGS-test-idouble.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ CFLAGS-test-ildoubl.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ -LDLIBS-test-ifloat = math/libm -LDLIBS-test-idouble = math/libm -LDLIBS-test-ildoubl = math/libm -LDLIBS-test-float = math/libm -LDLIBS-test-double = math/libm -LDLIBS-test-ldouble = math/libm -LDLIBS-test-matherr = math/libm -LDLIBS-test-reduce = math/libm -LDLIBS-atest-exp = math/libm -LDLIBS-atest-sincos = math/libm -LDLIBS-atest-exp2 = math/libm distribute += libm-test.inc gen-libm-test.pl README.libm-test @@ -180,6 +169,9 @@ $(addprefix $(objpfx),$(tests)): $(objpfx)libm.so$(libm.so-version) else $(addprefix $(objpfx),$(tests)): $(objpfx)libm.a endif +ifeq ($(build-bounded),yes) +$(tests:%=$(objpfx)%-bp): $(objpfx)libm_b.a +endif ifeq ($(build-static),yes) o = .o |