Fix target remote pipe command for MinGW
authorJonas Hoerberg <JHorberg@danfoss.com>
Thu, 22 Dec 2022 15:22:17 +0000 (15:22 +0000)
committerTom Tromey <tromey@adacore.com>
Mon, 2 Jan 2023 14:58:58 +0000 (07:58 -0700)
The cced7cacecad104fff0 ("gdb: preserve `|` in connection details string")
commit added '|' detection and removal to ser-pipe.c, but missed to add it
to ser-mingw.c.

This results in the error message below for MinGW hosts:
error starting child process '| <executable> <args>': CreateProcess: No such file or directory

This commit add the missing '|' detection and removal to ser-mingw.c.

gdb/ser-mingw.c

index 232da59bdbf90d58111d482c3f606124e580190e..7de55f6d7ac95f1e0015e52eba2a3a49559e4d4e 100644 (file)
@@ -867,6 +867,12 @@ pipe_windows_open (struct serial *scb, const char *name)
   if (name == NULL)
     error_no_arg (_("child command"));
 
+  if (*name == '|')
+    {
+      name++;
+      name = skip_spaces (name);
+    }
+
   gdb_argv argv (name);
 
   if (! argv[0] || argv[0][0] == '\0')