From owner-freebsd-current@FreeBSD.ORG Fri Jul 11 11:32:46 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E66337B401 for ; Fri, 11 Jul 2003 11:32:46 -0700 (PDT) Received: from h132-197-179-27.gte.com (h132-197-179-27.gte.com [132.197.179.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67B0F43F3F for ; Fri, 11 Jul 2003 11:32:45 -0700 (PDT) (envelope-from ak03@gte.com) Received: from kanpc.gte.com (ak03@localhost [127.0.0.1]) h6BIWixN000896; Fri, 11 Jul 2003 14:32:44 -0400 (EDT) (envelope-from ak03@kanpc.gte.com) Received: (from ak03@localhost) by kanpc.gte.com (8.12.9/8.12.9/Submit) id h6BIWiv1000895; Fri, 11 Jul 2003 14:32:44 -0400 (EDT) Date: Fri, 11 Jul 2003 14:32:44 -0400 From: Alexander Kabaev To: Shizuka Kudo Message-Id: <20030711143244.2427e51c.ak03@gte.com> In-Reply-To: <20030711181348.3345.qmail@web11403.mail.yahoo.com> References: <20030711133532.Y592@korben.in.tern> <20030711181348.3345.qmail@web11403.mail.yahoo.com> Organization: Verizon Data Services X-Mailer: Sylpheed version 0.9.0claws25 (GTK+ 1.2.10; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: current@freebsd.org cc: Lukas Ertl Subject: Re: Kernel built with new GCC panics immediately X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Jul 2003 18:32:46 -0000 May be I am paranoid, but could you people please make sure you have removed /usr/src/sys/i386/compile/ before rebuilding a new kernel with GCC 3.3? Also, if simply removing stale file is not a culpit, I will appreciate if you can test the patch below: Index: kern.pre.mk =================================================================== RCS file: /home/ncvs/src/sys/conf/kern.pre.mk,v retrieving revision 1.27 diff -u -r1.27 kern.pre.mk --- kern.pre.mk 11 Jul 2003 07:13:42 -0000 1.27 +++ kern.pre.mk 11 Jul 2003 17:48:34 -0000 @@ -54,6 +54,7 @@ DEFINED_PROF= ${PROF} # WERROR?= -Werror +CFLAGS+= --param max-inline-insns-single=2400 # Put configuration-specific C flags last (except for ${PROF}) so that they # can override the others. CFLAGS+= ${CONF_CFLAGS} Index: kmod.mk =================================================================== RCS file: /home/ncvs/src/sys/conf/kmod.mk,v retrieving revision 1.137 diff -u -r1.137 kmod.mk --- kmod.mk 3 Mar 2003 22:51:22 -0000 1.137 +++ kmod.mk 11 Jul 2003 17:48:45 -0000 @@ -104,6 +104,8 @@ CFLAGS+= -fno-common LDFLAGS+= -d -warn-common +CFLAGS+= --param max-inline-insns-single=2400 + CFLAGS+= ${DEBUG_FLAGS} OBJS+= ${SRCS:N*.h:R:S/$/.o/g} -- Alexander Kabaev