diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-08-19 16:47:42 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-08-19 16:47:42 +0000 |
commit | e1b13a63d06d2ec8b122db5c76b920544b32314a (patch) | |
tree | 39d0d0daba4d1fe2654b8295537ecf62fb527e82 /csu | |
parent | 96ff49374e18f70784697f776160088474780c61 (diff) | |
download | glibc-e1b13a63d06d2ec8b122db5c76b920544b32314a.tar.gz glibc-e1b13a63d06d2ec8b122db5c76b920544b32314a.tar.xz glibc-e1b13a63d06d2ec8b122db5c76b920544b32314a.zip |
Update.
1999-08-19 Andreas Schwab <schwab@suse.de> * libio/iovswscanf.c (vswscanf): Make stream unoriented initially and call _IO_fwide, to get the wide stream state initialized correctly. Don't set _IO_JUMPS. * libio/vsnprintf.c (_IO_vsnprintf): Avoid casts to _IO_FILE *. * libio/vswprintf.c (_IO_vswprintf): Likewise. Pass _IO_wstrn_jumps to _IO_no_init instead of setting _IO_WIDE_JUMPS directly. 1999-08-19 Andreas Jaeger <aj@arthur.rhein-neckar.de> * math/libm-test.c (jn_test): Fix typo in description. (erfc_test): Add some more tests. (erf_test): Add some more tests. 1999-08-19 Andreas Schwab <schwab@suse.de> * csu/Makefile ($(objpfx)initfini.s): Replace $(no-exceptions) by expression using $(exceptions).
Diffstat (limited to 'csu')
-rw-r--r-- | csu/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csu/Makefile b/csu/Makefile index 0c782c9ea2..b2e806df58 100644 --- a/csu/Makefile +++ b/csu/Makefile @@ -87,7 +87,7 @@ CFLAGS-initfini.s = -g0 -fPIC -fno-inline-functions $(objpfx)initfini.s: initfini.c $(compile.c) -S $(CFLAGS-initfini.s) -finhibit-size-directive \ - $(no-exceptions) -o $@ + $(patsubst -f%,-fno-%,$(exceptions)) -o $@ # We only have one kind of startup code files. Static binaries and # shared libraries are build using the PIC version. |