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

20
pages.zh/common/bison.md Normal file
View File

@@ -0,0 +1,20 @@
# bison
> GNU 解析器生成器。
> 更多信息:<https://www.gnu.org/software/bison/>.
- 编译一个 bison 定义文件:
`bison {{path/to/file.y}}`
- 以调试模式编译,这会导致生成的解析器将额外信息写入 `stdout`
`bison --debug {{path/to/file.y}}`
- 指定输出文件名:
`bison --output {{path/to/output.c}} {{path/to/file.y}}`
- 编译时详细输出:
`bison --verbose`