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 -pchecking whether to enable maintainer-specific portions of Makefiles... no
时间: 2024-04-04 12:35:34 浏览: 277
这是`configure`命令的输出,它正在检查构建环境是否合适,并为构建设置一些参数。在这个命令中,你设置了以下选项:
- `--enable-maintainer-specific`: 这个选项将启用维护者特定部分的Makefile,但输出显示你已经禁用了这个选项,因此不会启用维护者特定部分的Makefile。
- `--with-gmp`: 这个选项将启用GMP库的支持,但这个输出没有显示这个选项是否被启用。这可能是因为这个选项不是必需的,或者你已经在之前的输出中看到了相关的信息。
其余的输出是`configure`命令在检查构建环境时输出的信息,比如是否有必要构建维护者特定的部分,是否有一个合适的安装程序等等。
相关问题
./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命令在检查构建环境时输出的信息,比如是否有必要构建维护者特定的部分,是否有一个合适的安装程序等等。
checking whether to enable maintainer-specific portions of Makefiles... no
这是 `configure` 命令的输出,它正在检查构建环境是否合适,并为构建设置一些参数。在这个命令中,你设置了以下选项:
- `--enable-maintainer-specific`: 这个选项将启用维护者特定部分的Makefile,但输出显示你已经禁用了这个选项,因此不会启用维护者特定部分的Makefile。
其余的输出是 `configure` 命令在检查构建环境时输出的信息,比如是否有必要构建维护者特定的部分,是否有一个合适的安装程序等等。
阅读全文