On Wed, 8 Nov 2000, Eric Reischer wrote:
> When cross compiling a PowerPC kernel on an i386 machine, got the following
> error:
>
> binfmt_elf.c: In function 'create_elf_tables':
> binfmt_elf.c:166: 'CLOCKS_PER_SEC' undeclared (first use in this function)
> binfmt_elf.c:166: (Each undeclared identifier is reported only once
> binfmt_elf.c:166: for each function it appears in.)
> make[2]: *** [binfmt_elf.o] Error 1
This quick fix should help you:
--- linux-240t10/include/asm-ppc/param.h Sat Nov 25 18:49:06 1995
+++ linux/include/asm-ppc/param.h Sat Nov 11 17:18:50 2000
@@ -17,4 +17,8 @@
#define MAXHOSTNAMELEN 64 /* max length of hostname */
+#ifdef __KERNEL__
+# define CLOCKS_PER_SEC HZ /* frequency at which times() counts */
+#endif
+
#endif
--
Bartlomiej Zolnierkiewicz
<[EMAIL PROTECTED]>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/