From owner-freebsd-current Tue Jan 6 19:24:09 1998 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA29610 for current-outgoing; Tue, 6 Jan 1998 19:24:09 -0800 (PST) (envelope-from owner-freebsd-current) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id TAA29321 for ; Tue, 6 Jan 1998 19:21:17 -0800 (PST) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id OAA21969; Wed, 7 Jan 1998 14:16:58 +1100 Date: Wed, 7 Jan 1998 14:16:58 +1100 From: Bruce Evans Message-Id: <199801070316.OAA21969@godzilla.zeta.org.au> To: freebsd-current@FreeBSD.ORG, jbryant@unix.tfs.net Subject: Re: pgcc compile of kernel Sender: owner-freebsd-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > 7:59:35pm argus(96): pgcc -c -O2 -m486 -fomit-frame-pointer -pipe -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wuninitialized -nostdinc -I- -I. -I../.. -I../../../include -DUPDATE_INTERVAL=30 -DFASTLINKS -DDEVFS -DNFS -DFFS -DNETATALK -DINET -DFIFO -DWANT_JOYSTICK_CONNECTED -DCOM_BIDIR -DSTAR_SAVER -DFDSEEKWAIT=16 -DDUMMY_NOPS -DPROBE_VERBOSE -DUSE_RTC_CENTURY -DMD5 -DFAILSAFE -DNSWAPDEV=1 -DDST=0 -DTIMEZONE=0 -DKERNEL -include opt_global.h ../../kern/kern_clock.c >machine/cpufunc.h: In function `hardclock': >machine/cpufunc.h:363: inconsistent operand constraints in an `asm' This is probably because pgcc is based on an ancient version of gcc (2.4?) that doesn't support the "A" constraint. Fix: rm -rf pgcc. Bruce