# compiling-system-lab1 **Repository Path**: LouisJiangjing/compiling-system-lab1 ## Basic Information - **Project Name**: compiling-system-lab1 - **Description**: compiling-system-lab1 哈工大2022春编译系统实验一 - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-02-26 - **Last Updated**: 2022-06-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: 课程实验 ## README # compiling-system-lab1 ## 介绍 compiling-system-lab1 哈工大2022春编译系统实验一 ## 目录说明 doc ---文件、文档 src ---源代码 ast.c ---抽象语法树的实现,以及main函数所在 ast.h ---抽象语法树的头文件,其中有函数定义,变量定义 lexical.l ---flex所需文件 synatax.y ---bison所需文件 ## 编译代码 1. `bison -d syntax.y` 2. `flex lexical.l` 3. `gcc syntax.tab.c ast.c lex.yy.c -lfl -ly -o parser` 4. `./parser test.c`