1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 10:07:45 +03:00
mal/cpp
2016-02-24 00:33:20 -06:00
..
.gitignore c++11: step 0 2015-03-27 20:44:42 +11:00
Core.cpp cpp, haxe, rust: Fix (first nil) and (rest nil) 2016-02-03 21:23:48 -05:00
Debug.h Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +11:00
docker.sh c++11: step 0 2015-03-27 20:44:42 +11:00
Dockerfile Travis: add C++(cpp), factor and julia. 2015-10-06 18:28:46 -05:00
Environment.cpp Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +11:00
Environment.h c++11: step 6 2015-03-27 20:44:42 +11:00
Makefile awk-es6, Makefile: dist ruiles 2016-02-24 00:33:20 -06:00
MAL.h Don't pass an env to apply 2015-12-15 11:22:25 +11:00
Reader.cpp Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +11:00
ReadLine.cpp c++11: step 0 2015-03-27 20:44:42 +11:00
ReadLine.h c++11: step 0 2015-03-27 20:44:42 +11:00
README.md Add README.md 2015-03-27 20:44:43 +11:00
RefCountedPtr.h c++11: step 1 2015-03-27 20:44:42 +11:00
StaticList.h c++11: step 1 2015-03-27 20:44:42 +11:00
step0_repl.cpp c++11: step 0 2015-03-27 20:44:42 +11:00
step1_read_print.cpp Don't pass an env to apply 2015-12-15 11:22:25 +11:00
step2_eval.cpp Don't pass an env to apply 2015-12-15 11:22:25 +11:00
step3_env.cpp Don't pass an env to apply 2015-12-15 11:22:25 +11:00
step4_if_fn_do.cpp Don't pass an env to apply 2015-12-15 11:22:25 +11:00
step5_tco.cpp Don't pass an env to apply 2015-12-15 11:22:25 +11:00
step6_file.cpp Don't pass an env to apply 2015-12-15 11:22:25 +11:00
step7_quote.cpp Don't pass an env to apply 2015-12-15 11:22:25 +11:00
step8_macros.cpp Don't pass an env to apply 2015-12-15 11:22:25 +11:00
step9_try.cpp Don't pass an env to apply 2015-12-15 11:22:25 +11:00
stepA_mal.cpp awk-es6, Makefile: dist ruiles 2016-02-24 00:33:20 -06:00
String.cpp c++11: step 1 2015-03-27 20:44:42 +11:00
String.h c++11: step 0 2015-03-27 20:44:42 +11:00
Types.cpp Don't pass an env to apply 2015-12-15 11:22:25 +11:00
Types.h Don't pass an env to apply 2015-12-15 11:22:25 +11:00
Validation.cpp Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +11:00
Validation.h Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +11:00

Compilation notes

Mac OSX

This C++ implementation was developed on Mac OS X Yosemite, and uses the stock g++ compiler.

The only other requirement is GNU Readline, which I got from homebrew.

brew install readline

You may need to edit the READLINE path in the Makefile.

Ubuntu 14.10/15.04

This should compile on Ubuntu 14.10 and 15.04 with the following packages

apt-get install clang-3.5 libreadline-dev make

Docker

For everyone else, there is a Dockerfile and associated docker.sh script which can be used to make and run this implementation.

* build the docker image

    ./docker build

* make the MAL binaries:

    ./docker make

* run one of the implemenations:

    ./docker run ./stepA_mal

* open a shell inside the docker container:

    ./docker run