Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 425 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 425 Bytes

elementary-compiler

Install

apt install gcc cmake flex bison

Clone

git clone https://github.com/bdintu/elementary-compiler
cd elementary-compiler

Build

mkdir build
cd build
cmake ..
make

Run

./simple ../example/hello.simple
gcc -no-pie hello.s -o hello
./hello