Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sour-abh-raj/compiler-design

Programs to understand compiler design concepts.
https://github.com/sour-abh-raj/compiler-design

compiler-design flex lexical-analysis

Last synced: about 1 month ago
JSON representation

Programs to understand compiler design concepts.

Awesome Lists containing this project

README

        

# Compiler Design Programs

Programs to understand compiler design concepts.

## Run Locally

Go to the project directory

```bash
cd any-project
```

Install dependencies

```bash
main.exe
```

## Compile from source

Change directory to source and run flex
```bash
flex <.l file>
```

Build binary
```bash
gcc -o lex.yy.c
```

Run binary
```bash
main.exe
```

## License

[MIT](https://choosealicense.com/licenses/mit/)

## Authors

- [@Sour-abh-Raj](https://www.github.com/Sour-abh-Raj)