centos系统上手动编译mingw64
时间: 2024-02-04 16:22:27 浏览: 78
在 CentOS 上手动编译 Mingw-w64 可以参照以下步骤:
1. 安装必要的工具和依赖项:
```
sudo yum install wget git gcc make autoconf automake patch libtool gettext texinfo bison flex pkgconfig
```
2. 下载 Mingw-w64 源代码:
```
git clone https://github.com/mirror/mingw-w64.git
```
3. 进入 Mingw-w64 源代码目录并运行 configure 脚本:
```
cd mingw-w64
./configure --prefix=/usr/local/mingw-w64 --enable-threads=posix --disable-multilib --with-system-zlib
```
这个命令将编译 Mingw-w64 并将其安装到 /usr/local/mingw-w64 目录中。它还启用了 POSIX 线程支持,并禁用了多库编译和系统 zlib 支持。
4. 运行 make 命令来编译源代码:
```
make
```
5. 运行 make install 命令来安装 Mingw-w64:
```
sudo make install
```
6. 最后,将 Mingw-w64 的 bin 目录添加到 PATH 环境变量中,以便在命令行中使用 Mingw-w64 工具链:
```
export PATH=$PATH:/usr/local/mingw-w64/bin
```
如果需要长期使用它,可以将此行添加到 /etc/profile 文件中。
这些步骤可能会因为不同的操作系统或版本而有所不同,因此在编译之前,请务必仔细查阅 Mingw-w64 的文档。
阅读全文