diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-22 15:35:45 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-22 15:35:45 +0000 |
commit | 91b9b81374b42bd127f3827b15772d1233f4e9db (patch) | |
tree | 125acd6bef81f5c1eb6c216e566ba4ddd6fe4d7a /libc/sysdeps/linux/arm/Makefile | |
parent | e696e9e900fb0dc3b3bd039729be84de4764fdab (diff) |
Add in arm specific sigaction implementation to fix sa_restorer
behavior so it works as expected
Diffstat (limited to 'libc/sysdeps/linux/arm/Makefile')
-rw-r--r-- | libc/sysdeps/linux/arm/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/arm/Makefile b/libc/sysdeps/linux/arm/Makefile index 8cd0efa47..540d2b30c 100644 --- a/libc/sysdeps/linux/arm/Makefile +++ b/libc/sysdeps/linux/arm/Makefile @@ -28,10 +28,11 @@ ASFLAGS=$(CFLAGS) CRT0_SRC = crt0.S CRT0_OBJ = crt0.o crt1.o -SSRC=__longjmp.S vfork.S clone.S setjmp.S bsd-setjmp.S bsd-_setjmp.S +SSRC=__longjmp.S vfork.S clone.S setjmp.S bsd-setjmp.S \ + bsd-_setjmp.S sigrestorer.S SOBJS=$(patsubst %.S,%.o, $(SSRC)) -CSRC=brk.c syscall.c ioperm.c +CSRC=brk.c syscall.c ioperm.c sigaction.c COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(SOBJS) $(MOBJ) $(COBJS) |