docs: Adds the dependencies of arm target

Close #2181
This commit is contained in:
Cheng Zhao 2015-07-13 15:26:35 -07:00
parent 83e8ceceda
commit e5f852d7d5

View file

@ -48,7 +48,15 @@ $ ./script/bootstrap.py -v
### Cross compilation
If you want to cross compile for `arm` or `ia32` targets, you can pass the
If you want to build for `arm` target, you should also install following
dependencies:
```bash
$ sudo apt-get install libc6-dev-armhf-cross linux-libc-dev-armhf-cross \
g++-arm-linux-gnueabihf
```
And to cross compile for `arm` or `ia32` targets, you should pass the
`--target_arch` parameter to the `bootstrap.py` script:
```bash