summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/arm/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-02-09 04:51:35 +0000
committerEric Andersen <andersen@codepoet.org>2001-02-09 04:51:35 +0000
commiteb5667f0ce82995eacb0c6a86d76d83c8f881619 (patch)
treeb12b95cfe19d686762e1219b5cafa818165c6597 /libc/sysdeps/linux/arm/Makefile
parent6340fb74f3cead5fc6f32be968d41d5931bcc863 (diff)
It turns out that vfork was completely broken. That was why it
wouldn't run on my little arm7tdmi/uClinux boards, since without vfork working, nothing works on uClinux. It took me forever to find this, since other problems were hiding this one. Big, huge, sigh of relief. -Erik
Diffstat (limited to 'libc/sysdeps/linux/arm/Makefile')
-rw-r--r--libc/sysdeps/linux/arm/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/arm/Makefile b/libc/sysdeps/linux/arm/Makefile
index 4b23adae7..c3a57ccd3 100644
--- a/libc/sysdeps/linux/arm/Makefile
+++ b/libc/sysdeps/linux/arm/Makefile
@@ -35,10 +35,10 @@ endif
CRT0_OBJ=$(patsubst %.S,%.o, $(CRT0))
-SSRC=longjmp.S setjmp.S
+SSRC=longjmp.S setjmp.S vfork.S
SOBJS=$(patsubst %.S,%.o, $(SSRC))
-CSRC=fork.c vfork.c
+CSRC=fork.c ptrace.c
COBJS=$(patsubst %.c,%.o, $(CSRC))
OBJS=$(SOBJS) $(MOBJ) $(COBJS)