add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,16 @@
# llvm-as
> LLVM 中间表示(`.ll`)到 Bitcode`.bc`)的汇编器。
> 更多信息:<https://llvm.org/docs/CommandGuide/llvm-as.html>。
- 汇编一个 IR 文件:
`llvm-as -o {{path/to/out.bc}} {{path/to/source.ll}}`
- 汇编一个 IR 文件并在生成的 Bitcode 文件中包含模块哈希:
`llvm-as --module-hash -o {{path/to/out.bc}} {{path/to/source.ll}}`
-`stdin` 读取一个 IR 文件并进行汇编:
`cat {{path/to/source.ll}} | llvm-as -o {{path/to/out.bc}}`