centoS安装sipp出现的错误

1. configure: error: no acceptable C compiler found in $PATH
主要是缺少C编译器

[root@localhost sipp-3.5.1]# yum -y install gcc

2.configure: error: ncurses library missing
主要缺少ncurses库
yum list|grep ncurses
yum -y install ncurses-devel
或yum install ncurses-devel

[root@localhost sipp-3.5.1]# yum list|grep ncurses
ncurses.i686                                5.9-14.20130511.el7_4      @anaconda
ncurses-base.noarch                         5.9-14.20130511.el7_4      @anaconda
ncurses-libs.i686                           5.9-14.20130511.el7_4      @anaconda
ncurses-devel.i686                          5.9-14.20130511.el7_4      base     
ncurses-static.i686                         5.9-14.20130511.el7_4      base     
ncurses-term.noarch                         5.9-14.20130511.el7_4      base     
[root@localhost sipp-3.5.1]# yum -y install ncurses-devel
已加载插件:fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirrors.huaweicloud.com
 * extras: mirrors.huaweicloud.com
 * updates: mirror.xtom.com.hk
正在解决依赖关系
--> 正在检查事务
---> 软件包 ncurses-devel.i686.0.5.9-14.20130511.el7_4 将被 安装
--> 解决依赖关系完成

依赖关系解决

============================================================================================================================================================================
 Package                                    架构                              版本                                                  源                                 大小
============================================================================================================================================================================
正在安装:
 ncurses-devel                              i686                              5.9-14.20130511.el7_4                                 base                              712 k

事务概要
============================================================================================================================================================================
安装  1 软件包

总下载量:712 k
安装大小:2.1 M
Downloading packages:
ncurses-devel-5.9-14.20130511.el7_4.i686.rpm                                                                                                         | 712 kB  00:00:00     
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  正在安装    : ncurses-devel-5.9-14.20130511.el7_4.i686                                                                                                                1/1 
  验证中      : ncurses-devel-5.9-14.20130511.el7_4.i686                                                                                                                1/1 

已安装:
  ncurses-devel.i686 0:5.9-14.20130511.el7_4                                                                                                                                

完毕!
[root@localhost sipp-3.5.1]# yum install ncurses-devel
已加载插件:fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.xtom.com.hk
 * extras: mirror.xtom.com.hk
 * updates: mirror.xtom.com.hk
软件包 ncurses-devel-5.9-14.20130511.el7_4.i686 已安装并且是最新版本
无须任何处理

  1. g++ 未找到
    安装C++编译器:yum install gcc-c++
[root@localhost sipp-3.5.1]# yum install gcc-c++

你可能感兴趣的:(Linux)