search for: 2854f69

Displaying 2 results from an estimated 2 matches for "2854f69".

2007 Nov 05
1
klibc sparc trouble with gcc > 4.0
...fault) @ 0 (0) --- +++ killed by SIGSEGV +++ Process 3636 detached thanks for looking at it. -- maks use our own clzdi on sparc instead the one of libgcc Signed-off-by: maximilian attems <max at stro.at> diff --git a/usr/klibc/arch/sparc64/Kbuild b/usr/klibc/arch/sparc64/Kbuild index 2854f69..f2450a2 100644 --- a/usr/klibc/arch/sparc64/Kbuild +++ b/usr/klibc/arch/sparc64/Kbuild @@ -2,7 +2,7 @@ # klibc files for sparc64 # -klib-y := pipe.o setjmp.o syscall.o sysfork.o +klib-y := pipe.o setjmp.o syscall.o sysfork.o ../../libgcc/__clzdi2.o always := crt0.o targets := crt0.o diff...
2006 Jul 09
6
[PATCH/RFC] klibc/kbuild: use separate kbuild files for each klibc subdirectory
This fixes a long standing issue where it was not possible to do "make usr/klibc/arch/x86_64/longjmp.o" in the kernel. The principle is that all .o files to be part of klibc are listed with klib-y. For each directory a klib.list file is made that specify all .o file and the final AR then adds all .o files to create libc.a. This patch introduce the infrastructure and converts x86_64 to