[kbuild-devel] Performance tweak against core-11

2002-05-05 Thread Keith Owens
On a 4 x Pentium III 700MHz with 1GiB ram, building the pp_ programs with -O2 -NDEBUG=1, using core-10 on a full 2.5.13 .config gives these times. This is after building the kernel so the databases are full. The output is from \time make -f $KBUILD_SRCTREE_000/Makefile-2.5 -j8 phase4 SMP is

[kbuild-devel] Kbuild 2.5-2.3 for SuperH

2002-05-05 Thread Greg Banks
G'day, Here's the SuperH patches for kbuild-2.5 upgraded to 2.3 (kernel 2.5.12). There's no functional change except that 2.5.12 is even less broken so the hacks patch is gone. I'll update to 2.4 (2.5.13) sometime after 2.5.13 is merged into LinuxSH. Greg. -- the price of civilisation today

[kbuild-devel] installing header files

2002-05-05 Thread Brendan J Simon
Is there a way to install header files with kbuild ? (eg. make headers_install). I'm using a Configuration Management System that is pointing to kernel 2.4.18 source header files but an application can not find autoconf.h which is included by config.h. It seems autoconf.h is not in the

Re: [kbuild-devel] Re: installing header files

2002-05-05 Thread Brendan J Simon
Keith Owens wrote: On Mon, 06 May 2002 12:10:09 +1000, Brendan J Simon [EMAIL PROTECTED] wrote: I'm using a Configuration Management System that is pointing to kernel 2.4.18 source header files but an application can not find autoconf.h which is included by config.h. That violates

Re: [kbuild-devel] Re: installing header files

2002-05-05 Thread Brendan J Simon
Keith Owens wrote: On Mon, 06 May 2002 13:28:59 +1000, Brendan J Simon [EMAIL PROTECTED] wrote: Is there a way to do this with kbuild ? make ... $KBUILD_OBJTREE/.tmp_src builds $KBUILD_OBJTREE/.tmp_src as a forest of 10,000+ symlinks pointing to the latest version of every source file,

Re: [kbuild-devel] Re: installing header files

2002-05-05 Thread Brendan J Simon
Keith Owens wrote: Is there a way to do this with kbuild ? make ... $KBUILD_OBJTREE/.tmp_src builds $KBUILD_OBJTREE/.tmp_src as a forest of 10,000+ symlinks pointing to the latest version of every source file, taking into account any shadow trees. cp -aL on that tree or a subset will get the

Re: [kbuild-devel] Re: installing header files

2002-05-05 Thread Keith Owens
On Mon, 06 May 2002 15:29:24 +1000, Brendan J Simon [EMAIL PROTECTED] wrote: Rereading your message above, are you saying that I have to _manually_ execute make $KBUILD_SRCTREE_000/Makefile-2.5 $KBUILD_OBJTREE/.tmp_src to get this directory or should this just exist after a normal make