GNU编译器集合(GCC)是一个开源的编译器和库集合,支持C、C++、Objective-C、Fortran、Ada、Go和D编程语言。Linux内核、GNU实用程序和许多其他项目都是用GCC编译的。
本教程解释了如何在 Debian 10, Buster 上安装 GCC 编译器。同样的说明也适用于 Debian 9 和任何基于 Debian 的发行版。
$ sudo apt update
通过运行来安装 build-essential 包。
$ sudo apt install build-essential
你可能还想安装包括使用GNU/Linux进行开发的文档的手册页。
$ sudo apt-get install manpages-dev
为了确认GCC编译器已经成功安装,输入gcc --version。
$ gcc --version
在写这篇文章的时候,Debian 10软件库中默认的GCC版本是8.3.0。
gcc (Debian 8.3.0-6) 8.3.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
就这样了。你已经在你的Debian机器上成功安装了GCC。
$ nano hello.c
#include <stdio.h>
int main()
{
printf ("Hello World!\n");
return 0;
}
$ gcc hello.c -o hello
要执行该程序,请运行
$ ./hello
Hello World!
上一条: 如何在Ubuntu上卸载软件包