Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 630 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 630 Bytes

Welcome to EL!

EL is an educational language runtime and programming language! We’re using it to show people how to use Eclipse OMR to build their own language runtime with a Just in Time (JIT) Compiler!

Getting started

1. Requirements

To get started with EL you will need the following:

  • git
  • build-essential
  • cmake (Minimum version 3.2.0)

2. Clone the repository and get the submodules

git clone --recursive https://github.com/charliegracie/EL.git

3. Build EL

cd EL \
mkdir build \
&& cd build \
&& cmake .. \
&& make