Hello,
In his book "Exploring BeagleBone", Derek Molloy provides example of executing of the source code that built on host machine using cross toolchain. For that QEMU emulator must be installed on host machine.
In terminal it works fine when a source is built with -static option:
pavel@ALABAMA:~/bbb_cross_toolchain_code$ arm-linux-gnueabihf-g++ -static testcross.cpp -o testcross
pavel@ALABAMA:~/bbb_cross_toolchain_code$ ./testcross
Testing cross compilation for armhf
pavel@ALABAMA:~/bbb_cross_toolchain_code$
But in Eclipse it doesn't work although I added -static in cross-compiler options.


Any comments ?
Thanks.