summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2025-02-13 23:29:01 +0800
committerruki <[email protected]>2025-02-13 23:29:01 +0800
commit900eb24cae747371b296962e09add22d8d9f95c1 (patch)
treee3ddf96c42c052be4a1dc743237e1b41ec606e61
parent86c6203b4602b92abb8cf8f6ed8d4143b6bd1f00 (diff)
update readme
-rw-r--r--README.md2
-rw-r--r--README_zh.md2
-rw-r--r--xmake/core/tool/toolchain.lua6
3 files changed, 9 insertions, 1 deletions
diff --git a/README.md b/README.md
index 25e3247d5..48011b2a9 100644
--- a/README.md
+++ b/README.md
@@ -249,6 +249,7 @@ hdk Harmony SDK
ti-c2000 TI-CGT C2000 compiler
ti-c6000 TI-CGT C6000 compiler
iararm IAR ARM C/C++ Compiler
+kotlin-native Kotlin Native Programming Language Compiler
```
## Supported languages
@@ -272,6 +273,7 @@ iararm IAR ARM C/C++ Compiler
* YASM
* MASM32
* Cppfront
+* Kotlin
## Features
diff --git a/README_zh.md b/README_zh.md
index ba8929c26..1ed1c4231 100644
--- a/README_zh.md
+++ b/README_zh.md
@@ -310,6 +310,7 @@ hdk Harmony SDK
ti-c2000 TI-CGT C2000 compiler
ti-c6000 TI-CGT C6000 compiler
iararm IAR ARM C/C++ Compiler
+kotlin-native Kotlin Native Programming Language Compiler
```
## 支持语言
@@ -333,6 +334,7 @@ iararm IAR ARM C/C++ Compiler
* YASM
* MASM32
* Cppfront
+* Kotlin
## 支持特性
diff --git a/xmake/core/tool/toolchain.lua b/xmake/core/tool/toolchain.lua
index 1085df198..e5a7626c2 100644
--- a/xmake/core/tool/toolchain.lua
+++ b/xmake/core/tool/toolchain.lua
@@ -454,7 +454,11 @@ function _instance:_description(toolkind)
nc = "the nim compiler",
ncld = "the nim linker",
ncsh = "the nim shared library linker",
- ncar = "the nim static library archiver"
+ ncar = "the nim static library archiver",
+ kc = "the kotlin native compiler",
+ kcld = "the kotlin native linker",
+ kcsh = "the kotlin native shared library linker",
+ kcar = "the kotlin native static library archiver",
}
self._DESCRIPTIONS = descriptions
end