Comment installer gcc sur centos7 : entrez d'abord dans le répertoire racine du système et entrez la commande [[root@localhost ~]yum -y install gcc gcc-c++ autoconf make] puis terminez l'installation automatique en ligne et entrez ; les commandes pertinentes. C'est tout.
Comment installer gcc dans centos7 :
1. Installez gcc en ligne (configuration réseau requise)
Après avoir installé CentOS7 sur la machine virtuelle VMware Workstation, le système n'a pas de gcc. Entrez dans le répertoire racine du système [root@localhost ~] et entrez la commande :
[root@localhost ~]yum -y install gcc gcc-c++ autoconf make
pour installer automatiquement en ligne. Une fois terminé, entrez la commande :
[root@localhost ~]#gcc --help
Lorsque l'aide de la commande gcc apparaît, l'installation est correcte.
2. Application simple
Nous utilisons d'abord la commande gcc pour écrire un simple fichier c.
1. Entrez la commande :
[root@localhost ~]#vi helloworld.c //进入vi编辑器写一个helloworld的c文件。 #include<stdio.h> int main(void) { printf(“helloworld !\n”); } //写完按esc,接着按shift+:并输入wq保存退出
2. Entrez la commande :
[root@localhost ~]#gcc helloworld.c //这个命令程序生成默认文件a.out
Vous pouvez utiliser la commande suivante pour afficher :
[root@localhost ~]#find / -name a.out
3. Nous pouvons utiliser La commande suivante exécute ce fichier c :
[root@localhost ~]#gcc -o helloworld helloworld.c //-o 产生可执行的文件名字helloworld
4. Entrez la commande :
[root@localhost ~]#gcc -g helloworld.c -o helloworld // -g 能被gue调试
Entrez la commande :
[root@localhost ~]gcc -S helloworld.c //-S 产生汇编文件后停止编译,后缀名以.s结尾。
Nous pouvons utiliser l'éditeur vi pour afficher. le fichier d'assemblage :
[root@localhost ~]# vi helloworld.s
Entrez la commande :
[root@localhost ~]#gcc -E helloworld.c // -E 选项告诉编译器仅对文件进行预处理并输出到屏幕上
Tutoriels associés recommandés : tutoriel centos
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!