awtk/docs/mingw.md
2023-08-02 11:45:45 +08:00

19 lines
478 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 在 windows 下使用 gcc 编译 AWTK
在 windows 下,如果不想使用 Visual C++编译,也可以使用 gcc 编译。具体方法如下:
* 1.根据实际情况下载不同的版本的 [mingw](https://github.com/niXman/mingw-builds-binaries/releases)
* 2.解压后将 路径 ${实际目录}/mingw64/bin 添加到系统环境变量 PATH 中。
* 3.修改 awtk_config_common.py放开注释掉的 TOOLS_NAME。
```
TOOLS_NAME = 'mingw'
```
* 编译
```
scons
```