I'm in the middle of building a linux kernel on a beagleboard-xm (following this tutorial - I'm on step 10). I keep requiring a lot of cross-compilation tools with the prefix arm-linux-gnueabi
. The only one I've been able to install is arm-linux-gnueabi-gcc
, and now I need arm-linux-gnueabi-ld
.
My questions are:
- Do I need to use cross-compilation tools like this if I'm building the kernel on the same computer it will be running on?
- How do I install these cross-compilation tools? I have furiously googled
arm-linux-gnueabi
with very little results.