From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 996323858C52 for ; Wed, 16 Aug 2023 12:45:06 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 996323858C52 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qWFtZ-0003SR-O2; Wed, 16 Aug 2023 08:45:05 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=y88X9/vgtfqEARbdbArefrare6OngdUn9rXHuc6Gmqo=; b=o2dZRij+vZh3 SFH1t9Kmfpe4HmR65YmiIz+qMtAjkisLSFN7W+IGEfrtQRcGCGJPDkk7jzr4lV4MFWzxsBE26ScJs 0awxz0gC7fVWZpAex40Sgm50EowsrlYoSoWUiTwzIJEpfR/x//g9/TPMn/zaC8oXmKb1tW2q81kCY 9+El1MxIwL6Kh4gPgJphfvoqB/O6EeBvtagig0caKBzOGXlkbBoMjNzG1vudqCkm6ZOMrolh2uJ6x URwVcEqBO3tGWilHoZZSSeFkene3uaYCpe7NYBHAIeKx+7dU0ZNdLqjjSMUY95ptN08NmwW3j9z/S 7jpBCNQKu60jiD10DPF1oQ==; Date: Wed, 16 Aug 2023 15:45:07 +0300 Message-Id: <83fs4j88bw.fsf@gnu.org> From: Eli Zaretskii To: Aaron Merey Cc: gdb-patches@sourceware.org, aburgess@redhat.com In-Reply-To: <20230816044259.2675531-4-amerey@redhat.com> (message from Aaron Merey on Wed, 16 Aug 2023 00:42:54 -0400) Subject: Re: [PATCH 3/7 v3] gdb: Add command 'maint set/show debuginfod download-sections' References: <20230816044259.2675531-1-amerey@redhat.com> <20230816044259.2675531-4-amerey@redhat.com> X-Spam-Status: No, score=0.7 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: > From: Aaron Merey > Cc: aburgess@redhat.com, > Aaron Merey , > Eli Zaretskii > Date: Wed, 16 Aug 2023 00:42:54 -0400 > > v2: https://sourceware.org/pipermail/gdb-patches/2023-June/199983.html > > v3 updates some of the doc text. > > Commit message: > > This setting controls whether GDB may attempt to download ELF/DWARF > sections from debuginfod servers. > > This setting is enabled by default if gdb is built with debuginfod > section download support (requires libdebuginfod 0.188). > > Also update debuginfod command help text and gdb.texinfo with > information on section downloading and the new command. > > Reviewed-By: Eli Zaretskii > Reviewed-By: Andrew Burgess > --- > gdb/debuginfod-support.c | 63 ++++++++++++++++++++++++++++++++++++++-- > gdb/doc/gdb.texinfo | 19 ++++++++++-- > 2 files changed, 77 insertions(+), 5 deletions(-) Thanks, the documentation parts are okay. Reviewed-By: Eli Zaretskii