同じネタでブログを書いてからほぼ2年が経過しているので、手順とか微妙に変わっていた。
環境
- Mac OS X Yosemite(10.10.5)
- VirtualBox 4.3.30
- Vagrant 1.7.2
手順
- 適当なboxを追加(今回はdebian-jessie)し、起動・ログイン
https://github.com/holms/vagrant-jessie-box/releases/download/Jessie-v0.1/Debian-jessie-amd64-netboot.box
- /etc/apt/sources.list.d/crosstools.listに以下を登録する
deb http://emdebian.org/tools/debian/ jessie main
- archive keyをインストールする
$ curl http://emdebian.org/tools/debian/emdebian-toolchain-archive.key | sudo apt-key add -
- crossbuild-essential-armhfをインストールする
$ sudo dpkg --add-architecture armhf
$ sudo apt-get update
$ sudo apt-get install crossbuild-essential-armhf
- 適当なソースをコンパイルしてみる
$ arm-linux-gnueabihf-gcc-4.9 hello.c
$ file a.out
a.out: ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, for GNU/Linux 2.6.32, BuildID[sha1]=a80116c58215afc0ae1709c213d40e630b2914bb, not stripped
6.動かしてみる場合はqemuが必要
$ sudo apt-get install qemu-user-static
$ qemu-arm-static ./a.out
hello world
参考URL