From owner-freebsd-alpha Mon Dec 17 8:59:58 2001 Delivered-To: freebsd-alpha@freebsd.org Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by hub.freebsd.org (Postfix) with ESMTP id 34A9237B417 for ; Mon, 17 Dec 2001 08:59:55 -0800 (PST) Received: (from jake@localhost) by k6.locore.ca (8.11.6/8.11.6) id fBHH2WQ44077; Mon, 17 Dec 2001 12:02:32 -0500 (EST) (envelope-from jake) Date: Mon, 17 Dec 2001 12:02:32 -0500 From: Jake Burkholder To: Adam Kranzel Cc: alpha@FreeBSD.ORG, Joerg Wunsch Subject: Re: Kernel builds broken? Message-ID: <20011217120232.E39205@locore.ca> References: <20011217083319.25adda22.adam@blacktabby.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011217083319.25adda22.adam@blacktabby.org>; from adam@blacktabby.org on Mon, Dec 17, 2001 at 08:33:19AM -0800 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Apparently, On Mon, Dec 17, 2001 at 08:33:19AM -0800, Adam Kranzel said words to the effect of; > Hi... > > Kernel builds on my alpha are dying with the following: > > > nsions -ansi -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/dev -I/usr/src/sy > s/contrib/dev/acpica -I/usr/src/sys/contrib/ipfilter -I/usr/src/sys/../include > -D_KERNEL -ffreestanding -include opt_global.h -elf -mno-fp-regs -ffixed-8 -Wa, > -mev56 vers.c > linking kernel > fd.o: In function `fd_probe': > fd.o(.text+0x18a4): undefined reference to `rtcin' > fd.o(.text+0x18a8): undefined reference to `rtcin' > fd.o(.text+0x18c4): undefined reference to `rtcin' > fd.o(.text+0x18c8): undefined reference to `rtcin' > *** Error code 1 > > Stop in /usr/obj/usr/src/sys/MOLLY_NODEBUG. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > It looks like the ifdefs to skip some of the code for non-i386 are broken. #if _MACHINE_ARCH == i386 in fd_probe() should be #ifdef __i386__. Jake To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message