From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11064 invoked by alias); 12 Jun 2011 07:56:56 -0000 Received: (qmail 11056 invoked by uid 22791); 12 Jun 2011 07:56:55 -0000 X-SWARE-Spam-Status: No, hits=-6.4 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,TW_SM,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 12 Jun 2011 07:56:36 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p5C7uaxK000427 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 12 Jun 2011 03:56:36 -0400 Received: from host1.jankratochvil.net (ovpn-113-23.phx2.redhat.com [10.3.113.23]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p5C7uYZx027195 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 12 Jun 2011 03:56:35 -0400 Received: from host1.jankratochvil.net (localhost [127.0.0.1]) by host1.jankratochvil.net (8.14.4/8.14.4) with ESMTP id p5C7uXno010785; Sun, 12 Jun 2011 09:56:33 +0200 Received: (from jkratoch@localhost) by host1.jankratochvil.net (8.14.4/8.14.4/Submit) id p5C7uVvT010779; Sun, 12 Jun 2011 09:56:31 +0200 Date: Sun, 12 Jun 2011 07:56:00 -0000 From: Jan Kratochvil To: asmwarrior Cc: Keith Seitz , gdb@sourceware.org, MinGW Users List Subject: Re: setting a breakpoint on a dll, relative path or absolute path issue Message-ID: <20110612075630.GA9347@host1.jankratochvil.net> References: <4DF31EB0.6080006@gmail.com> <4DF3A114.8040709@redhat.com> <4DF43971.8090404@gmail.com> <4DF46F19.1020009@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4DF46F19.1020009@gmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2011-06/txt/msg00080.txt.bz2 On Sun, 12 Jun 2011 09:47:37 +0200, asmwarrior wrote: > 1, either we should store the > "E:/code/cb/wx/wxWidgets-2.8.12/src/common/datetime.cpp" > instead of > "E:\code\cb\wx\wxWidgets-2.8.12\build\msw/../../src/common/datetime.cpp" > in the symbol tables. This does not work, the paths are not the same: $ mkdir dir dir/subdir; echo file >dir/file; ln -s dir/subdir symlink; cat symlink/../file file file cat: file: No such file or directory And one of the MinGW principles is to keep the backslashed names (\), not to translate them to slashed ones (/) like CygWin does. Regards, Jan