Tag: autoconf

autoconfconfiguration警告:/ usr / bin / file:没有这样的文件或目录

当我在Ubuntu操作系统(16)中使用我的configuration时,似乎没有问题。 我已经安装了autoconf工具和依赖项。 当我在Ubuntu(16或最新)运行相同的configuration文件问题是,我没有安装任何autotools。 我收到以下错误信息。 ./configure: line 7022: /usr/bin/file: No such file or directory 这对构build过程是无害的。 我只是想了解发生了什么。 configuration文件: 7022 case `/usr/bin/file conftest.o` in 7023 *32-bit*) 看起来我的docker没有/ usr / bin /文件。 哪个Ubuntu软件包包含文件实用程序。 find有关'/ usr / bin / file'的有用信息的问题是该文件是一个常见的术语,find更多的信息并不容易。 在我的系统与文件实用程序,我可以从文件的手册页获得以下信息: AVAILABILITY You can obtain the original author's latest version by anonymous FTP on ftp.astron.com in the direc‐ tory /pub/file/file-X.YZ.tar.gz. […]

重复“检查bsd兼容的安装…”步骤运行./configure在docker容器与debian jessie

在debian中运行./configure脚本时遇到问题:jesse docker容器。 当我在一个Ubuntu实例上交互式地运行它时,这个脚本就起作用了。 但是,当我作为docker构build脚本的一部分运行它,我只是得到以下内容 checking for a BSD-compatible install… checking for a BSD-compatible install… checking for a BSD-compatible install… checking for a BSD-compatible install… checking for a BSD-compatible install… 无休止地重复,直到容器用尽空间。 你知道这可能是什么原因吗? 这是docker文件 FROM debian:jessie MAINTAINER Michael Barton, mail@… RUN apt-get update -y RUN apt-get install -y wget RUN wget –quiet http://hku-idba.googlecode.com/files/idba-1.1.1.tar.gz -O /tmp/idba-1.1.1.tar.gz RUN apt-get […]

docker不能编译程序(可能未被macrosAC_MSG_ERRORmacros)

我正在尝试在Docker容器中编译下面的程序。 https://github.com/adaptivecomputing/torque 当试图运行autoconf我给错误“可能未定义的macros:AC_MSG_ERROR” 谷歌有几十个这个确切的错误的结果。 他们大多数是通过安装pkg-config或libtool-ltdl来解决的 从docker文件中可以看到,这两个软件包都已经安装。 FROM centos RUN yum install -y autoconf make autogen gcc gcc-c++ openssl-devel git libxml2-devel libtool libtool-ltdl RUN git clone git://github.com/adaptivecomputing/torque.git -b 4.2.6.1 /tmp/pbs_server RUN cd /tmp/pbs_server RUN autoconf RUN ./configure –with-debug RUN make -j4 RUN make install 这是运行docker build .时得到的错误docker build . Step 4 : RUN autoconf configure.ac:50: error: […]