0

我正在尝试从 Intel Mac OSX 10.7.4 x64 上的源代码安装 libming 0.4.2(我已经在 Intel Mac OSX 10.6 i386 上成功安装了它)但是当我尝试运行 ./configure 时它给了我以下错误(两者都有并且没有 sudo)

config.status: creating util/Makefile
config.status: creating util/ming-config
config.status: creating ming.spec
config.status: creating src/ming_config.h
config.status: src/ming_config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands
sed: config/ltmain.sh: No such file or directory
sed: config/ltmain.sh: No such file or directory
mv: rename libtoolT to libtool: No such file or directory
cp: libtoolT: No such file or directory
chmod: libtool: No such file or directory

当然在那之后 make install 失败了。:((已经安装了xcode和xcode命令行工具)

4

2 回答 2

2

这些命令可以工作(一步一步):

aclocal
glibtoolize --force
autoheader
autoconf
automake
./configure
make
make install 

libming 0.4.2 可能会出现这样的问题,因为它在 RC1 处停止。(尤其是 Intel Mac 参考:http://www.libming.org/Mac_OS_X_Installation)

尝试安装更高版本的 0.4.3 和 0.4.4。

于 2012-08-06T11:12:49.740 回答
0

以下说明/命令适用于 Mac OSX 10.7.4 x64。

 1. Install mac ports from http://www.macports.org/
 2. sudo port install automake
 3. sudo port install autoconf
 4. sudo port install libtool
 5. sudo port install intltoo 
 6. sudo port install pkgconfig
 7. sudo port install cmake
 8. glibtoolize --ltdl --force --copy
 9. autoreconf

 and then build your code using

 ./configure
 make
 make install
于 2012-08-07T05:04:06.507 回答