diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-30 23:07:52 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:34 +0200 |
commit | d73b0302f368c0a84b9a99cbbe4c2a777a18be12 (patch) | |
tree | bb48d457797729933b9b299991c00d41f305950d /libc/sysdeps/linux | |
parent | 0bbae4cb667f34863b742e9c62ed38f8dcb08470 (diff) |
sh: add back clone and vfork for non-NPTL
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/sh/Makefile.arch | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/sh/Makefile.arch b/libc/sysdeps/linux/sh/Makefile.arch index 0c7287840..5ebf42bf1 100644 --- a/libc/sysdeps/linux/sh/Makefile.arch +++ b/libc/sysdeps/linux/sh/Makefile.arch @@ -9,4 +9,8 @@ CSRC := \ pipe.c __init_brk.c brk.c sbrk.c pread_write.c cacheflush.c -SSRC := setjmp.S __longjmp.S ___fpscr_values.S vfork.S clone.S +SSRC := setjmp.S __longjmp.S ___fpscr_values.S + +ifneq ($(UCLIBC_HAS_THREADS_NATIVE),y) +SSRC += clone.S vfork.S +endif |