linux系统下使用gcc编译c的代码,使用g++编译c++的代码
在虚拟机VMware Workstation 安装CentOS7后,系统是没有gcc和g++的。 进入系统根目录[root@localhost ~],输入命令:yum -y install gcc gcc-c++ autoconf make
,如果此时是root登录的话,需要前面加sudo**
首先,使用xshell连接虚拟机。在上一篇博文,成功配置了samba,此时我们在主机上进行连接,并且创建一个test文件夹,在test文件夹中创建一个main.cpp
# include <stdio.h>
int main(){
printf("hello,world!\n");
return 0;
}
g++编译:g++编译 main.cpp 源文件列表, -o helloworld:输出文件(output)
g++ main.cpp -o helloworld
// g++还可以编译多个源文件 g++ main.cpp other.cpp ‐o helloworld
程序运行,一定要加一个路径才能运行
./helloworld
运行成功:
由于对linux系统实在是不够了解, 出现了这样一个傻瓜问题:sudo: apt-get:找不到命令”的解决方法
原因在于:CentOS的软件安装工具不是apt-get,而是yum,使用yum命令代替apt-get即可。