Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
themeDJango
WHITELIST_GPL-3.0 += " gdb readline"
INCOMPATIBLE_LICENSE = "GPL-3.0 LGPL-3.0 AGPL-3.0"

Valgrind also needs some of the previously defined features, specifically:

$YOCTO_BUILD/conf/local.conf:

Code Block
themeDJango
EXTRA_IMAGE_FEATURES = "tools-debug debug-tweaks dbg-pkgs"

...

Code Block
themeDJango
$ gdb <binary of component> <crash file>
Example, 
$ gdb /usr/bin/CcspWifiSsp /tmp/1662722171_core.prog_CcspWifiSsp.signal_11.1888 

Example, 

with backtrace 'bt' command we can list the function calls,

...