diff options
| author | ruki <[email protected]> | 2020-08-30 11:21:50 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-08-30 11:21:50 +0800 |
| commit | 825867bd8870f118fd052d8a8407fce839e158ed (patch) | |
| tree | 85fd23b1f00e4022bbb0c8d075639ff976480670 | |
| parent | 739df73425412cab7c869183a927896a403f5d66 (diff) | |
update changelog
| -rw-r--r-- | CHANGELOG.md | 2 | ||||
| -rw-r--r-- | xmake/toolchains/ndk/load.lua | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b9431a2a..abd8f6851 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ * Improve CMake project generator * [#931](https://github.com/xmake-io/xmake/issues/931): Support to export packages with all dependences * [#930](https://github.com/xmake-io/xmake/issues/930): Support to download package without version list directly +* [#927](https://github.com/xmake-io/xmake/issues/927): Support to switch arm/thumb mode for android ndk ### Bugs fixed @@ -823,6 +824,7 @@ * 改进 CMake 工程文件生成器 * [#931](https://github.com/xmake-io/xmake/issues/931): 改进导出包,支持导出所有依赖包 * [#930](https://github.com/xmake-io/xmake/issues/930): 如果私有包定义没有版本定义,支持直接尝试下载包 +* [#927](https://github.com/xmake-io/xmake/issues/927): 改进android ndk,支持arm/thumb指令模式切换 ### Bugs修复 diff --git a/xmake/toolchains/ndk/load.lua b/xmake/toolchains/ndk/load.lua index 80a7f1bb5..31f9dc06d 100644 --- a/xmake/toolchains/ndk/load.lua +++ b/xmake/toolchains/ndk/load.lua @@ -317,6 +317,7 @@ function main(toolchain) -- init flags for target local target_on_xxflags = function (target) if arm32 then + -- @see https://github.com/xmake-io/xmake/issues/927 if target:values("ndk.arm_mode") == "arm" then return "-marm" else |
