jiahao42 / LambCompiler

Compiler for a subset of ANSI C, base on virtual machine (unfinished)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LambCompiler v0.4

This is a simple compiler for a subset of ANSI C. By now, it can generate the pseudo-code without type-checking.

1. Before Compilation

See LambCompiler/src/config.h, make sure it is the desired configuration. The default configuration is Test Mode, which means it use the previously defined test data.

2. How to compile

Make sure you have installed GNU Make.

  • Run make under LambCompiler/ to compile the compiler, the executable file is under LambCompiler/bin

3. Usage

3.1 Normal Mode

  • ./compiler [filename]
  • ./compiler -v
  • ./compiler -h

3.2 Test Mode (no parameter needed)

  • ./compiler

4. Sample

About

Compiler for a subset of ANSI C, base on virtual machine (unfinished)

License:MIT License


Languages

Language:C++ 97.8%Language:C 1.2%Language:Makefile 0.9%Language:Shell 0.1%