From owner-freebsd-stable@FreeBSD.ORG Thu Oct 3 07:44:33 2013 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1BABFC81 for ; Thu, 3 Oct 2013 07:44:33 +0000 (UTC) (envelope-from mueller6721@twc.com) Received: from cdptpa-oedge-vip.email.rr.com (cdptpa-outbound-snat.email.rr.com [107.14.166.225]) by mx1.freebsd.org (Postfix) with ESMTP id DD7362A43 for ; Thu, 3 Oct 2013 07:44:32 +0000 (UTC) Received: from [74.130.200.176] ([74.130.200.176:40127] helo=localhost) by cdptpa-oedge02 (envelope-from ) (ecelerity 3.5.0.35861 r(Momo-dev:tip)) with ESMTP id 34/60-16944-9502D425; Thu, 03 Oct 2013 07:44:26 +0000 Date: Thu, 03 Oct 2013 07:44:25 +0000 Message-ID: <34.60.16944.9502D425@cdptpa-oedge02> From: "Thomas Mueller" To: freebsd-stable@freebsd.org Subject: Build failure for 9.2-RELEASE X-RR-Connecting-IP: 107.14.168.130:25 X-Cloudmark-Score: 0 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Oct 2013 07:44:33 -0000 I failed with "make buildworld" on 9.2, building from a 9.2 prerelease. svn revision on system to be built was 255986. uname -a shows FreeBSD amelia2 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #17 r254196: Sun Aug 11 00:36:49 UTC 2013 root@amelia2:/usr/obj/usr/src/sys/SANDY amd64 I had MODULES_WITH_WORLD=yes in /etc/make.conf to avoid the redundancy and annoyance of rebuilding modules every time I build a new kernel, like if I want a more portable kernel (for a USB-stick install) as well as my custom kernel. Point of failure seemed to be in module dtrace. I have in kernel config #options KDTRACE_FRAME # Ensure frames are compiled in #options KDTRACE_HOOKS # Kernel DTrace hooks Maybe I need to reenable these? Or is there a great hazard in building modules with world, which seems so logical? Last 32 lines of buildworld.log are ===> sys/modules/dtrace/sdt (depend) @ -> /usr/src/sys machine -> /usr/src/sys/amd64/include x86 -> /usr/src/sys/x86/include awk -f @/tools/vnode_if.awk @/kern/vnode_if.src -p awk -f @/tools/vnode_if.awk @/kern/vnode_if.src -q awk -f @/tools/vnode_if.awk @/kern/vnode_if.src -h rm -f .depend mkdep -f .depend -a -nostdinc -D_KERNEL -DKLD_MODULE -I/usr/src/sys/modules/dtrace/sdt/../../../cddl/compat/opensolaris -I/usr/src/sys/modules/dtrace/sdt/../../../cddl/contrib/opensolaris/uts/common -I/usr/src/sys/modules/dtrace/sdt/../../.. -I. -I@ -I@/contrib/altq -std=iso9899:1999 /usr/src/sys/modules/dtrace/sdt/../../../cddl/dev/sdt/sdt.c /usr/src/sys/modules/dtrace/sdt/../../../cddl/dev/sdt/sdt.c:27:25: error: opt_kdtrace.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /usr/src/sys/modules/dtrace/sdt. *** [depend] Error code 1 Stop in /usr/src/sys/modules/dtrace. *** [depend] Error code 1 Stop in /usr/src/sys/modules. *** [depend] Error code 1 Stop in /usr/src/sys. *** [sys.depend__D] Error code 1 Stop in /usr/src. *** [_depend] Error code 1 Stop in /usr/src. *** [buildworld] Error code 1 Stop in /usr/src. Tom