Open main menu

DAVE Developer's Wiki β

DESK-MX-L-AN-0006: Debugging with Eclipse

Revision as of 16:04, 31 March 2016 by U0008 (talk | contribs)

Contents

IntroductionEdit

Generally speaking, Managed Virtual Machines including Yocto build system provide all the required stuff to remotely debug applications running on the target, via Eclipse/ADT. It is beyond the scope of this article to describe in detail how to use Eclipse[a]. Instead some MVM-related information are provided, in order to properly configure it to work with DAVE Embedded Systems products. For more details about Eclipse, please refer to these links:

Eclipse integration in MVMEdit

By default, cross-tool chain is intalled in TBD.

target-specific source code paths:

Configuring the Cross-ToolchainsEdit

  • Run Eclipse program:


 

 

 


To configure the Cross Compiler Options, you must select the type of toolchain, point to the toolchain, specify the sysroot location, and select the target architecture.

  • Select "Preferences" from the "Windows" menu.


 


  • Select "Yocto Project ADT", add the cross-toolchain configuration and save the profile as your project name ("targetname" in this case). Click "Apply" and "OK".


 


ExampleEdit

The following example shows how to build and debug classical "Hello, world!" example when working with SBC Lynx Embedded Linux Kit (XUELK).


This section first shows how to create an Eclipse-based project. The second part illustrates how to start a debugging session for a simple "Hello world" application.

For more details about Eclipse Kepler please refer to [[1]]

Creating the projectEdit

You can create two types of projects: Autotools-based or Makefile-based. This section describes the first method with Eclipse IDE. To create a project based on Yocto template, follow these steps:


  • Select "Project" from the "File -> New" menu.


 


  • Expand "C/C++" and select "C Project". Click "Next"


 


  • Expand "Yocto Project ADT Project" and select "Hello World ANSI C Autotools Project". Add "Project name". Click "Next" and "Finish".

 


  • If the "open perspective" prompt appears, click "Yes" so that you in the C/C++ perspective.
  • Click on "C/C++" button on up left bar to view source files.


 

 


  • To build the project select "Build Project" from the "Project" menu.


 

 


Debugging the projectEdit

This section lists the steps required to start a debugging session for the applications. Before debugging remember to compile and install yours updated binaries/libraries.

  • Select "Debug Configurations" from the "Run" menu.


 


  • Expand "C/C++ Remote Application" and select "helloworld_gdb_arm-poky-linux-gnueabii".


 


  • Click "New" in "Connection" and select "SSH Only". Click "Next".


 


  • Insert IP a ddress of the target board in the "Host name field". Click "Next" then "Finish".
  • Add binary tree under test in "C/C++ Application" field and remote tree in "Remote Absolute File Path for C/C++ Application" field.
  • Click "Select other" link near "Using Legacy Remote Create Process Launcher" and select "GDB (DSF) Automatic Remote Debugging Launcher".


 

 


  • Select "Debugger" tab and change debugger settings. Click "Debug".


 


  • Add root name and password in "Enter Password" dialog box.


 


  • If the "Warning" prompt appears, click "Yes" so that you can confirm ssh authenticity.
  • If the "open perspective" prompt appears, click "Yes" so that you in the Debug perspective.



  1. Please note that Eclipse is not just a debugger, it is a full-featured IDE that allows to manage and build complex projects with a powerful user-friendly graphical interface.