configure: running /bin/sh ./configure --disable-option-checking '--prefix=/usr/local/mingw-w64' '--host=x86_64-w64-mingw32' '--enable-lib64' '--disable-shared' '--enable-static' 'host_alias=x86_64-w64-mingw32' --cache-file=/dev/null --srcdir=.
时间: 2024-04-04 16:35:02 浏览: 84
这是一个命令行工具输出,表示正在运行configure脚本来配置当前项目。在这个输出中,一些重要的选项包括:
- "--disable-option-checking"表示禁用选项检查,即不检查configure脚本中指定的选项是否有效;
- "--prefix=/usr/local/mingw-w64"表示指定安装路径为/usr/local/mingw-w64;
- "--host=x86_64-w64-mingw32"表示指定目标系统为x86_64-w64-mingw32;
- "--enable-lib64"表示启用64位库;
- "--disable-shared"表示禁用共享库;
- "--enable-static"表示启用静态库;
- "host_alias=x86_64-w64-mingw32"表示指定host别名为x86_64-w64-mingw32;
- "--cache-file=/dev/null"表示禁用缓存文件;
- "--srcdir=."表示指定源代码目录为当前目录。
通过这些选项,configure脚本会根据目标系统和其他参数生成Makefile文件和config.h头文件,以便在后续的编译过程中使用。
相关问题
=== configuring in mingw-w64-crt (/home/climate/program/mingw-w64/mingw-w64-crt) configure: running /bin/sh ./configure --disable-option-checking '--prefix=/usr/local/mingw-w64' '--host=x86_64-w64-mingw32' '--enable-lib64' '--disable-shared' '--enable-static' 'host_alias=x86_64-w64-mingw32' --cache-file=/dev/null --srcdir=. checking for a BSD-compatible install... /usr/bin/install -c
这行信息表示 configure 脚本正在运行 "/bin/sh ./configure" 命令,以配置 Mingw-w64 C 运行库。其中的选项包括:
- "--disable-option-checking":禁用 configure 脚本的选项检查功能。
- "--prefix=/usr/local/mingw-w64":指定安装目录为 /usr/local/mingw-w64。
- "--host=x86_64-w64-mingw32":指定目标平台为 x86_64-w64-mingw32。
- "--enable-lib64":启用 64 位库。
- "--disable-shared":禁用共享库。
- "--enable-static":启用静态库。
- "host_alias=x86_64-w64-mingw32":指定主机平台为 x86_64-w64-mingw32。
- "--cache-file=/dev/null":指定缓存文件为 /dev/null。
- "--srcdir=.":指定源代码目录为当前目录。
接下来的检查是用于检查是否存在一个 BSD-compatible 的 install 命令,以便在安装库时使用。
./configure --prefix=/usr/local/mingw-w64 --host=x86_64-w64-mingw32 --enable-lib64 --disable-shared --enable-static checking whether to enable maintainer-specific portions of Makefiles... no checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for x86_64-w64-mingw32-strip... no checking for strip... strip checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
这是一个configure命令的输出,它正在检查构建环境是否合适,并为构建设置一些参数。在这个命令中,你设置了以下选项:
- `--prefix=/usr/local/mingw-w64`:这将设置安装R的路径为`/usr/local/mingw-w64`。
- `--host=x86_64-w64-mingw32`:这将设置编译的目标架构为`x86_64-w64-mingw32`,也就是Windows的64位架构。
- `--enable-lib64`:这将启用64位库。
- `--disable-shared`:这将禁用共享库的构建。
- `--enable-static`:这将启用静态库的构建。
其余的输出是configure命令在检查构建环境时输出的信息,比如是否有必要构建维护者特定的部分,是否有一个合适的安装程序等等。
阅读全文