From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31489 invoked by alias); 25 Aug 2019 22:24:38 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 31352 invoked by uid 89); 25 Aug 2019 22:24:23 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-18.1 required=5.0 tests=AWL,BAYES_00,ENV_AND_HDR_SPF_MATCH,RCVD_IN_DNSWL_NONE,SPF_PASS,USER_IN_DEF_SPF_WL autolearn=ham version=3.3.1 spammy=HX-Languages-Length:803, fedora X-HELO: mail-ot1-f66.google.com Received: from mail-ot1-f66.google.com (HELO mail-ot1-f66.google.com) (209.85.210.66) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 25 Aug 2019 22:24:05 +0000 Received: by mail-ot1-f66.google.com with SMTP id z17so13434976otk.13 for ; Sun, 25 Aug 2019 15:24:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=m3k6xWO78TroDq3BJOQJxZqPDBPKPPNkPDHQ+qII3Is=; b=qJFg7YpdB4cbnC+1TSMHyb6iHW3MtXp15WMH/n5/QKu3utd9MblElmimFQBaTwHmJZ EQHfqcaT6uRrotCGfN6T2DdcDvkj7ELP4Hq68ATTm1Zd0F3e0xdchQ9KQJ5Li9FGRzRe xwCYw+zjM2su9/EfEICGc0JQc9ch535yDrYWe3lrD5S3l3IfoK5qgCCZzK9v4bHuikr0 5wfaD8GH9UjQ3nqUnAkiHnukTX4FsvSlbFeAhXzAEVC6cBL1EpPljnnMvIGUlMDrF+q8 zjpEk3CrzDzIdd7JMoF5MCDpRvYK1lSEM20ctSfsTC1w6DasMWJlxj7hAc6ReemDc9y9 YZZg== MIME-Version: 1.0 References: <20190820221745.147370-1-cbiesinger@google.com> In-Reply-To: From: "Christian Biesinger via gdb-patches" Reply-To: Christian Biesinger Date: Sun, 25 Aug 2019 22:24:00 -0000 Message-ID: Subject: Re: [PATCH 0/3] [RFC] Load gdbinit files from a directory To: Pedro Alves Cc: gdb-patches Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2019-08/txt/msg00570.txt.bz2 On Wed, Aug 21, 2019 at 2:13 PM Pedro Alves wrote: > > On 8/20/19 11:17 PM, Christian Biesinger via gdb-patches wrote: > > This patch series is some refactoring and then a patch to load gdbinit > > files from a directory, instead of only allowing a single file. > > > > Fedora ships a system gdbinit file that does something similar; this > > does this by default and also works if Python is disabled. > > Note that Fedora won't be able to replace the current mechanism with > this, because it also loads Python files from the dir: Hi Pedro, I've looked at the code more closely now, and it already uses the "source" command for loading the system gdbinit file(s). So, Fedora should be able to use it, I think? Christian