diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-02-22 05:29:50 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-02-22 05:29:50 +0000 |
commit | 5b6e897d01a07f8391351a07321f2bcb7c025a7e (patch) | |
tree | ed3dfba88ea6c62e0cb584bec74901292510dab3 /libc/sysdeps/linux/sh/Makefile | |
parent | 2109636071eb7b3c085b6fcefcbed272a61e6713 (diff) |
Patch from Jean-Yves Avenard to add missing siglongjmp entry and
fix a bug in setjmp for SH
Diffstat (limited to 'libc/sysdeps/linux/sh/Makefile')
-rw-r--r-- | libc/sysdeps/linux/sh/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/sh/Makefile b/libc/sysdeps/linux/sh/Makefile index 684983998..a8a0cbb16 100644 --- a/libc/sysdeps/linux/sh/Makefile +++ b/libc/sysdeps/linux/sh/Makefile @@ -34,10 +34,10 @@ CRT0=crt0.S CRT0_OBJ=$(patsubst %.S,%.o, $(CRT0)) -SSRC=setjmp.S bsd-setjmp.S bsd-_setjmp.S longjmp.S +SSRC=setjmp.S bsd-setjmp.S bsd-_setjmp.S __longjmp.S SOBJS=$(patsubst %.S,%.o, $(SSRC)) -CSRC=fork.c vfork.c _mmap.c +CSRC=fork.c vfork.c _mmap.c longjmp.c jmp-unwind.c COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(SOBJS) $(MOBJ) $(COBJS) |