Date: Sun, 10 Sep 2000 16:42:29 -0400 From: "Matthew Emmerton" <matt@gsicomp.on.ca> To: "Drew Sanford" <lauasanf@bellsouth.net>, <questions@FreeBSD.ORG> Subject: Re: 4.1 RELEASE compile SMP failure Message-ID: <001001c01b67$a3a058b0$1200a8c0@zircon> References: <39BBE330.2A624B5B@bellsouth.net>
next in thread | previous in thread | raw e-mail | index | archive | help
> I was compiling an SMP kernel for a new install of 4.1 RELEASE on a dual > P54C. I got an error code like this: > > cc -O -pipe -D_KERNEL -Wall -Wredundant-decls -Wnested-externs > -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline > -Wcast-qual -fformat-extensions -ansi -DKLD_MODULE -nostdinc -I- -I. -I@ > -I@/ ../include -mpreferred-stack-boundary=2 -c setdef1.c > ld -Bshareable -o if_wi.ko setdef0.o if_wi.kld setdef1.o > 1 error > root@devel(/usr/src/sys/compile/devel)# > > I did use a make -j6 on this, and I'm giving it another shot without the > -j6 as I type this. Does anyone know why this just broke off without a > *real* error being given? The real error *was* given. However, since you were building with -j, the other 5 (non-terminated) make processes continued on until they realized that an error had occurred. This caused the real error to scroll off the screen, and gives the impression that it stopped in the middle of nowhere. When I build wiht -j, I usually do something like 'make -j6 2>&1 | tee /tmp/build.output' so that I've got a text log of the build which I can refer to when pseudo-strange things like this happen. -- Matthew Emmerton GSI Computer Services +1 (800) 217-5409 (Canada) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?001001c01b67$a3a058b0$1200a8c0>