安装gcc-c++时报错和原有gcc版本冲突

CentOS 6.7 安装 gcc-c++时报下面的错误:

成都创新互联成立于2013年,先为广平等服务建站,广平等地企业,进行企业商务咨询服务。为广平企业网站制作PC+手机+微官网三网同步一站式服务解决您的所有建站问题。

Resolving Dependencies
--> Running transaction check
---> Package gcc-c++.i686 0:4.4.7-11.el6 will be installed
--> Processing Dependency: libstdc++-devel = 4.4.7-11.el6 for package: gcc-c++-4.4.7-11.el6.i686
--> Processing Dependency: gcc = 4.4.7-11.el6 for package: gcc-c++-4.4.7-11.el6.i686
--> Running transaction check
---> Package gcc-c++.i686 0:4.4.7-11.el6 will be installed
--> Processing Dependency: gcc = 4.4.7-11.el6 for package: gcc-c++-4.4.7-11.el6.i686
---> Package libstdc++-devel.i686 0:4.4.7-11.el6 will be installed
--> Finished Dependency Resolution
Error: Package: gcc-c++-4.4.7-11.el6.i686 (c6-media)
          Requires: gcc = 4.4.7-11.el6
          Installed: gcc-4.4.7-16.el6.i686 (@base)
              gcc = 4.4.4-15.el6
              gcc = 4.4.7-16.el6
          Available: gcc-4.4.7-11.el6.i686 (c6-media)
              gcc = 4.4.7-11.el6
              gcc = 4.4.4-15.el6
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest

解决办法:将 gcc,cpp, libgomp 等等依赖先删除掉,然后重新直接安装 gcc-c++,让其自动安装它的正确版本的依赖的 gcc, cpp, libgomp:

[root@localhost ~]# yum install gcc-c++
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Install Process
Loading mirror speeds from cached hostfile
 * c6-media:
Resolving Dependencies
--> Running transaction check
---> Package gcc-c++.i686 0:4.4.7-11.el6 will be installed
--> Processing Dependency: libstdc++-devel = 4.4.7-11.el6 for package: gcc-c++-4.4.7-11.el6.i686
--> Processing Dependency: gcc = 4.4.7-11.el6 for package: gcc-c++-4.4.7-11.el6.i686
--> Running transaction check
---> Package gcc.i686 0:4.4.7-11.el6 will be installed
--> Processing Dependency: libgomp = 4.4.7-11.el6 for package: gcc-4.4.7-11.el6.i686
--> Processing Dependency: cpp = 4.4.7-11.el6 for package: gcc-4.4.7-11.el6.i686
--> Processing Dependency: libgomp.so.1 for package: gcc-4.4.7-11.el6.i686
---> Package libstdc++-devel.i686 0:4.4.7-11.el6 will be installed
--> Running transaction check
---> Package cpp.i686 0:4.4.7-11.el6 will be installed
---> Package libgomp.i686 0:4.4.7-11.el6 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

==========================================================================================================================================
 Package                              Arch                      Version                            Repository                      Size
==========================================================================================================================================
Installing:
 gcc-c++                              i686                      4.4.7-11.el6                      c6-media                      4.3 M
Installing for dependencies:
 cpp                                  i686                      4.4.7-11.el6                      c6-media                      3.4 M
 gcc                                  i686                      4.4.7-11.el6                      c6-media                      8.2 M
 libgomp                              i686                      4.4.7-11.el6                      c6-media                      135 k
 libstdc++-devel                      i686                      4.4.7-11.el6                      c6-media                      1.6 M

Transaction Summary
==========================================================================================================================================
Install      5 Package(s)

Total download size: 18 M
Installed size: 43 M
Is this ok [y/N]: y
Downloading Packages:
------------------------------------------------------------------------------------------------------------------------------------------
Total                                                                                                      21 MB/s |  18 MB    00:00
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing : libstdc++-devel-4.4.7-11.el6.i686                                                                                      1/5
  Installing : cpp-4.4.7-11.el6.i686                                                                                                  2/5
  Installing : libgomp-4.4.7-11.el6.i686                                                                                              3/5
  Installing : gcc-4.4.7-11.el6.i686                                                                                                  4/5
  Installing : gcc-c++-4.4.7-11.el6.i686                                                                                              5/5
Unable to connect to dbus
  Verifying  : gcc-c++-4.4.7-11.el6.i686                                                                                              1/5
  Verifying  : libgomp-4.4.7-11.el6.i686                                                                                              2/5
  Verifying  : gcc-4.4.7-11.el6.i686                                                                                                  3/5
  Verifying  : libstdc++-devel-4.4.7-11.el6.i686                                                                                      4/5
  Verifying  : cpp-4.4.7-11.el6.i686                                                                                                  5/5

Installed:
  gcc-c++.i686 0:4.4.7-11.el6

Dependency Installed:
  cpp.i686 0:4.4.7-11.el6      gcc.i686 0:4.4.7-11.el6      libgomp.i686 0:4.4.7-11.el6      libstdc++-devel.i686 0:4.4.7-11.el6

Complete!
[root@localhost ~]#

可以看到安装 gcc-c++ 成功了。

在CentOS 6.4中编译安装GCC 4.8.1 + GDB 7.6.1 + Eclipse 在CentOS 6.4中编译安装GCC 4.8.1 + GDB 7.6.1 + Eclipse

Ubuntu下Vim+GCC+GDB安装及使用 http://www.linuxidc.com/Linux/2013-01/78159.htm

Ubuntu���两个GCC版本切换 http://www.linuxidc.com/Linux/2012-10/72284.htm

CentOS6.5升级手动安装GCC4.8.2  http://www.linuxidc.com/Linux/2015-01/112595.htm

GCC 的详细介绍:请点这里
GCC 的下载地址:请点这里

本文永久更新链接地址:http://www.linuxidc.com/Linux/2015-11/124943.htm

网页标题:安装gcc-c++时报错和原有gcc版本冲突
网页链接:http://www.hantingmc.com/qtweb/news44/306994.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联