1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 01:57:09 +03:00
mal/cpp
2015-10-06 18:28:46 -05:00
..
.gitignore c++11: step 0 2015-03-27 20:44:42 +11:00
Core.cpp Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +11: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 C++: add Makefile stats targets. 2015-03-28 11:53:30 -05:00
MAL.h c++11: step A 2015-03-27 20:44:43 +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 c++11: step 3 2015-03-27 20:44:42 +11:00
step2_eval.cpp Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +11:00
step3_env.cpp Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +11:00
step4_if_fn_do.cpp Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +11:00
step5_tco.cpp Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +11:00
step6_file.cpp Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +11:00
step7_quote.cpp Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +11:00
step8_macros.cpp Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +11:00
step9_try.cpp Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +11:00
stepA_mal.cpp Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +11: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 Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +11:00
Types.h Split ASSERT into ASSERT and MAL_CHECK/MAL_FAIL 2015-03-28 22:54:26 +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