From owner-freebsd-current@freebsd.org Fri Mar 4 19:18:45 2016 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 170019DAB56 for ; Fri, 4 Mar 2016 19:18:45 +0000 (UTC) (envelope-from markjdb@gmail.com) Received: from mail-pf0-x233.google.com (mail-pf0-x233.google.com [IPv6:2607:f8b0:400e:c00::233]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DCE80C7 for ; Fri, 4 Mar 2016 19:18:44 +0000 (UTC) (envelope-from markjdb@gmail.com) Received: by mail-pf0-x233.google.com with SMTP id 4so40113089pfd.1 for ; Fri, 04 Mar 2016 11:18:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=h+UjdrLhDMSjH+Gmvl1RPYnJuBy/RdudyMdALsDBNSE=; b=xePj2KRUW8lXTTJH4nSNszC8/xbzlEEug04x9T109kc/3B78jpM1MpZzU0XGiSegKk 85dy273DmWaFg9VDAhGikpoxcyFgGqoC7+WQqopKslf3TWcICxKnCLxuFpBCU7qON49w 0CsdAujBKUPCJn2pQIQfiPTSLBof5Ou/XBjvHui5ro8oJ05ruKFwNmGIBWLTjOUR0MtY cWdfCTh0YR/Hfx80op121JNVtJPEPJFC/AErFCvQ+jq8XPMAEq3EQ++gtk8tKyfOd3li TpvSp8qQS7Gq1+zuwJXNo8ysbyoqycHThfffKVyo4Dn+Cy+7/RedaouvN/7ZOJxiGFse Bowg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:date:from:to:cc:subject:message-id :references:mime-version:content-disposition:in-reply-to:user-agent; bh=h+UjdrLhDMSjH+Gmvl1RPYnJuBy/RdudyMdALsDBNSE=; b=Emozm3fbF+achIZk8/AsP3/6aWlPzYTyNWjwRKBhjjCs/zjkAP+YV7qQlzQXDd/P2v 4IA2eCdYOQ7QDSdwLN+W/W1vXfjUese43V2aP6m8z6dus6gtwzbiDROVhogIxX18C6H2 KJSfjzgOx83HE6v96Mh6lQZZAwNQ9nryTH4zw4L5XVccKA6BVWld+kPsOOpCg6Jo/VAz swCnC0ldG7FmvG0qlTZJk/9us3MztKA7MSUA21v+PVBCkh8+JxofEsgi6fIKOGV5x1XI 3PPoWEw+Dim47XRvM1PvSg46wkHBWwP+3V4O3OVX14f6IZQ9C2bH+Sb9aHoIvO3GW9TB Po1Q== X-Gm-Message-State: AD7BkJKQztFoVQKPgYc5GqBdMddt0RXaifMLd0vueyaj63Tt2vjAMAo/JjmBRCm6JC0Z1Q== X-Received: by 10.98.9.27 with SMTP id e27mr14530928pfd.59.1457119124446; Fri, 04 Mar 2016 11:18:44 -0800 (PST) Received: from wkstn-mjohnston.west.isilon.com (c-67-182-131-225.hsd1.wa.comcast.net. [67.182.131.225]) by smtp.gmail.com with ESMTPSA id v7sm7247235pfi.56.2016.03.04.11.18.42 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 04 Mar 2016 11:18:43 -0800 (PST) Sender: Mark Johnston Date: Fri, 4 Mar 2016 11:21:33 -0800 From: Mark Johnston To: Chris H Cc: FreeBSD CURRENT Subject: Re: ERROR: ctfconvert: *.o doesn't have type data to convert Message-ID: <20160304192133.GA52454@wkstn-mjohnston.west.isilon.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.21 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, 04 Mar 2016 19:18:45 -0000 On Fri, Mar 04, 2016 at 08:47:44AM -0800, Chris H wrote: > I've just finished building world, and am building a custom kernel. > (11-CURRENT svn co from yesterday, and on an i386) > > I see the following message emitted on every lib being processed > during the build: > > ERROR: ctfconvert: *.o doesn't have type data to convert > (replace the asterisk (*) with any given library) This is probably because your kernel config contains "makeoptions WITH_CTF=1" but not "DEBUG=-g". ctfconvert has nothing to do because no DWARF info is available, and emits that error as a result. > > Will this result in an unusable kernel? Should I be concerned? No, it'll work fine. Some parts of DTrace will not work.