Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
453 views
in Technique[技术] by (71.8m points)

Remote debugging C++ applications with Eclipse CDT/RSE/RDT

I am fighting with Eclipse (in Windows) to make it connect to my Linux box and compile and debug C++ code there remotely.

What I have working:

  • CDT/RSE/RDT installed (Eclipse Juno, CDT 8.1.2, PTP(RDT) 6.0.4, RSE 3.4)
  • rdt-server runs on Linux box (perl ./daemon.pl 4075)
  • create local C++ projects (Makefile based)
  • compile and debug local C++ projects
  • create remote projects (using the "Linux" connection to the rdt-server)
  • compile remote projects (Makefile based)

Some manual things I can do (without Eclipse):

  • "remote" debug my compiled projects: ssh mybox 'cd /path/to/project; gdb main'
  • start a gdbserver: ssh mybox 'cd /path/to/project; gdbserver fqdn:10000 main'

What is not working: Debug in Eclipse

  • debug via "C++ application" Error: Program not specified (because I have a no local code)
  • debug via "C++ remote" Error: Program not specified (do I need local code for that?)
  • debug via "C++ attach" (Debugger: "gdbserver")
    • gdbserver running on linuxbox
    • gdb can not talk to the gdbserver (cygwin gdb 7.5, linux gdb/gdbserver 7.3); warning: Architecture rejected target-supplied description.
  • debug via "C++ attach" (Debugger: "gdb") will try to attach to my Windows processes.

Other things that might cause problems:

  • I am using the ssh binary provided with MSYS/Git (not on PATH)
  • Cygwin is not on PATH

I really would like to do remote debugging in Eclipse for my C++ projects. Do you have any suggestions how to proceed from here?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Sanity check with CLI

Before you do anything, make sure you:

  • cross compile the application correctly and that it runs. You don't necessarily need to do this using Eclipse.
  • get GDB remote debugging working properly from the command line

This answer supposes that you can do on the development board:

sudo apt-get install gdbserver
gdbserver :1234 path/to/executable

And on host:

aarch64-linux-gnu-gdb 
  -ex "target remote board-hostname:1234" 
  -ex "file path/to/cross/compiled/executable" 
  -ex 'tb main' 
  -ex c

and then step debug everything correctly.

Eclipse setup

Tested in Ubuntu 16.04 host, Eclipse Oxygen 4.7.0 (downloaded from website), gdbserver 7.12, aarch64-linux-gnu-gdb 7.6.

I have successfully used all of the following methods:

  • manual
  • automatic
    • password auth
    • public key auth

Manual

With this method, we have to launch gdbserver on the target before running debug on Eclipse.

Pro: dispenses configuring SSH connections through Eclipse to allow Eclipse to

Con: you have to relaunch gdbserver every time debugging starts. This could be overcome if Eclipse understood gdbserver --multi, but I don't think it does?

Due to its simplicity, I recommend that you get this method working first.

Open the debug configurations, then create a new "C / C++ Remote Application".

Under the tab "Main":

  • select the "Name", "Project" and "C/C++ Application" as usual for a local debug

  • at the bottom launcher, click "Select other", check "Use configuration specific settings" and pick "GDB (DSF) Manual Remote Debugging Launcher"

    Why we do this: the automatic launcher first connects to the board with SSH and launches the gdbserver for you.

    enter image description here

Under the tab "Debugger":

  • "GDB debugger": same as used from CLI on host, aarch64-linux-gnu-gdb for this example

  • Sub-tab "Connection": set hostname and port as passed to the host on CLI (board-hostname and 1234)

    enter image description here

    enter image description here

Finally, manually launch gdbserver on the target just as we did from the CLI:

gdbserver :1234 path/to/executable

and start the debugger from Eclipse normally.

You have to restart gdbserver every time you terminate the program.

Automatic with password auth

This is the best method for development boards, which have fixed publicly known passwords.

It connects to the target with SSH and a password, and launches gdbserver on the target automatically every time, which is super convenient!

Target gdbserver stdout goes to the Eclipse "Console" window, which further reduces window switching.

In Eclipse set:

Automatic with public key

Very similar to the password authentication, except that you must go to: "Connection", "New", and choose "Public key based authentication"

Pros:

  • overcomes the "Secure storage was unable to save the master password" if you have an encrypted private key (unsafe, but fine for
  • for servers, you likely have already setup the public key

Cons:

  • key setup may hurt the first time
  • must redo key setup whenever devboard is nuked

SSH can connect without a password if you:

Before using this method, make sure that your authorized keys work from the command line, i.e. you should now be able to do:

ssh user@host

without typing any password.

Change the current working directory of the process

How to set the current working directory of the program when remote debugging with gdbserver Automatic Launcher in Eclipse CDT?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...