summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2013-03-21 07:34:27 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-22 17:08:43 +0000
commit240d78eb06c3df64ceeb71e15550f46ecc7e8f34 (patch)
treeb80107eb9ea26b2281ed7b8a392b3e35e8aaa610 /documentation
parent33f2c1a0aef9dd144781296de7dc92e59e190ca2 (diff)
downloadpoky-240d78eb06c3df64ceeb71e15550f46ecc7e8f34.tar.gz
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 <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml5
1 files 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 @@
3166 A suitable GDB cross-binary is required that runs on your host computer but 3166 A suitable GDB cross-binary is required that runs on your host computer but
3167 also knows about the the ABI of the remote target. 3167 also knows about the the ABI of the remote target.
3168 You can get this binary from the meta-toolchain. 3168 You can get this binary from the meta-toolchain.
3169 Here is an example: 3169 Here is an example where the toolchain resides in the
3170 default directory <filename>/opt/poky/1.4/sysroots</filename>:
3170 <literallayout class='monospaced'> 3171 <literallayout class='monospaced'>
3171 /usr/local/poky/eabi-glibc/arm/bin/arm-poky-linux-gnueabi-gdb 3172 /opt/poky/1.4/sysroots/i686-pokysdk-linux/usr/bin/armv7a-vfp-neon-poky-linux-gnueabi/arm-poky-linux-gnueabi-gdb
3172 </literallayout> 3173 </literallayout>
3173 where <filename>arm</filename> is the target architecture and 3174 where <filename>arm</filename> is the target architecture and
3174 <filename>linux-gnueabi</filename> the target ABI. 3175 <filename>linux-gnueabi</filename> the target ABI.