From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1465 invoked by alias); 5 Feb 2003 05:50:41 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 1458 invoked from network); 5 Feb 2003 05:50:40 -0000 Received: from unknown (HELO is.elta.co.il) (199.203.121.2) by 172.16.49.205 with SMTP; 5 Feb 2003 05:50:40 -0000 Received: from is (is [199.203.121.2]) by is.elta.co.il (8.9.3/8.8.8) with SMTP id HAA15515; Wed, 5 Feb 2003 07:49:44 +0200 (IST) Date: Wed, 05 Feb 2003 05:50:00 -0000 From: Eli Zaretskii X-Sender: eliz@is To: Kris Warkentin cc: gdb-patches@sources.redhat.com Subject: Re: patch to add QNX NTO i386 support In-Reply-To: <001601c2cc8a$0da1b5d0$2a00a8c0@dash> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-SW-Source: 2003-02/txt/msg00169.txt.bz2 On Tue, 4 Feb 2003, Kris Warkentin wrote: > That would be a lack of understanding on my part. I assumed we needed to > give aliases for any filename longer than 8+3. You're saying we just need > to be conscious of the autoconversion dos stuff. Yes, the file names are automatically truncated to 8+3 when the tarball is unpacked on 8+3 filesystems. So only files that map to the same name after this truncation should be considered. Also, file whose name includes characters that DOS does not allow (like `+' in `gdb.c++') should be mapped to something different. > In that case, probably the > only ones I'd need to look at would be the remote-qnx* and the tm-i386nto.h. Yes. > Revised patch attached. Thanks.