From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf1-x12f.google.com (mail-lf1-x12f.google.com [IPv6:2a00:1450:4864:20::12f]) by sourceware.org (Postfix) with ESMTPS id 9B5683848427 for ; Fri, 3 Sep 2021 14:57:45 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 9B5683848427 Received: by mail-lf1-x12f.google.com with SMTP id z2so12320781lft.1 for ; Fri, 03 Sep 2021 07:57:45 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:cc:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=i8/ydcj9/36VYKzsgXvf2SnKhgMVCcmdq/E61K3j6BE=; b=uZjmkAPH00v8MdlnY4uUFBbYR6D5g9d31ejwWtHkYn7OswY7XVIFomS3g6o8CwZl1U gGvaBEgmDrVcMTU2fBlMd/cfoRALlWmLI9WNl/pnYWNVkhuEF6vhCzJvlAN8MktOxYBE 1mvEN/eXTEWH/xlIhJiwCFFXaS8L3xieXW9PxKR7CVY+64lpyND+0DkEQwjfr67rZEdh IjZCmZHdm7kCcRog36pviN9nL+MtOt4OMNTJe0iczM3gHjszv8Q7I+55o23JgrIuTgeu kebWbePqZ4EJxMSSxXEkE0vlfCTTfddiuI9rpOohggCyiEDWwZDPfhnWx9faXHPmzWrJ Zeaw== X-Gm-Message-State: AOAM5333BTh6JIAQcjwlTUoNUiZE5QodsyWtRIcijEHQKdexJcz7L3GR VmSw2Q0G6CaPL8p802Hj0qUmEw1kzuI= X-Google-Smtp-Source: ABdhPJxaLcazue3td4Ybf62byyjwZ20v3MpZBKu9DCec5FJyOjGR/nA9pxNfq9/oj5l2c2HR7QlEmQ== X-Received: by 2002:a05:6512:2602:: with SMTP id bt2mr3073356lfb.47.1630681064311; Fri, 03 Sep 2021 07:57:44 -0700 (PDT) Received: from [192.168.2.206] ([94.228.207.246]) by smtp.gmail.com with ESMTPSA id f10sm604207ljo.11.2021.09.03.07.57.43 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Fri, 03 Sep 2021 07:57:43 -0700 (PDT) Subject: Re: Disambiguating symbols by module To: Matt Rice Cc: GDB References: From: Alexander Miloslavskiy Message-ID: <4e230740-b655-bdc3-dbe0-b1ed518d1a26@gmail.com> Date: Fri, 3 Sep 2021 17:57:42 +0300 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.13.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-GB Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-3027.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, NICE_REPLY_A, RCVD_IN_ABUSEAT, RCVD_IN_BARRACUDACENTRAL, RCVD_IN_DNSWL_NONE, RCVD_IN_SORBS_WEB, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gdb@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2021 14:57:46 -0000 On 03.09.2021 17:53, Matt Rice wrote: > I don't really know of any satisfactory solution then... > The best workaround I can come up with is to put the address in a > convience variable (which could perhaps be automated with some python > scripts in your gdbinit, to gain some address independence). Right, I think that a startup python script could work, if there are no better solutions. Thanks!