linux_embarque:programmes
Table des matières
Divers scripts et programmes
Ici nous mettons divers codes qui servent dans la réalisation et l'apprentissage des outils pour le kit KITAT91. Ces codes peuvent être associés de commentaires
Programmes C
helloworld.c
Dans un répertoire de votre chois, comme par exemple ~/eldk_arm/mes_programmes, créer et éditer un fichier helloworld.c contenant :
#include <stdio.h> int main(){ printf("Hello World!\n"); return 0; }
Compilation pour i386 :
$gcc -o helloworld helloworld.c $./helloworld Hello World! $ file helloworld helloworld: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.6.8, dynamically linked (uses shared libs), not stripped
Compilation pour arm :
$arm-linux-gcc -o helloworld helloworld.c $ file helloworld helloworld: ELF 32-bit LSB executable, ARM, version 1 (SYSV), for GNU/Linux 2.6.14, dynamically linked (uses shared libs), not stripped
linux_embarque/programmes.txt · Dernière modification : 2022/09/28 12:15 de emeyer