From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id /76zI4eNz183bgAAWB0awg (envelope-from ) for ; Tue, 08 Dec 2020 09:28:23 -0500 Received: by simark.ca (Postfix, from userid 112) id 85CC01F096; Tue, 8 Dec 2020 09:28:23 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id BFFDD1E590 for ; Tue, 8 Dec 2020 09:28:22 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 1E088385800D; Tue, 8 Dec 2020 14:28:22 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1E088385800D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1607437702; bh=3eT1nyQ1ddxFb6omzHRBdW8bpLzhFE9tPJm9K5GtN9w=; h=Subject:To:References:Date:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=JJJIyVR5D81s55rVoP068wTnUIoZ5WwN74mpRoDPXHTbB/sBu52pL2vy8fQ4hD3C4 VjXMWlJKZ19Gwo7yP8wK7hArizGw06QPHKVHqVlal29rZKCKwby3vxH6WmwK0T/s0u ZnVJ11+osKAUzxJMvaI3VTLTOmD/OTcRJHLDb0TE= Received: from smtp.polymtl.ca (smtp.polymtl.ca [132.207.4.11]) by sourceware.org (Postfix) with ESMTPS id B4399385800D for ; Tue, 8 Dec 2020 14:28:18 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org B4399385800D Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 0B8ESD4h009459 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Tue, 8 Dec 2020 09:28:18 -0500 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 0B8ESD4h009459 Received: from [10.0.0.11] (173-246-6-90.qc.cable.ebox.net [173.246.6.90]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 2F3601E590; Tue, 8 Dec 2020 09:28:13 -0500 (EST) Subject: Re: [PATCH] gdb: print size of downloaded debuginfod binary To: =?UTF-8?Q?Martin_Li=c5=a1ka?= , gdb-patches@sourceware.org References: <6ad82f30-0ca3-8b19-2907-d71f0dfecafe@suse.cz> <2c28a403-a169-0dc3-9b64-58484237c8c2@suse.cz> Message-ID: Date: Tue, 8 Dec 2020 09:28:12 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.4.3 MIME-Version: 1.0 In-Reply-To: <2c28a403-a169-0dc3-9b64-58484237c8c2@suse.cz> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-Poly-FromMTA: (simark.ca [158.69.221.121]) at Tue, 8 Dec 2020 14:28:13 +0000 X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Simon Marchi via Gdb-patches Reply-To: Simon Marchi Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" On 2020-12-08 5:16 a.m., Martin Liška wrote: > Temporary breakpoint 1 at 0x406150: file > /home/marxin/Programming/gcc/gcc/gcc-main.c, line 44. > Starting program: /home/marxin/bin/gcc/bin/gcc > Downloading 1.00 MB separate debug info for > /lib64/ld-linux-x86-64.so.2...10%..20%..30%..40%..50%..60%..70%..80%..90%..100% > > Downloading 4.20 MB separate debug info for > /lib64/libm.so.6...10%..20%..30%..40%..50%..60%..70%..80%..90%..100% > Downloading 10.72 MB separate debug info for > /lib64/libc.so.6...10%..20%..30%..40%..50% > > Thoughts? Could you make it so the percentage always gets written at the same place, overwriting the previous percentage written? Simon