OSX 10.8.4(Mountain Lion)中的./configure文件在哪里?


0

我正在建立 Cap'n Pro 在我的Mac上,安装说明让我在终端输入以下内容:

./configure CXX=$HOME/clang-3.2/bin/clang++

我查看我的用户文件夹,即〜/./ configure,但它不存在。我这样做了吗?我的./configure文件夹在哪里?我需要创建一个吗?

此外,是的,我有可见的隐形文件夹。

Answers:


3

configure 脚本(不是目录)是您应该下载的源代码存档的一部分( capnproto-c++-X.Y.Z.tar.gz )。

解压缩该存档时,请切换到顶级目录( capnproto-X-Y-Z )并运行configure命令。

$ cd [to where you downloaded the archive]
$ tar xzf capnproto-c++-X.Y.Z.tar.gz
$ cd capnproto-c++-X.Y.Z
$ ./configure CXX=$HOME/clang-3.2/bin/clang++

然后运行后续命令( makesudo make install )来自同一目录。

这是相当通用的 - 大多数基于autotool的构建工作都是这样的。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.