diff options
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/arm/Makefile.arch | 6 | ||||
-rw-r--r-- | libc/sysdeps/linux/i386/Makefile.arch | 6 | ||||
-rw-r--r-- | libc/sysdeps/linux/mips/Makefile.arch | 3 | ||||
-rw-r--r-- | libc/sysdeps/linux/sparc/Makefile.arch | 3 | ||||
-rw-r--r-- | libc/sysdeps/linux/x86_64/Makefile.arch | 6 |
5 files changed, 5 insertions, 19 deletions
diff --git a/libc/sysdeps/linux/arm/Makefile.arch b/libc/sysdeps/linux/arm/Makefile.arch index ddd104dd1..cd1710a55 100644 --- a/libc/sysdeps/linux/arm/Makefile.arch +++ b/libc/sysdeps/linux/arm/Makefile.arch @@ -5,11 +5,7 @@ # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. # -CSRC := brk.c ioperm.c iopl.c mmap.c __syscall_error.c - -ifneq ($(UCLIBC_HAS_THREADS_NATIVE),y) -CSRC += sigaction.c -endif +CSRC := brk.c ioperm.c iopl.c mmap.c __syscall_error.c sigaction.c SSRC := \ __longjmp.S setjmp.S bsd-setjmp.S \ diff --git a/libc/sysdeps/linux/i386/Makefile.arch b/libc/sysdeps/linux/i386/Makefile.arch index 668cca742..966f8b593 100644 --- a/libc/sysdeps/linux/i386/Makefile.arch +++ b/libc/sysdeps/linux/i386/Makefile.arch @@ -5,11 +5,7 @@ # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. # -CSRC := brk.c __syscall_error.c - -ifneq ($(UCLIBC_HAS_THREADS_NATIVE),y) -CSRC += sigaction.c -endif +CSRC := brk.c __syscall_error.c sigaction.c SSRC := \ __longjmp.S setjmp.S bsd-setjmp.S bsd-_setjmp.S \ diff --git a/libc/sysdeps/linux/mips/Makefile.arch b/libc/sysdeps/linux/mips/Makefile.arch index 8bbc0bc19..738cdd0f5 100644 --- a/libc/sysdeps/linux/mips/Makefile.arch +++ b/libc/sysdeps/linux/mips/Makefile.arch @@ -7,7 +7,7 @@ CSRC := \ __longjmp.c brk.c setjmp_aux.c mmap.c \ - cacheflush.c pread_write.c sysmips.c _test_and_set.c \ + cacheflush.c pread_write.c sigaction.c sysmips.c _test_and_set.c \ readahead.c SSRC := bsd-_setjmp.S bsd-setjmp.S setjmp.S syscall.S pipe.S syscall_error.S @@ -17,7 +17,6 @@ CSRC += posix_fadvise.c posix_fadvise64.c endif ifneq ($(UCLIBC_HAS_THREADS_NATIVE),y) -CSRC += sigaction.c SSRC += vfork.S clone.S endif diff --git a/libc/sysdeps/linux/sparc/Makefile.arch b/libc/sysdeps/linux/sparc/Makefile.arch index 820b2facf..aa587563e 100644 --- a/libc/sysdeps/linux/sparc/Makefile.arch +++ b/libc/sysdeps/linux/sparc/Makefile.arch @@ -5,14 +5,13 @@ # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. # -CSRC := brk.c __syscall_error.c +CSRC := brk.c __syscall_error.c sigaction.c SSRC := \ __longjmp.S setjmp.S bsd-setjmp.S bsd-_setjmp.S \ syscall.S urem.S udiv.S umul.S sdiv.S rem.S pipe.S ifneq ($(UCLIBC_HAS_THREADS_NATIVE),y) -CSRC += sigaction.c SSRC += fork.S vfork.S clone.S endif diff --git a/libc/sysdeps/linux/x86_64/Makefile.arch b/libc/sysdeps/linux/x86_64/Makefile.arch index 0d14650ff..3243d8676 100644 --- a/libc/sysdeps/linux/x86_64/Makefile.arch +++ b/libc/sysdeps/linux/x86_64/Makefile.arch @@ -5,11 +5,7 @@ # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. # -CSRC := brk.c __syscall_error.c mmap.c - -ifneq ($(UCLIBC_HAS_THREADS_NATIVE),y) -CSRC += sigaction.c -endif +CSRC := brk.c __syscall_error.c sigaction.c mmap.c SSRC := \ __longjmp.S setjmp.S syscall.S bsd-setjmp.S bsd-_setjmp.S |