diff options
| author | ruki <[email protected]> | 2022-05-15 18:09:47 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2022-05-15 18:09:47 +0800 |
| commit | acfd4ffdde7051c542840330a246e745268ab157 (patch) | |
| tree | 11073562c781a425af80405ee194bbb42a343617 | |
| parent | 665521577b810bae79b8ce1ae70a06c7287b667b (diff) | |
update readme
| -rw-r--r-- | README.md | 17 | ||||
| -rw-r--r-- | README_zh.md | 17 |
2 files changed, 34 insertions, 0 deletions
@@ -299,6 +299,7 @@ c51 Keil development tools for the 8051 Microcontroller Architecture * Quick toolchain management * A large number of expansion modules * Remote compilation support +* Distributed compilation support ## Supported Projects @@ -319,6 +320,22 @@ c51 Keil development tools for the 8051 Microcontroller Architecture * C++20 Modules * Linux Kernel Driver Modules +## Distributed Compilation + +- [x] Cross-platform support +- [x] Support for msvc, clang, gcc and cross-compilation toolchain +- [x] Support for building android, ios, linux, win, macOS programs +- [x] No dependencies other than the compilation toolchain +- [x] Support for build server load balancing scheduling +- [x] Support for real time compressed transfer of large files (lz4) +- [x] Almost zero configuration cost, no shared filesystem required, more convenience and security + +For more details see: [#274](https://github.com/xmake-io/xmake/issues/274) + +## Remote compilation + +For more details see: [#622](https://github.com/xmake-io/xmake/issues/622) + ## More Examples #### Debug and release profiles diff --git a/README_zh.md b/README_zh.md index c4d1ef8a6..377bd6703 100644 --- a/README_zh.md +++ b/README_zh.md @@ -306,6 +306,7 @@ c51 Keil development tools for the 8051 Microcontroller Architecture * 工具链的快速切换、定制化支持 * 丰富的扩展模块支持 * 远程编译支持 +* 分布式编译支持 ## 工程类型 @@ -326,6 +327,22 @@ c51 Keil development tools for the 8051 Microcontroller Architecture * C++20 模块 * Linux 内核驱动模块 +## 分布式编译 + +- [x] 跨平台支持 +- [x] 支持 msvc, clang, gcc 和交叉编译工具链 +- [x] 支持构建 android, ios, linux, win, macOS 程序 +- [x] 除了编译工具链,无任何其他依赖 +- [x] 支持编译服务器负载均衡调度 +- [x] 支持大文件实时压缩传输 (lz4) +- [x] 几乎零配置成本,无需共享文件系统,更加方便和安全 + +更多详情见:[#274](https://github.com/xmake-io/xmake/issues/274) + +## 远程编译 + +更多详情见:[#622](https://github.com/xmake-io/xmake/issues/622) + ## 更多例子 #### Debug 和 Release模式 |
