From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 47844 invoked by alias); 11 Mar 2015 20:19:46 -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 47824 invoked by uid 89); 11 Mar 2015 20:19:45 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mail-ob0-f171.google.com Received: from mail-ob0-f171.google.com (HELO mail-ob0-f171.google.com) (209.85.214.171) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 11 Mar 2015 20:19:44 +0000 Received: by obcwp18 with SMTP id wp18so11543782obc.6 for ; Wed, 11 Mar 2015 13:19:42 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=PyN1shMZPYtcmg5y+V0bYUvN149vm6uNRJaRVfejXO4=; b=elG2CVVdhsrPyCSNs27T+yTm9JFPaypugRKKc1V+jeUlGDoK0eoGy4hu1DFjEbPdtt Y9SexAdlMmNuRRSjGUQA9NTd462xrsCSkmxw3A88og9ro2vVW2Vlh7V+dc6Rwsy4v4/d kQNdR6SQVjIfxwsnE4ZKqNDykFG0+b8NzxnIEc4uODtp6zCHtF/9K7ewKP+90lxhrAFq ySAvFzC933iA7CYaALIVDRmIof2kFkMPvwA2UNPU73iHFzu6LNw+uqBsRKOx3rVFBLfp hhWsV8E4LiX1Pm75eQksY33R/WAqjxLCX8BmfNmU7/m00DjOHdKaJStsVEENKtYVbyMx NVdg== X-Gm-Message-State: ALoCoQldiV+PSgxMxCrOQbizaVJkP51bUb4Jeftv2zUHczKGY+fxVXreqTMq3m3To4o6FGvYRKQU MIME-Version: 1.0 X-Received: by 10.60.82.194 with SMTP id k2mr18383669oey.65.1426105182463; Wed, 11 Mar 2015 13:19:42 -0700 (PDT) Received: by 10.182.142.226 with HTTP; Wed, 11 Mar 2015 13:19:42 -0700 (PDT) In-Reply-To: <5500A1C0.8080702@eagerm.com> References: <54FF77D6.7010400@eagerm.com> <5500A1C0.8080702@eagerm.com> Date: Wed, 11 Mar 2015 20:19:00 -0000 Message-ID: Subject: Re: [PATCH] Support gzip compressed exec and core files in gdb From: Doug Evans To: Michael Eager Cc: Cary Coutant , "gdb-patches@sourceware.org" , binutils Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2015-03/txt/msg00322.txt.bz2 On Wed, Mar 11, 2015 at 1:12 PM, Michael Eager wrote: >> Would it make sense to support .tar.gz/.tgz files containing both a >> binary and its .dwp? > > > Perhaps, but I don't want to extend this (conceptually) simple extension > to also handling tar files. Maybe as a follow-on. Is there a fuse-based wrapper for tarballs? A little googling suggests there is but I didn't dig for details. How useful would it be to make that work from gdb more easily? E.g., "file tarfuse:myexec" and then provide a way to register a handler for "tarfuse". Or some such. Just thinking out loud ...