I've used Derek Molloy's great video tutorial at http://youtu.be/vFv_-ykLppo and Jan Axelson's excellent website

I’ve used Derek Molloy’s great video tutorial at http://youtu.be/vFv_-ykLppo and Jan Axelson’s excellent website at http://www.lvr.com/eclipse5.htm to cross-compile and remote-debug my Beagle Board Black. However, I’m struggling to resolve this warning in trying to remote-debug:
"Could not load shared library symbols for 2 libraries, e.g. /lib/libc.so.6. Use the “info sharedlibrary” command to see the complete listing. Do you need “set solib-search-path” or “set sysroot”?
Anybody resolved this problem in setting up their remote-debugging configuration on the BBB?

Two questions; one: does the app itself run fine on the beaglebone? Two: Is there some way you can edit the compiler switches passed to your cross compiler to add --sysroot ?

Not sure if this is the issue but if you’re running 64-bit Ubuntu you may be missing the 32-bit libraries. Try sudo
apt-get install ia32-libs
Another possible solution here: http://askubuntu.com/questions/189318/missing-lib-libc-so-6

It turns out that remote debugging works fine. I do still get these warning messages flashing by while the debugger starts or exits. Nevertheless, remote debugging over TCP within Eclipse works amazingly well… at least with my small Hello World C++ program so far.