theNotSoPro
theNotSoPro

Reputation: 318

MSVS2015 Linux Debug starting gdbserver failed

I'm trying to debug a linux c++ application on a remote offsite server and I got this message:

gdbserver error

Any ideas? I've tried debugging it on an onsite linux machine (through MSVS2015 on windows) and it works fine.

Upvotes: 1

Views: 322

Answers (1)

theNotSoPro
theNotSoPro

Reputation: 318

I had a snapshot of the server prior to installing gdbserver. It worked after I installed all the components again by doing this:

  1. sudo apt-get install openssh-server g++ gdb gdbserver

Don't know what fixed it but this worked...

Upvotes: 1

Related Questions