summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2017-02-17 21:01:03 +0800
committerruki <[email protected]>2017-02-17 21:01:03 +0800
commitd198f05685c745be00517f2838dadc4fa18e7808 (patch)
tree9cb311a33feca4b2463a0a43f26dddf200de642a
parenta388453e3d7a91cf2f17a1137197767521803071 (diff)
modify document and changelogs
-rw-r--r--CHANGELOG.md10
-rw-r--r--docs/README.md6
-rwxr-xr-xdocs/zh/README.md6
3 files changed, 19 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1c5874e4a..7a8e68048 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -24,6 +24,7 @@
* Remove install.bat script and provide nsis install package
* Rewrite [documents](http://www.xmake.io/#/home/) using [docute](https://github.com/egoist/docute)
* Improve `os.run`, `os.exec`, `os.cp`, `os.mv` and `os.rm` interfaces and support wildcard pattern
+* Optimize the output info and add `-q|--quiet` option
### Bugs fixed
@@ -31,6 +32,7 @@
* [#43](https://github.com/waruqi/xmake/issues/43): Avoid to generate unnecessary .xmake directory
* Add c++ stl search directories for android
* Fix compile error for rhel 5.10
+* Fix `os.iorun` bug
## v2.0.5
@@ -162,11 +164,11 @@
* Add apple platforms:watchos, watchsimulator
* Add architecture x64, amd64, x86_amd64 for windows
* Support switch static and share library
-* Add -j/--jobs argument for supporting multi-jobs
+* Add `-j/--jobs` argument for supporting multi-jobs
### Changes
-* Improve `add_files` api and support to add *.o/obj/a/lib files for merging static library and object files
+* Improve `add_files` api and support to add `*.o/obj/a/lib` files for merging static library and object files
* Optimize installation and remove some binary files
### Bugs fixed
@@ -218,6 +220,7 @@
* 移除install.bat脚本,提供windows nsis安装包支持
* 使用[docute](https://github.com/egoist/docute)重写[文档](http://www.xmake.io/#/zh/),提供更加完善的文档支持
* 增强`os.run`, `os.exec`, `os.cp`, `os.mv` 和 `os.rm` 等接口,支持通配符模式匹配和批量文件操作
+* 精简和优化构建输出信息,添加`-q|--quiet`选项实现静默构建
### Bugs修复
@@ -225,6 +228,7 @@
* [#43](https://github.com/waruqi/xmake/issues/43): 避免创建不必要的.xmake工程缓存目录
* 针对android版本添加c++ stl搜索目录,解决编译c++失败问题
* 修复在rhel 5.10上编译失败问题
+* 修复`os.iorun`返回数据不对问题
## v2.0.5
@@ -359,7 +363,7 @@
### 改进
-* 增强add_files接口,支持直接添加*.o/obj/a/lib文件,并且支持静态库的合并
+* 增强`add_files`接口,支持直接添加`*.o/obj/a/lib`文件,并且支持静态库的合并
* 裁剪xmake的安装过程,移除一些预编译的二进制程序
### Bugs修复
diff --git a/docs/README.md b/docs/README.md
index 2836cfc08..e668a4df9 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -254,6 +254,12 @@ For example:
$ xmake run --help
```
+#### How to suppress all output info?
+
+```bash
+$ xmake [-q|--quiet]
+```
+
#### How to do if xmake fails?
Please attempt to clean configuration and rebuild it first.
diff --git a/docs/zh/README.md b/docs/zh/README.md
index ed7d0905c..600af4f16 100755
--- a/docs/zh/README.md
+++ b/docs/zh/README.md
@@ -263,6 +263,12 @@ $ xmake [action|plugin] [-h|--help]
$ xmake run --help
```
+#### 怎样实现静默构建,不输出任何信息?
+
+```bash
+$ xmake [-q|--quiet]
+```
+
#### 如果xmake运行失败了怎么办?
可以先尝试清除下配置,重新构建下: