From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 4AC21E00827; Wed, 28 Jan 2015 14:53:53 -0800 (PST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from smtp.webfaction.com (mail6.webfaction.com [74.55.86.74]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 0F737E006AF for ; Wed, 28 Jan 2015 14:53:48 -0800 (PST) Received: from [192.168.1.10] (c-73-194-208-34.hsd1.nj.comcast.net [73.194.208.34]) by smtp.webfaction.com (Postfix) with ESMTP id DA78520CF884; Wed, 28 Jan 2015 22:53:47 +0000 (UTC) Message-ID: <54C9687A.7080107@mindchasers.com> Date: Wed, 28 Jan 2015 17:53:46 -0500 From: Bob Cochran User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Clemens Eisserer , meta-freescale@yoctoproject.org References: In-Reply-To: Subject: Re: How to build/include debug-infos for certain packages? X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jan 2015 22:53:53 -0000 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit On 01/28/2015 04:36 PM, Clemens Eisserer wrote: > Hi, > > Using the QorIQ SDK-1.7 on e6500 based hardware we've recently started > to use oprofile for performance analysis. > However libraries shipped as part of the SDK are opaque to oprofile, > because the debug-infos are missing. > > Is there any way to include debug-infos of certain packages (such as > libc and libgcc) in the image - or even better - install it later? You can add -dbg and -dev packages to your image. Something like: IMAGE_INSTALL_append = " libgcc-dev" You could also install it manually on the target without adding it to your image if you set up the smart package manager. > > Thank you in advanve, Clemens > >