[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[microblaze-uclinux] more debugging problems, resent from gmail
- To: microblaze-uclinux <microblaze-uclinux@xxxxxxxxxxxxxx>
- Subject: [microblaze-uclinux] more debugging problems, resent from gmail
- From: "Westover Scientific" <mlistwsi@xxxxxxxxx>
- Date: Mon, 30 Apr 2007 15:44:17 -0700
- Dkim-signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=cADapDDkeSMok+1HXTYtrWke/LqpsPcrxEHicbvdPfqpgvZ8/EBkGiJwkDim9m6REUNdENNTuzt6r6pV5afi6fonV99gUmdPyHzCSPqEjRRzKY9sxM9BHPBPFQVClzZvJBMgHemoF5kSuBiwVTUtMOt3dF3TnrC4GHG/soZBFV4=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=jNTqlXJ2IFrwMBlBcEnwKDCCgJfAK0Farw/7drDBNDT6/BOPxlU1MINoSf2M6YYekH50bo7ef4e9vkMtE1pWFTBcyue3t5YIPonaU3tPmWMWqsyVyKzuJsCBWGOJVBX3+GZE0Hsq90UCANCggMzer/wWQ7kQlorP1yfneFHkvB8=
- Reply-to: microblaze-uclinux@xxxxxxxxxxxxxx
- Sender: owner-microblaze-uclinux@xxxxxxxxxxxxxx
The gdb debugger, as invoked by mb-uclinux-gdb, seems to have curious pathing. For instance, when stepping into a destructor
it paths out to:
operator delete(void*) (ptr=0x2494ee18)
at /mnt/home/jwilliam/PetaLogix/microblaze-toolchain-sources/srcs/gcc/libstdc++-v3/libsupc++/del_op.cc:39
39
/mnt/home/jwilliam/PetaLogix/microblaze-toolchain-sources/srcs/gcc/libstdc++-v3/libsupc++/del_op.cc:
No such file or directory.
in /mnt/home/jwilliam/PetaLogix/microblaze-toolchain-sources/srcs/gcc/libstdc++-v3/libsupc++/del_op.cc
I would have thought it should be somewhere in my petalinux rather than referring to John's non-existent account.
Thanks,
Larry
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; full gdb session
[rystrom@localhost Debug]$ mb-uclinux-gdb -nw HDChecker.gdb
GNU gdb 5.3Xilinx EDK 8.2 Build EDK_Im.14
Copyright 2002 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "--host=i686-pc-linux-gnu --target=microblaze"...
(gdb) target remote 192.168.1.11:1234
Remote debugging using 192.168.1.11:1234
0x24800044 in _stext ()
(gdb) break main
Breakpoint 1 at 0x248a2878: file ../Main.cpp, line 14.
(gdb) n
Single stepping until exit from function _stext,
which has no line number information.
Breakpoint 1, main (argc=0, argv=0x0) at ../Main.cpp:14
14 IImageVPAExPlusPtr pvpaInspect = CImage::New();
(gdb) s
CImage::New() () at ../Image.cpp:60
60 return pResult;
(gdb) s
61 }
(gdb) s
operator delete(void*) (ptr=0x2494ee18)
at /mnt/home/jwilliam/PetaLogix/microblaze-toolchain-sources/srcs/gcc/libstdc++-v3/libsupc++/del_op.cc:39
39
/mnt/home/jwilliam/PetaLogix/microblaze-toolchain-sources/srcs/gcc/libstdc++-v3/libsupc++/del_op.cc:
No such file or directory.
in /mnt/home/jwilliam/PetaLogix/microblaze-toolchain-sources/srcs/gcc/libstdc++-v3/libsupc++/del_op.cc
(gdb)