chore(build): 更新构建脚本和配置文件

- 修改justfile中的构建命令,将build-lexer重命名为build_lexer
- 添加count命令用于统计代码行数
- 更新docs命令依赖关系

feat(docs): 完善README文档内容

- 更新项目名称为Simple C Compiler,简化为`scc`
- 添加详细的构建说明,介绍cbuild构建工具
- 补充标准C语言文档链接
- 重新组织项目特点描述

refactor(tree_dump): 修复未使用的返回值警告

- 在tree_dump_pop_level函数中添加(void)强制转换
- 解决scc_vec_pop返回值未被使用的问题

chore(gitignore): 添加新的忽略文件类型

- 增加.dot和.svg文件类型的忽略规则
- 保持.gitignore文件结构清晰
This commit is contained in:
zzy
2026-01-30 14:18:07 +08:00
parent 135e874a76
commit c8bf98525d
4 changed files with 42 additions and 14 deletions

4
.gitignore vendored
View File

@@ -32,3 +32,7 @@ build
# external
external/
# dot file and svg file
*.dot
*.svg