* 2.6.8.1-mm1: parallel make doesn't.
@ 2004-08-18 0:01 Rusty Russell
2004-08-18 0:08 ` William Lee Irwin III
0 siblings, 1 reply; 2+ messages in thread
From: Rusty Russell @ 2004-08-18 0:01 UTC (permalink / raw)
To: Andrew Morton; +Cc: lkml - Kernel Mailing List
[-- Attachment #1: Type: text/plain, Size: 773 bytes --]
Need to make the first few files without -j, othewise it barfs. This is
a regression over 2.6.8.1 (sorry, don't know when it crept into the -mm
tree). .config attached in case it matters.
cd ~/devel/kernel/.28758-linux-2.6.8.1-mm1.updated/
make -j5
CHK include/linux/version.h
SYMLINK include/asm -> include/asm-i386
UPD include/linux/version.h
SPLIT include/linux/autoconf.h -> include/config/*
make: *** No rule to make target `.tmp_kallsyms2.S', needed by
`.tmp_kallsyms2.o'. Stop.
make: *** Waiting for unfinished jobs....
make: *** Waiting for unfinished jobs....
make: *** Waiting for unfinished jobs....
Compilation exited abnormally with code 2 at Wed Aug 18 09:54:47
--
Anyone who quotes me in their signature is an idiot -- Rusty Russell
[-- Attachment #2: config-mingo.bz2 --]
[-- Type: application/x-bzip, Size: 6288 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: 2.6.8.1-mm1: parallel make doesn't.
2004-08-18 0:01 2.6.8.1-mm1: parallel make doesn't Rusty Russell
@ 2004-08-18 0:08 ` William Lee Irwin III
0 siblings, 0 replies; 2+ messages in thread
From: William Lee Irwin III @ 2004-08-18 0:08 UTC (permalink / raw)
To: Rusty Russell; +Cc: Andrew Morton, lkml - Kernel Mailing List
On Wed, Aug 18, 2004 at 10:01:11AM +1000, Rusty Russell wrote:
> Need to make the first few files without -j, othewise it barfs. This is
> a regression over 2.6.8.1 (sorry, don't know when it crept into the -mm
> tree). .config attached in case it matters.
> cd ~/devel/kernel/.28758-linux-2.6.8.1-mm1.updated/
> make -j5
> CHK include/linux/version.h
> SYMLINK include/asm -> include/asm-i386
> UPD include/linux/version.h
> SPLIT include/linux/autoconf.h -> include/config/*
> make: *** No rule to make target `.tmp_kallsyms2.S', needed by
> `.tmp_kallsyms2.o'. Stop.
> make: *** Waiting for unfinished jobs....
> make: *** Waiting for unfinished jobs....
> make: *** Waiting for unfinished jobs....
> Compilation exited abnormally with code 2 at Wed Aug 18 09:54:47
Sam Ravnborg already posted a fix. Yes, the semicolon is necessary.
Index: mm1-2.6.8.1/Makefile
===================================================================
--- mm1-2.6.8.1.orig/Makefile 2004-08-16 23:47:11.979962024 -0700
+++ mm1-2.6.8.1/Makefile 2004-08-17 00:03:56.918188192 -0700
@@ -610,6 +610,8 @@
.tmp_vmlinux3: $(vmlinux-objs) .tmp_kallsyms2.o arch/$(ARCH)/kernel/vmlinux.lds FORCE
$(call if_changed_rule,vmlinux__)
+$(KALLSYMS): scripts;
+
endif
# Finally the vmlinux rule
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2004-08-18 0:08 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-08-18 0:01 2.6.8.1-mm1: parallel make doesn't Rusty Russell
2004-08-18 0:08 ` William Lee Irwin III
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox