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 2BA5AC76188 for ; Mon, 3 Apr 2023 21:49:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232329AbjDCVtq (ORCPT ); Mon, 3 Apr 2023 17:49:46 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46570 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233215AbjDCVtp (ORCPT ); Mon, 3 Apr 2023 17:49:45 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0A13D10C6; Mon, 3 Apr 2023 14:49:43 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 7BBB062D46; Mon, 3 Apr 2023 21:49:43 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B3710C4339B; Mon, 3 Apr 2023 21:49:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1680558582; bh=fqVETS7SWuY15r04nn/Zh048xfVgLhJlxdN7uGgMkL4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=csjl+DdJF1bt5VuD3zLHrps55/jtY5V7dauWE67iiSi3SR1X+Hw+LjmlPqkXSnoeK 8SYa+zjCt++6Y9/hZ4f5tts6warGrKhWp/51wOZJCiA9Pz0yDTl+utJ/gKeo+VwWZP 9P5YC0WnnTZ2cRuItRXeaOdPO3CsnkaIu3Yywm8hkXdRGzOitAd0mAxJDi1FRda3lw 2QTFBWsJEbgOVl+nBWtPGe3Jz12h3eFV0wiR0A0euPTDyeVKzNnCj88WJYQ5eL6evn jy7CITthHzebjkLOZf1gJxcNy9FMoQXE/3+RPmhYb6QfWHj6B12JYzoWRn6EdBVsPI WuNMH7ZI4mj9Q== Received: by quaco.ghostprotocols.net (Postfix, from userid 1000) id 4AC154052D; Mon, 3 Apr 2023 18:49:40 -0300 (-03) Date: Mon, 3 Apr 2023 18:49:40 -0300 From: Arnaldo Carvalho de Melo To: Ian Rogers Cc: Peter Zijlstra , Ingo Molnar , Mark Rutland , Alexander Shishkin , Jiri Olsa , Namhyung Kim , Adrian Hunter , linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org, Andrii Nakryiko Subject: Re: [PATCH v1 1/2] perf build: Allow C++ demangle without libelf Message-ID: References: <20230403211021.1892231-1-irogers@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230403211021.1892231-1-irogers@google.com> X-Url: http://acmel.wordpress.com Precedence: bulk List-ID: X-Mailing-List: linux-perf-users@vger.kernel.org Em Mon, Apr 03, 2023 at 02:10:20PM -0700, Ian Rogers escreveu: > The cxa demangle support isn't dependent on libelf and so we no longer > need to disable demangling if libelf isn't present. Thanks, applied. - Arnaldo > Signed-off-by: Ian Rogers > --- > tools/perf/Makefile.config | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/tools/perf/Makefile.config b/tools/perf/Makefile.config > index 236d763181c5..dd203f0a2b7e 100644 > --- a/tools/perf/Makefile.config > +++ b/tools/perf/Makefile.config > @@ -412,7 +412,6 @@ endif > > ifdef NO_LIBELF > NO_DWARF := 1 > - NO_DEMANGLE := 1 > NO_LIBUNWIND := 1 > NO_LIBDW_DWARF_UNWIND := 1 > NO_LIBBPF := 1 > -- > 2.40.0.348.gf938b09366-goog > -- - Arnaldo