Date: Tue, 7 Jul 1998 13:54:52 +0300 (IDT) From: Eli Zaretskii To: lqian AT uiuc DOT edu cc: djgpp AT delorie DOT com Subject: Re: DJGPP, \ and / In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On 6 Jul 1998, Leiming Qian wrote: > gdb H:\code\test.exe won't work, while > > gdb H:/code/test.exe would. It's a bug in the ported GDB. You must realize that supporting DOS-style backslashes in file names doesn't come for free: to make it work, the person who does the port needs to add code to the original source, since GNU programs generally have the '/' character hardwired all over their sources. > Are there any options in Djgpp which can force those programs to recognize \ > notation? The problem is with GDB itself, not with DJGPP in general. Since the GDB sources are available, you could just download them, find the place where the argv[] array is processed, correct the bug and rebuild GDB.