mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-10-30 20:17:57 +01:00
as: add Chinese translation
This commit is contained in:
parent
c4c8d0bd9d
commit
5e79a11ae1
1 changed files with 20 additions and 0 deletions
20
pages.zh/osx/as.md
Normal file
20
pages.zh/osx/as.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# as
|
||||
|
||||
> 便携式 GNU 汇编程序.
|
||||
> 主要用于汇编 `gcc` 的输出以供 `ld` 使用
|
||||
|
||||
- 汇编文件,将输出写入a.out:
|
||||
|
||||
`as {{文件.s}}`
|
||||
|
||||
- 将输出汇编到给定文件:
|
||||
|
||||
`as {{文件.s}} -o {{输出.o}}`
|
||||
|
||||
- 通过跳过空白和注释预处理来更快地生成输出. (应该只用于受信任的编译器):
|
||||
|
||||
`as -f {{文件.s}}`
|
||||
|
||||
- 在目录列表中包含一个给定路径, 以搜索 .include 指令中指定的文件:
|
||||
|
||||
`as -I {{目标文件夹}} {{文件.s}}`
|
Loading…
Reference in a new issue