博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos 下安装g++
阅读量:6159 次
发布时间:2019-06-21

本文共 1948 字,大约阅读时间需要 6 分钟。

在centos下安装g++,如果输入 yum install g++,那么将会提示:

 

[root@hugo hugo]# yum install g++Loaded plugins: fastestmirror, refresh-packagekit, securityLoading mirror speeds from cached hostfile * base: centos.ustc.edu.cn * extras: centos.ustc.edu.cn * updates: centos.ustc.edu.cnSetting up Install ProcessNo package g++ available.Error: Nothing to do

 

因为在centos下g++安装包名字叫做:gcc-c++

所以应该输入 yum install gcc-c++,即可。

 

[root@hugo hugo]# yum -y install gcc-c++Loaded plugins: fastestmirror, refresh-packagekit, securityLoading mirror speeds from cached hostfile * base: centos.ustc.edu.cn * extras: centos.ustc.edu.cn * updates: centos.ustc.edu.cnSetting up Install ProcessResolving Dependencies--> Running transaction check---> Package gcc-c++.x86_64 0:4.4.7-3.el6 will be installed--> Processing Dependency: libstdc++-devel = 4.4.7-3.el6 for package: gcc-c++-4.4.7-3.el6.x86_64--> Running transaction check---> Package libstdc++-devel.x86_64 0:4.4.7-3.el6 will be installed--> Finished Dependency ResolutionDependencies Resolved================================================================================ Package                 Arch           Version              Repository    Size================================================================================Installing: gcc-c++                 x86_64         4.4.7-3.el6          base         4.7 MInstalling for dependencies: libstdc++-devel         x86_64         4.4.7-3.el6          base         1.6 MTransaction Summary================================================================================Install       2 Package(s)Total download size: 6.3 MInstalled size: 20 MDownloading Packages:(1/2): gcc-c++-4.4.7-3.el6.x86_64.rpm                    | 4.7 MB     00:27     (2/2): libstdc++-devel-4.4.7-3.el6.x86_64.rpm            | 1.6 MB     00:08     --------------------------------------------------------------------------------Total                                           178 kB/s | 6.3 MB     00:36

 

 

转载地址:http://tqhfa.baihongyu.com/

你可能感兴趣的文章
asp.net开发mysql注意事项
查看>>
(转)Cortex-M3 (NXP LPC1788)之EEPROM存储器
查看>>
ubuntu set defult jdk
查看>>
[译]ECMAScript.next:TC39 2012年9月会议总结
查看>>
【Xcode】编辑与调试
查看>>
用tar和split将文件分包压缩
查看>>
[BTS] Could not find stored procedure 'mp_sap_check_tid'
查看>>
PLSQL DBMS_DDL.ALTER_COMPILE
查看>>
Activity生命周期
查看>>
高仿UC浏览器弹出菜单效果
查看>>
Ubuntu忘记密码,进不了系统的解决方法
查看>>
[原创]白盒测试技术思维导图
查看>>
<<Information Store and Management>> 读书笔记 之八
查看>>
Windows 8 开发之设置合约
查看>>
闲说HeartBeat心跳包和TCP协议的KeepAlive机制
查看>>
MoSQL
查看>>
Hibernate多对一外键单向关联(Annotation配置)
查看>>
《CLR via C#》读书笔记 之 方法
查看>>
设计模式:组合模式(Composite Pattern)
查看>>
ContentValues 和HashTable区别
查看>>