From owner-freebsd-dtrace@FreeBSD.ORG Mon Dec 8 23:08:12 2014 Return-Path: Delivered-To: freebsd-dtrace@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DBF3E8C2 for ; Mon, 8 Dec 2014 23:08:12 +0000 (UTC) Received: from mail-ie0-x231.google.com (mail-ie0-x231.google.com [IPv6:2607:f8b0:4001:c03::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A3D9DE2B for ; Mon, 8 Dec 2014 23:08:12 +0000 (UTC) Received: by mail-ie0-f177.google.com with SMTP id rd18so5271172iec.8 for ; Mon, 08 Dec 2014 15:08:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=ZDb5nD9vRCu+IwNhEsuK4F2taOQo4lzzEVQyadPMZxM=; b=GwNm9vjeKjSuOulAtWRBYmD9/jhwczZxIV/SuXBdksByzwtPJa8yA4hMFetADzvi6/ H5r/iWWKJ76SiTm3s64pAl0o9FcgFOOITo03mfQ5DU/JHMIQ18zP9twT/JcyEqIzxaNi 4QViPMbmdfJJisebI9LfivwKaza1kYOOPwwkuUoWBse4T2PMrLm54dpIAaJd5eVbaYrx 0e5zkXVEwNv6pzFUw1DSs0C6/AFm/zpLiwPBnDp7/IZutGP023oHS5G/HdywVFk0Op9y 4GX8hTuUVPwqqv9c2eokUtiW88P++Vg40UIz2ySN31i+hzHQzIezw/bIByhSA/D0XDlJ iLsA== MIME-Version: 1.0 X-Received: by 10.50.137.65 with SMTP id qg1mr17277975igb.37.1418080092187; Mon, 08 Dec 2014 15:08:12 -0800 (PST) Received: by 10.107.10.31 with HTTP; Mon, 8 Dec 2014 15:08:12 -0800 (PST) In-Reply-To: <5485C63E.3090002@gmail.com> References: <5485C63E.3090002@gmail.com> Date: Mon, 8 Dec 2014 18:08:12 -0500 Message-ID: Subject: Re: missing system struct definitions during compilation files in /usr/lib/dtrace/ in local releng/10.1 build From: Ryan Stone To: =?UTF-8?Q?Viktor_=C5=A0tujber?= Content-Type: text/plain; charset=UTF-8 Cc: "freebsd-dtrace@freebsd.org" X-BeenThere: freebsd-dtrace@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "A discussion list for developers working on DTrace in FreeBSD." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Dec 2014 23:08:13 -0000 dtrace gets the structure definitions from CTF debugging data in the kernel image. Did you use a custom kernel configuraton file? Make sure that you have these lines in your kernel config: makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols makeoptions WITH_CTF=1 # Run ctfconvert(1) for DTrace support