This is the mail archive of the
gdb@sourceware.org
mailing list for the GDB project.
Re: Colon-separated path on Windows
> Date: Wed, 30 Jul 2008 11:39:29 -0400
> From: "Marc Khouzam" <marc.khouzam@ericsson.com>
>
> when dealing with colon-separated paths for such things as set solib-search-path,
> how should I format the path on Windows when there are already colons after the drive?
>
> e.g., set solib-search-path c:\my path:c:\your path
Like this:
set solib-search-path c:\my path;c:\your path
That is, use semi-colon instead of a Unix colon.
> Also, I believe I should not quote the path, right?
Right.