-
下载安装程序:msys2-x86_64-20240507.exe
(可选)有关安装程序的更多信息,例如命令行选项或如何验证安装程序的校验和和签名,请参阅安装程序指南。
-
运行安装程序。安装 MSYS2 需要 64 位 Windows 10 或更新版本。
-
输入您想要的安装文件夹(NTFS 卷上的短 ASCII 路径,无重音符号、无空格、无符号链接、无替换或网络驱动器、无 FAT)。
-
完成后,单击“完成”。
-
现在 MSYS2 已为您准备就绪,并且将启动UCRT64 环境的终端。
-
您可能需要安装一些工具(如 mingw-w64 GCC)来开始编译项目。运行以下命令:
$ pacman -S mingw-w64-ucrt-x86_64-gcc
-
终端窗口将显示以下输出。按“Enter”继续:
resolving dependencies... looking for conflicting packages... Packages (15) mingw-w64-ucrt-x86_64-binutils-2.41-2 mingw-w64-ucrt-x86_64-crt-git-11.0.0.r216.gffe883434-1 mingw-w64-ucrt-x86_64-gcc-libs-13.2.0-2 mingw-w64-ucrt-x86_64-gmp-6.3.0-2 mingw-w64-ucrt-x86_64-headers-git-11.0.0.r216.gffe883434-1 mingw-w64-ucrt-x86_64-isl-0.26-1 mingw-w64-ucrt-x86_64-libiconv-1.17-3 mingw-w64-ucrt-x86_64-libwinpthread-git-11.0.0.r216.gffe883434-1 mingw-w64-ucrt-x86_64-mpc-1.3.1-2 mingw-w64-ucrt-x86_64-mpfr-4.2.1-2 mingw-w64-ucrt-x86_64-windows-default-manifest-6.4-4 mingw-w64-ucrt-x86_64-winpthreads-git-11.0.0.r216.gffe883434-1 mingw-w64-ucrt-x86_64-zlib-1.3-1 mingw-w64-ucrt-x86_64-zstd-1.5.5-1 mingw-w64-ucrt-x86_64-gcc-13.2.0-2 Total Download Size: 49.38 MiB Total Installed Size: 418.82 MiB :: Proceed with installation? [Y/n] [... downloading and installation continues ...]
-
现在您可以致电
gcc
来为 Windows 构建软件。$ gcc --version gcc.exe (Rev2, Built by MSYS2 project) 13.2.0
-
安装 MSYS2 后,它将通过 进行自我更新
pacman
,请参阅更新指南了解更多信息。
rust的cargo.toml下载依赖,出现ToolNotFound: Failed to find tool. Is `gcc.exe`错误
最新推荐文章于 2024-11-24 06:00:00 发布