Skip to content

Latest commit

 

History

History
39 lines (23 loc) · 972 Bytes

README.md

File metadata and controls

39 lines (23 loc) · 972 Bytes

Build Status GitHub

Lispy

An interpreted, Lisp-like language built in C.

Compiling

In the project root, run cmake . then make.

Troubleshooting

Cannot Find <editline/readline.h>

If the following error is encountered:

source/parsing.c:19:10: fatal error: editline/readline.h: No such file or directory #include <editline/readline.h>

The readline library needs to be installed.

On Ubuntu:

sudo apt-get install libedit-dev

/usr/bin/ld: cannot find -lreadline

If the following error is encountered:

/usr/bin/ld: cannot find -lreadline collect2: error: ld returned 1 exit status

On Ubuntu:

sudo apt-get install libreadline-dev