当前位置:   article > 正文

centos7 yum安装 c c++ gcc gcc-c++_yum c++

yum c++

gcc (GNU Compiler Collection)是Linux下最主要的编译工具,GCC不仅功能非常强大,结构也非常灵活。它可以通过不同的前端模块来支持各种语言,如Java、Fortran、Pascal、Modula-3和Ada。

在centos下,可以在联网状态下在线yum安装GCC,但是此种方式安装的GCC是4.8.5版本的,有时候已经不能满足需要。因此还需在此基础上进行升级。截止目前已经有5.0以上的最新版本了,GCC 4.8 开始全面支持C 11和C++ 11的新特性。

先查看下CentOS系统有没有安装GCC与G++。

打开终端输入gcc -v或者:g++ -v

显示没有安装,下面开始安装。

使用yum安装gcc与g++

在有网络连接条件下进行分别执行如下命令:

安装gcc、c++编译器以及内核文件

 yum -y install gcc gcc-c++ kernel-devel

输出:

  1. 已安装:
  2.   gcc.x86_64 0:4.8.5-28.el7_5.1              gcc-c++.x86_64 0:4.8.5-28.el7_5.1 
  3.   kernel-devel.x86_64 0:3.10.0-862.14.4.el7
  4. 作为依赖被安装:
  5.   glibc-devel.x86_64 0:2.17-222.el7                                            
  6.   glibc-headers.x86_64 0:2.17-222.el7                                          
  7.   kernel-headers.x86_64 0:3.10.0-862.14.4.el7                                  
  8.   libstdc++-devel.x86_64 0:4.8.5-28.el7_5.1                                   
  9. 作为依赖被升级:
  10.   cpp.x86_64 0:4.8.5-28.el7_5.1        libgcc.x86_64 0:4.8.5-28.el7_5.1      
  11.   libgomp.x86_64 0:4.8.5-28.el7_5.1    libstdc++.x86_64 0:4.8.5-28.el7_5.1   

​如果没有安装make 则安装

yum install make

查看下,默认已经安装好了。

  1. [linuxidc@localhost linuxidc.com]$ make -v
  2. GNU Make 3.82
  3. Built for x86_64-RedHat-linux-gnu
  4. Copyright (C) 2010  Free Software Foundation, Inc.
  5. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
  6. This is free software: you are free to change and redistribute it.
  7. There is NO WARRANTY, to the extent permitted by law.

验证安装是否成功

  1. [linuxidc@localhost linuxidc.com]$ gcc -v
  2. 使用内建 specs。
  3. COLLECT_GCC=gcc
  4. COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper
  5. 目标:x86_64-redhat-linux
  6. 配置为:../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
  7. 线程模型:posix
  8. gcc 版本 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC)
  1. [linuxidc@localhost linuxidc.com]$ g++ -v
  2. 使用内建 specs。
  3. COLLECT_GCC=g++
  4. COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper
  5. 目标:x86_64-redhat-linux
  6. 配置为:../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
  7. 线程模型:posix
  8. gcc 版本 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC)

​​​​​​​​

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号