On Tuesday 10 March 2009 07:44:32 Michael Unterkalmsteiner wrote: > 2. The kernel headers (2.8.28.4) do NOT define __NR_vfork > linux-2.6.28.4/arch/mips/include/asm/unistd.h: > [...] > /* whitelists for checksyscalls */ > #define __IGNORE_select > #define __IGNORE_vfork > [...] > > 3. Ergo the compilation fails since __NR_vfork is indeed not defined and > fork() is neither. > How to solve that?
you'll have to figure out how to fake vfork() on your system (probably via clone()). nommu absolutely requires vfork() in the C library, and every no- mmu port of uClibc has vfork() in the kernel. -mike
signature.asc
Description: This is a digitally signed message part.
_______________________________________________ uClibc mailing list [email protected] http://lists.busybox.net/mailman/listinfo/uclibc
