Tag: 扭矩

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: […]