diff options
author | 2000-08-01 21:30:45 +0000 | |
---|---|---|
committer | 2000-08-01 21:30:45 +0000 | |
commit | 21cea68e865eb1b276fad12816028d58dc681ee4 (patch) | |
tree | 06dc642e221b1b621ec28de3f871878cd6be8abd | |
parent | * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start): Take into acount that elf/rtld's main program might remove some varibales from the environment if we're trying to be secure. Move the Hurd startup data if necessary, or, if we there is no startup data, make sure the magical convention that ARGV... (diff) | |
download | glibc-21cea68e865eb1b276fad12816028d58dc681ee4.tar.xz glibc-21cea68e865eb1b276fad12816028d58dc681ee4.zip |
Enable exception handling for genops, wgenops, fileops, and wfileops.
-rw-r--r-- | libio/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libio/Makefile b/libio/Makefile index 360a6a621b..e41e78e36b 100644 --- a/libio/Makefile +++ b/libio/Makefile @@ -64,6 +64,13 @@ routines += clearerr_u feof_u ferror_u fputc_u getc_u getchar_u \ CPPFLAGS += -D_IO_MTSAFE_IO endif +# Support for exception handling. +CFLAGS-genops.c = $(exceptions) +CFLAGS-wgenops.c = $(exceptions) +CFLAGS-fileops.c = $(exceptions) +CFLAGS-wfileops.c = $(exceptions) +# XXX Do we need filedoalloc and wfiledoalloc? Others? + CFLAGS-tst_putwc.c = -DOBJPFX=\"$(objpfx)\" tst_wprintf2-ARGS = "Some Text" |