adscript: add Chinese translation (#8539)

pull/1/head
Ethan Liu 2022-09-29 13:58:00 +08:00 committed by GitHub
parent 0fbe2488eb
commit 47ac632811
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# adscript
> 用于 Adscript 文件的编译器。
> 更多信息:<https://github.com/Amplus2/Adscript>.
- 将一个文件编译为一个对象文件:
`adscript --output {{路径/到/文件.o}} {{路径/到/输入文件.adscript}}`
- 编译并链接一个文件到一个独立的可执行文件:
`adscript --executable --output {{路径/到/文件}} {{路径/到/输入文件.adscript}}`
- 将文件编译成 LLVM IR 而不是本地机器码:
`adscript --llvm-ir --output {{路径/到/文件.ll}} {{路径/到/输入文件.adscript}}`
- 将一个文件交叉编译为一个其他 CPU 架构或操作系统的目标文件:
`adscript --target-triple {{i386-linux-elf}} --output {{路径/到/文件.o}} {{路径/到/输入文件.adscript}}`