I\'m running Linux Mint 14 with qemu, qemu-user, and the gnueabi toolchain installed. I compiled test.c with arm-linux-gnueabi-gcc test.c -o test.
arm-linux-gnueabi-gcc test.c -o test
When I tr
$ export QEMU_LD_PREFIX=/usr/arm-linux-gnueabi
This works for me. It's basically the same thing as:
$ qemu-arm -L /usr/arm-linux-gnueabi/
You can add it to the ~/.bashrc file so you don't have to type it everytime you open the terminal.