From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7A0D5C07545 for ; Tue, 24 Oct 2023 19:13:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234699AbjJXTNC convert rfc822-to-8bit (ORCPT ); Tue, 24 Oct 2023 15:13:02 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34598 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232658AbjJXTNC (ORCPT ); Tue, 24 Oct 2023 15:13:02 -0400 Received: from mail-pf1-f170.google.com (mail-pf1-f170.google.com [209.85.210.170]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A057410C3; Tue, 24 Oct 2023 12:13:00 -0700 (PDT) Received: by mail-pf1-f170.google.com with SMTP id d2e1a72fcca58-6b709048d8eso3825026b3a.2; Tue, 24 Oct 2023 12:13:00 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1698174780; x=1698779580; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=huRoCbol9sNMgaeeR3QA3ScQBG85LW2f8G//agffXVw=; b=wfyiIq0otJgEpPdmEAKRyZEhVEU0Clm0+I2HJGzbT0mSDJbc/hHx15VibuP6EgF+B0 fWfz56Oe2t+F6/yeEkIla2K2B/Hc6ru1/s4/aNJYuTIEfkWvbhdqzPppU8LvnoQtp9vo IU49nLSF3/qI9V6k3VfrcSLvtDSXvOR3x1veOkffLVV+fAKQcUsmTN5iftt49YLUSLja oRTvr8aI2ofHUBwzD4YB6AhhBcfLzxnW2TmYUV7rzldLtXpwTbMNnLKTLoLSL/iIzUCN WS7vo4lFkRN6YjDohSATaZJfougGOy3Reo+U5fFa8c6o8ZxsL6hjXQGTEX8UHsYeStPE B9Nw== X-Gm-Message-State: AOJu0YwcVkt82/DDE3yCgbnxeknzaPiDAMYxRPesDPEZMvnixQSpgXJU rQiQx64+72/Tm2K3LCud5lPnlLjC6XAjza2m2do= X-Google-Smtp-Source: AGHT+IElqV2VvOOlwXcCKYbePTwIdFTsHFEljmIA2WcXU6fpC5iokmsfsZ1W/m28EC0JKtUESSAvPDgR0h1ZnWaZ9DA= X-Received: by 2002:a17:90a:183:b0:27f:bd9e:5a15 with SMTP id 3-20020a17090a018300b0027fbd9e5a15mr4754395pjc.28.1698174779944; Tue, 24 Oct 2023 12:12:59 -0700 (PDT) MIME-Version: 1.0 References: <20231012035111.676789-1-namhyung@kernel.org> <20231012035111.676789-23-namhyung@kernel.org> In-Reply-To: From: Namhyung Kim Date: Tue, 24 Oct 2023 12:12:47 -0700 Message-ID: Subject: Re: [PATCH 22/48] perf annotate: Add --type-stat option for debugging To: Arnaldo Carvalho de Melo Cc: Jiri Olsa , Peter Zijlstra , Ian Rogers , Adrian Hunter , Ingo Molnar , LKML , linux-perf-users@vger.kernel.org, Linus Torvalds , Stephane Eranian , Masami Hiramatsu , linux-toolchains@vger.kernel.org, linux-trace-devel@vger.kernel.org Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8BIT Precedence: bulk List-ID: X-Mailing-List: linux-toolchains@vger.kernel.org On Mon, Oct 23, 2023 at 10:41 AM Arnaldo Carvalho de Melo wrote: > > Em Mon, Oct 23, 2023 at 02:28:10PM -0300, Arnaldo Carvalho de Melo escreveu: > > When building with NO_DWARF=1 or in systems lacking the used DWARF > > libraries. I noticed with some of the build containers, will updated > > those to have the required libraries so that this feature gets compile > > tested there. > > The problem was that I build with/without NO_LIBELF=1, and with it set > NO_DWARF=1 is enabled and thus breaks the build. Ok, I'll take care of NO_DWARF build in v2. Thanks, Namhyung