hi everyone,
I am trying to debug a qt application using GDB(My pc is 64 bit).When i go for continue command it is giving an error like "Error while mapping shared library sections".
For a simple c code it is working fine.

Qt Code:
  1. [Bibhu@localhost ip_qsetting]$ /opt/eldk/usr/bin/arm-linux-gdb ip_qsetting
  2. GNU gdb Red Hat Linux (6.7-2rh)
  3. Copyright (C) 2007 Free Software Foundation, Inc.
  4. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
  5. This is free software: you are free to change and redistribute it.
  6. There is NO WARRANTY, to the extent permitted by law. Type "show copying"
  7. and "show warranty" for details.
  8. This GDB was configured as "--host=i686-pc-linux-gnu --target=arm-linux".
  9. The target architecture is set automatically (currently arm)
  10. ..
  11. (gdb) target remote 192.168.1.235:4000
  12. Remote debugging using 192.168.1.235:4000
  13. warning: Can not parse XML target description; XML support was disabled at compile time
  14. [New Thread 490]
  15. 0x400007c0 in ?? () from /opt/eldk/arm/lib/ld-linux.so.3
  16. (gdb) c
  17. Continuing.
  18. Error while mapping shared library sections:
  19. /opt/qt-4.6/build/lib/libQtGui.so.4: No such file or directory.
  20. Error while mapping shared library sections:
  21. /opt/qt-4.6/build/lib/libQtNetwork.so.4: No such file or directory.
  22. Error while mapping shared library sections:
  23. /opt/qt-4.6/build/lib/libQtCore.so.4: No such file or directory.
  24. Error while mapping shared library sections:
  25. /opt/qt-4.6/build/lib/libts-0.0.so.0: No such file or directory.
  26. Error while mapping shared library sections:
  27. /opt/qt-4.6/build/lib/ts/input.so: No such file or directory.
  28. Error while mapping shared library sections:
  29. /opt/qt-4.6/build/lib/ts/pthres.so: No such file or directory.
  30. Error while mapping shared library sections:
  31. /opt/qt-4.6/build/lib/ts/variance.so: No such file or directory.
  32. Error while mapping shared library sections:
  33. /opt/qt-4.6/build/lib/ts/dejitter.so: No such file or directory.
  34. Error while mapping shared library sections:
  35. /opt/qt-4.6/build/lib/ts/linear.so: No such file or directory.
To copy to clipboard, switch view to plain text mode 


/opt/qt-4.6/build/lib/libQtGui.so.4 : This is a soft link.I check this path and it is there.

Is there any soln ?
plz help me.