Date: Mon, 14 Sep 2015 22:16:56 +0000 From: Mark Johnston <markj@freebsd.org> To: Ryan Stone <rysto32@gmail.com> Cc: "Alexander V. Chernikov" <melifaro@freebsd.org>, FreeBSD CURRENT <freebsd-current@freebsd.org> Subject: Re: kernel dtrace and current Message-ID: <20150914221656.GB15213@muskytusk> In-Reply-To: <CAFMmRNz8yCz=d58jmMWG0n2QGrMtmR-Ge9fkFeeJGt=QQ1Th4w@mail.gmail.com> References: <738721442150603@web6j.yandex.ru> <20150913205333.GA2444@muskytusk> <363291442225336@web1h.yandex.ru> <CAFMmRNz8yCz=d58jmMWG0n2QGrMtmR-Ge9fkFeeJGt=QQ1Th4w@mail.gmail.com>
index | next in thread | previous in thread | raw e-mail
On Mon, Sep 14, 2015 at 11:54:27AM -0400, Ryan Stone wrote:
> On Mon, Sep 14, 2015 at 6:08 AM, Alexander V. Chernikov <
> melifaro@freebsd.org> wrote:
>
> > (So I suppose that for some reason I got old ctfmerge)
> >
>
> I believe that ctfmerge is only built as a bootstrap tool when the host
> system's FreeBSD version is obsolete. Mark, you probably should update
> Makefile.inc1.
Right, thanks. I'll commit the change below in a bit; it'll force
ctfmerge to be rebuilt until the next __FreeBSD_version bump (the last
one occurred 10 days before the ctfmerge fix went in). Bumping the
version just for this seems like overkill, given that it's a simple bug
fix that doesn't introduce any incompatibilities.
diff --git a/Makefile.inc1 b/Makefile.inc1
index 397c1af..a2058dc 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -1358,7 +1358,7 @@ ${_bt}-usr.bin/clang/tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/l
# ELF Tool Chain libraries are needed for ELF tools and dtrace tools.
# dtrace tools are required for older bootstrap env and cross-build
# pre libdwarf
-.if ${BOOTSTRAPPING} < 1100006 || (${MACHINE} != ${TARGET} || \
+.if ${BOOTSTRAPPING} < 1100080 || (${MACHINE} != ${TARGET} || \
${MACHINE_ARCH} != ${TARGET_ARCH})
.if ${MK_CDDL} != "no"
_dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf cddl/usr.bin/ctfconvert \
help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20150914221656.GB15213>
