Cross compilation Raspberry
From Eric
(Difference between revisions)
m (Created page with "Installation d'un cross compilateur pour Raspberry Pi : sudo apt-get install git git clone https://github.com/raspberrypi/tools export PATH=~/Tmp/tools/arm-bcm2708/arm-bcm...") |
m |
||
Line 1: | Line 1: | ||
- | Installation d'un cross compilateur pour Raspberry Pi : | + | Installation d'un cross compilateur pour Raspberry Pi sous Linux (Ubuntu) : |
sudo apt-get install git | sudo apt-get install git | ||
Line 6: | Line 6: | ||
arm-bcm2708hardfp-linux-gnueabi-gcc a.c | arm-bcm2708hardfp-linux-gnueabi-gcc a.c | ||
scp a.out pi@192.168.0.40:a.out | scp a.out pi@192.168.0.40:a.out | ||
+ | |||
+ | Sur Windows,j'utilise Yagarto. |
Latest revision as of 16:52, 7 December 2014
Installation d'un cross compilateur pour Raspberry Pi sous Linux (Ubuntu) :
sudo apt-get install git git clone https://github.com/raspberrypi/tools export PATH=~/Tmp/tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin:$PATH arm-bcm2708hardfp-linux-gnueabi-gcc a.c scp a.out pi@192.168.0.40:a.out
Sur Windows,j'utilise Yagarto.