libtoolize: command not found

今天安装TFS出现报错如下:

[[email protected] tb-common-utils]# ./build.sh
autogen.sh: line 11: libtoolize: command not found
autogen.sh: line 12: aclocal: command not found
autogen.sh: line 13: autoconf: command not found
autogen.sh: line 14: automake: command not found
./build.sh: line 20: ./configure: 没有那个文件或目录
make: *** 没有指明目标并且找不到 makefile。 停止。
make: *** 没有规则可以创建目标“install”。 停止。
autogen.sh: line 10: libtoolize: command not found
autogen.sh: line 11: aclocal: command not found
autogen.sh: line 12: autoconf: command not found
autogen.sh: line 13: automake: command not found
./build.sh: line 34: ./configure: 没有那个文件或目录
make: *** 没有指明目标并且找不到 makefile。 停止。
make: *** 没有规则可以创建目标“install”。 停止。

解决办法:

yum -y install libtool
时间: 2024-10-01 04:44:16

libtoolize: command not found的相关文章

使用Cygwin在Windows下帮助编译众多C/C++库(附make: command not found,以及libtool.m4 and ltmain.sh have a version mismatch问题的解决方案)

之前为了使用一个库,都是去下载源码,然后根据开发者提供的README手动用GCC编译,一直不能使用Makefile感觉很蛋痛,比如最近使用的ZThread 还是怪自己以前过于依赖IDE 最近发现用Cygwin就可以使用诸如./configure, make这样的命令,感觉灰常欣喜,尝试去编译ZThread库(因为我发现虽然之前我用GCC手动编译了ZThread但是在使用的过程中,ZThread总是往控制台上打印诸多的DEBUG信息,想必是编译选项的问题,我又不知道到哪个头文件中去找#define

centos6.4安装varnish4.0

1. 安装好CentOS6.4系统后,安装更新 yum update 2. 下载varnish4.0安装包并解压 https://github.com/varnish/Varnish-Cache 放到/usr/local目录下 [[email protected] ~]# cd /usr/local/ [[email protected] local]# ls bin  etc  games  include  lib  lib64  libexec  sbin  share  src  Var

Centos7 安装codeblock( 转载)

1.安装gcc,需要c和c++两部分,默认安装下,CentOS不安装编译器的,在终端输入以下命令即可 yum install gcc yum install gcc-c++ 2.安装gtk2-devel,因为默认已经安装了正式产品需要的支持库,但是没有安装开发所需要的文档. yum install gtk2* 3. 安装wxGTK(或者wxwidgets),下载地址:http://www.wxwidgets.org/downloads/,下载的文件为:wxWidgets-3.0.1.tar.bz

wifidog交叉编译wifidog安装

不得不亲自进行交叉编译移植的时候,所碰到的一些问题. (1)下载源码这个可以到wifidog官方下载. (2)交叉编译环境这个需要提前准备好,也不多说了 (3)解压,并进入代码目录运行./autogen.sh可能会报错:libtoolize: command not found这个需要安装一下依赖的工具包:apt-get install libtool (4)然后执行./configure ./configure –host=mips-openwrt-linux –prefix=$PWD/ins

macox下编译snappy静态库

源码地址:https://github.com/google/snappy 下载 git clone https://github.com/google/snappy 编译 进入snappy源码目录,执行命令: ./autogen.sh 报错 "./autogen.sh: line 3: aclocal: command not found" 通过http://superuser.com/questions/657925/cygwin-rtorrent-installing-libto

Varnish 缓存

Centos 6.5  varnish 源码编译需要安装以下的依赖: 报错: ./autogen.sh ./autogen.sh: line 47: libtoolize: command not found 安装依赖:  yum install libtool* 报错:  configure: error: requires an X/Open-compatible Curses library 安装依赖:  yum install ncurses-devel -y 报错:  configur

wifidog交叉编译

本文主要记录在linux平台下,交叉编译wifidog并在openwrt平台上运行的过程.主要是针对wifidog源码被修改后, 不得不亲自进行交叉编译移植的时候,所碰到的一些问题. (1)下载源码 这个可以到wifidog官方下载. (2)交叉编译环境 这个需要提前准备好,也不多说了 (3)解压,并进入代码目录 运行./autogen.sh 可能会报错:libtoolize: command not found 这个需要安装一下依赖的工具包:apt-get install libtool (4

linux下varnsih4安装

Varnish是一种网站加速(反向代理,缓存服务器).可使用Varnish实现网站动静分离,负载均衡,页面缓存,请求过滤(简单防采集等). Varnish官网:https://www.varnish-cache.org/ 安装版本:Varnish Cache 4.0.3 下载地址:https://www.varnish-cache.org/content/varnish-cache-403 注意:Varnish网站有时会被墙. Git 下载: git clone https://github.c

CentOS7安装codeblocks(转载)

1.安装gcc,需要c和c++两部分,默认安装下,CentOS不安装编译器的,在终端输入以下命令即可 yum install gccyum install gcc-c++ 2.安装gtk2-devel,因为默认已经安装了正式产品需要的支持库,但是没有安装开发所需要的文档.yum install gtk2* 3. 安装wxGTK(或者wxwidgets),下载地址:http://www.wxwidgets.org/downloads/,下载的文件为:wxWidgets-3.0.1.tar.bz2,