./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
时间: 2024-04-04 14:35:38 浏览: 129
mingw64-x86-64 pthread和相关库
这是一个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命令在检查构建环境时输出的信息,比如是否有必要构建维护者特定的部分,是否有一个合适的安装程序等等。
阅读全文