xisui-MSFT
xisui-MSFT
> > So is the Failed to read ssh_config message "by design"? > > I don't think we should be showing failure messages by default for this. If the user...
> @olegkhar my VScode is currently already in english. I don't know why the extension is showing up french. And I don't know how to change extension's language specific setting...
@fbs2016 Can you explain your scenario in more detail? Based on your description, seem like your scenario is similar to: 1. Start gdbserver on the target, via "gdbserver : --multi"...
@fbs2016 If you are using latest cpptools, you don't need to provide process ID anymore. A quick pick menu will be shown with processes on the target machine. Note that...
2. In extended remote mode, command ` -ex "target extended-remote " -ex "info os processes" -batch` is used to fetch remote processes, and `ps` is not used. Can you try...
> The following is my understanding of attach, am I right? > The attach create 2 gdb connections. > 1 It create the first gdb connection to get process list...
@WardenGnaw Looks like pipeTransport requires a pipe program https://code.visualstudio.com/docs/cpp/pipe-transport, but we are using GDB on the local machine. Sample command: ``` gdb \ \ -ex "set sysroot ${SYSROOT}" \ -ex...
Is it possible to modify MIEngine somehow to have an option to get processes via GDB instead?
@WardenGnaw Sorry for replying late. We are also investigating how to do debugging in this case. And for us, looks like attach is required to be after gdb connects (extended-remote):...
@WardenGnaw Yes we are able to get a list of processes, and we decide to proceed with option A for now. But I have another question... Even if we provide...