From owner-freebsd-current@FreeBSD.ORG Sun Jan 18 00:22:47 2015 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A930E7EC; Sun, 18 Jan 2015 00:22:47 +0000 (UTC) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.95.76.21]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "troutmask", Issuer "troutmask" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 8772CE3A; Sun, 18 Jan 2015 00:22:47 +0000 (UTC) Received: from troutmask.apl.washington.edu (localhost [127.0.0.1]) by troutmask.apl.washington.edu (8.14.9/8.14.9) with ESMTP id t0I0MkwS013629 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sat, 17 Jan 2015 16:22:46 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.14.9/8.14.9/Submit) id t0I0MkSN013628; Sat, 17 Jan 2015 16:22:46 -0800 (PST) (envelope-from sgk) Date: Sat, 17 Jan 2015 16:22:46 -0800 From: Steve Kargl To: freebsd-current@freebsd.org Subject: Re: who broke dtrace and buildworld? Message-ID: <20150118002246.GA13599@troutmask.apl.washington.edu> References: <20150117235447.GA13490@troutmask.apl.washington.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable In-Reply-To: <20150117235447.GA13490@troutmask.apl.washington.edu> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: smh@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.18-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: Sun, 18 Jan 2015 00:22:47 -0000 On Sat, Jan 17, 2015 at 03:54:47PM -0800, Steve Kargl wrote: > % cd /usr/src > % svn update > Updating '.': > At revision 277307. > % make buildworld > .... >=20 > =3D=3D=3D> cddl/usr.sbin/dtrace (all) > cc -O2 -pipe -march=3Dcore2 -I/usr/src/cddl/usr.sbin/dtrace/../../../sy= s/cddl/compat/opensolaris -I/usr/src/cddl/usr.sbin/dtrace/../../../cddl/co= mpat/opensolaris/include -I/usr/src/cddl/usr.sbin/dtrace/../../../cddl/con= trib/opensolaris/head -I/usr/src/cddl/usr.sbin/dtrace/../../../cddl/contri= b/opensolaris/lib/libdtrace/common -I/usr/src/cddl/usr.sbin/dtrace/../../.= =2E/cddl/contrib/opensolaris/lib/libproc/common -I/usr/src/cddl/usr.sbin/d= trace/../../../sys/cddl/contrib/opensolaris/uts/common -I/usr/src/cddl/usr= =2Esbin/dtrace/../../../sys/cddl/contrib/opensolaris/compat -DNEED_SOLARIS_= BOOLEAN -std=3Dgnu99 -fstack-protector -Wsystem-headers -Werror -Wno-pointe= r-sign -Wno-unknown-pragmas -Wno-empty-body -Wno-string-plus-int -Wno-unuse= d-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parenthes= es-equality -Wno-unused-function -Wno-enum-conversion -Wno-switch -Wno-swit= ch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -o= dtrace dtrace.o -ldtrace -ly -ll > -lproc -lctf -lelf -lz -lutil -lrtld_db -lpthread > /usr/obj/usr/src/tmp/usr/lib/libdtrace.so: undefined reference to `dt_ids= tack_lookup' > /usr/obj/usr/src/tmp/usr/lib/libdtrace.so: undefined reference to `dt_ido= ps_probe' > /usr/obj/usr/src/tmp/usr/lib/libdtrace.so: undefined reference to `dt_idh= ash_nextid' > /usr/obj/usr/src/tmp/usr/lib/libdtrace.so: undefined reference to `dt_idh= ash_create' > /usr/obj/usr/src/tmp/usr/lib/libdtrace.so: undefined reference to `dt_idh= ash_lookup' > /usr/obj/usr/src/tmp/usr/lib/libdtrace.so: undefined reference to `dt_ido= ps_type' > /usr/obj/usr/src/tmp/usr/lib/libdtrace.so: undefined reference to `dt_ido= ps_thaw' > /usr/obj/usr/src/tmp/usr/lib/libdtrace.so: undefined reference to `dt_ido= ps_args >=20 > Please fix. >=20 To fix the build, % svn revert -r 377300:377299 . --=20 Steve