在安装storm 依赖包 zeromq 时,报以下的错误
[hel2@l-owl1.plat.qa.bj1 ~/soft/zeromq-2.1.7]$ ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... no
checking how to create a ustar tar archive... gnutar
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/home/hel2/soft/zeromq-2.1.7':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details
中configure: error: no acceptable C compiler found in $PATH,上网查看了以下,发现是环境里没有安装gcc。
查看的方式: gcc -v
安装方式:yum install gcc
从以上日志来看,可能还缺少MAKE,不知道有没有影响。
经过确认是,configure没关系的,但make是做不了的。
需要使用 yum install make 安装
configure: error: Unable to find a working C++ compiler
说明是:系统没有安装g++,使用命令yum install gcc-c++安装g++
configure: error: cannot link with -luuid, install uuid-dev.
按照说明:应该执行
yum install uuid-devel
yum install libuuid-devel
安装 storm 的依赖包JZMQ 时,报以下的错误
错误:autogen.sh: error: could not find libtool. libtool is required to run autogen.sh.
安装:yum install libtool
相关推荐
在编译安装软件的时候,发现错误configure: error: *** A compiler with support for C++11 language features is required. 要支持C++11,必须升级到gcc4.7以上。
configure: error: no acceptable C compiler found in $PATH ------------------------ linux 中,安装,提示缺少其他一些组件,经过来回搜索与拷贝,GCC安装成功,所需文件有: libf2c-3.3.2-1.i386.rpm libstdc -devel...
编译安装软件的时候,发现错误configure: error: *** A compiler with support for C++11 language features is required. 原来是gcc版本太低了,我的版本是gcc version 4.6.3 想要支持C++11,必须升级到gcc4.8...
如编译报错提示:configure:3414: error: no acceptable C compiler found in $PATH yum -y install gcc ./configure && make && make install 安装完成后 [root@localhost rlwrap-0.42]# which rlwrap /usr/local/...
3. configure: error: Please reinstall the libcurl distribution -easy.h should be in /include/curl/ 解决方法: yum install curl-devel 此错误是由于缺少 curl-devel 库文件所引起的。curl-devel 库文件是 ...
There is no practical limit to the precision except the ones implied by the available memory in the machine GMP runs on. GMP has a rich set of functions, and the functions have a regular interface.
1. **错误:configure: error: No curses/termcap library found** 解决方案:在CentOS上,应运行`yum -y install ncurses-devel`;在Debian上,运行`apt-get install libncurses5-dev`。 2. **错误:configure: ...
在编译parted-3.2时,报错:configure: error: libdevmapper could not be found,找到device-mapper.1.02.28,并下了下来。 这个源码藏得有点深,分享出来给大家
9. configure: error: No X video output API found. Please install X11+Xv headers. 错误原因:缺少X11+Xv头文件。 解决方法:sudo apt-get install libxv-dev libx11-dev 10. configure: error: No GL/GLX API...
错误 configure: error: could not find library containing ...configure: error: no XML parser was found: expat or libxml 2.x required 解放方法: http://blog.csdn.net/cnaning/archive/2009/02/09/3870085.aspx
如果glib版本过低,那么升级到2.56.0或更高版本可能解决问题。如果glib没有安装,可以通过包管理器进行安装。 在确保依赖库都已准备就绪后,我们回到libmount-2.32的源代码包。在压缩包子文件列表中,我们看到的是...
记得在解决问题的过程中,要根据自己的具体操作系统和环境进行相应的调整。 此外,如果你在进行软件开发,特别是涉及到数据库操作时,了解如何与SQLite3交互是很有用的。SQLite3提供了丰富的命令行工具,可以用来...
### Apache2.4完整安装及解决configure: error: APR-util not found问题 #### 一、背景介绍 Apache HTTP Server(通常简称为Apache)是目前最流行的Web服务器软件之一,广泛应用于互联网上的各种网站和应用程序。...
sqlite3文件(用于解决安卓真机中sqlite3:not found的错误) http://blog.csdn.net/hust_twj/article/details/52212558
本升级包中包含openssh-8.1p1.tar.gz openssl-1.1.1b.tar.gz zlib-1.2.11.tar.gz等3个源码资源包。
5. **错误:configure: error: No curses/termcap library found** 解决:安装ncurses库及其开发文件,命令是`yum -y install ncurses ncurses-devel`。 6. **错误:configure: error: xml2-config not found** ...
开发板没有gdb,写程序老出错而且找不到问题在哪里。于是痛定思痛,决定移植一个gdb。 交叉编译器:arm-none-linux-gnueabi gdb依赖于ncurses,所以先移植ncurses: 下载ncurses-5.9 下载地址:...
解压: tar -zxvf lrzsz-0.12.20.tar.gz 编译、安装 cd lrzsz-0.12.20 ...备注:如果编译报错 error: no acceptable cc found in $PATH 则需要安装gcc编译器 推荐联网安装 yum install gcc gcc-c++ gcc-g77
问题1:`configure: error: no acceptable C compiler found in $PATH` 解决方法:这个错误意味着系统中没有可用的C编译器。要解决这个问题,你需要安装GCC及其依赖包,使用`yum -y install gcc`命令。 问题2:`...