From 240d78eb06c3df64ceeb71e15550f46ecc7e8f34 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Thu, 21 Mar 2013 07:34:27 -0700 Subject: [PATCH] dev-manual: Updated path in cross-GDB package example. Fixes YOCTO #2827 Replaced the path where one findes the binary for the meta- toolchain to a more recent example that was built from the beagleboard and using arm. (From yocto-docs rev: 020a7fcd7f99c50d32e831b8d51150e8db8ab4e9) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/dev-manual/dev-manual-common-tasks.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml index 1abc91431d..dee7206018 100644 --- a/documentation/dev-manual/dev-manual-common-tasks.xml +++ b/documentation/dev-manual/dev-manual-common-tasks.xml @@ -3166,9 +3166,10 @@ A suitable GDB cross-binary is required that runs on your host computer but also knows about the the ABI of the remote target. You can get this binary from the meta-toolchain. - Here is an example: + Here is an example where the toolchain resides in the + default directory /opt/poky/1.4/sysroots: - /usr/local/poky/eabi-glibc/arm/bin/arm-poky-linux-gnueabi-gdb + /opt/poky/1.4/sysroots/i686-pokysdk-linux/usr/bin/armv7a-vfp-neon-poky-linux-gnueabi/arm-poky-linux-gnueabi-gdb where arm is the target architecture and linux-gnueabi the target ABI.