awtk/docs/mingw.md

19 lines
478 B
Markdown
Raw Normal View History

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