Wiko cink peak 2 : "Hello world" programme. Compile and run.

Voila comment compiler un programme sous wiko cink peak 2 sous Ubuntu par cross-compilation :)
No blabla -> show me ^_^

Testé sur Ubuntu 14.04.3 LTS

Installation et compilation :

Installation du package:

sudo apt-get install gcc-arm-linux-gnueabi

Source code:

vim helloworld.c

#include "stdio.h"

int main(void) {
  printf("Hello world !\n");
  return 0;
}

Compilation :

arm-linux-gnueabi-gcc helloworld.c --static -o helloworld

Envoi sur android et exécution :

Bien sur , il faut que vous connectez votre appareil à votre ordinateur.

Télécharger le sdk d'android , décompresser le .Puis,

cd android-sdk-linux/platform-tools/
./adb push /tmp/helloworld /data/local/tmp/
./adb shell
shell@android:/$ cd /data/local/tmp
shell@android:/data/local/tmp $ chmod 770 helloworld
shell@android:/data/local/tmp $ ./helloworld                                   
Hello world !


Yess!It's work !

Commentaires