diff options
author | David Schleef <ds@schleef.org> | 2001-11-26 09:19:30 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2001-11-26 09:19:30 +0000 |
commit | e4cfe3fb823dc44c0e3e884e53d1ae7c05ae7416 (patch) | |
tree | 7ce9d1c188f48f13d57df2be1a681ce1b4e08204 /libc/sysdeps/linux/powerpc/Makefile | |
parent | b76b3fcd18d8c7e0ed25cccc355f6f0192c1e83b (diff) |
Rewrite vfork() as C, should now work. Changed longjmp.S and setjmp.S
to use GCC's internal ppc-asm.h, and added macro to disable FP save/
restore in longjmp and setjmp. Fixed name of _setjmp() (was __setjmp).
Fixed _setjmp to be PIC.
Diffstat (limited to 'libc/sysdeps/linux/powerpc/Makefile')
-rw-r--r-- | libc/sysdeps/linux/powerpc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/powerpc/Makefile b/libc/sysdeps/linux/powerpc/Makefile index 0d52510e6..cf9783dbd 100644 --- a/libc/sysdeps/linux/powerpc/Makefile +++ b/libc/sysdeps/linux/powerpc/Makefile @@ -36,10 +36,10 @@ CRT0=crt0.S CRT0_OBJ=$(patsubst %.S,%.o, $(CRT0)) endif -SSRC=longjmp.S setjmp.S vfork.S +SSRC=longjmp.S setjmp.S SOBJS=$(patsubst %.S,%.o, $(SSRC)) -CSRC=_mmap.c +CSRC=_mmap.c vfork.c COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(SOBJS) $(MOBJ) $(COBJS) |