checking for sysroot... /usr/local/mingw-w64
时间: 2023-07-19 13:56:49 浏览: 174
这行信息表示 configure 脚本检查系统中是否存在 sysroot,并输出结果。sysroot 是一个目录,用于存放编译器和链接器在编译和链接时需要的头文件、库文件和其他依赖文件。在这里,"/usr/local/mingw-w64" 被认为是系统的 sysroot 目录,因此编译器和链接器将在这个目录中查找依赖文件。
相关问题
./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命令在检查构建环境时输出的信息,比如是否有必要构建维护者特定的部分,是否有一个合适的安装程序等等。
=== 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 命令,以便在安装库时使用。
阅读全文