A LOLCODE interpreter written in C.
Go to file
Justin J. Meza 6762b72436 Merge pull request #41 from talonbragg/patch-1
Make readme look better
2017-04-13 14:43:55 -07:00
cmake added cmake folder 2011-12-31 20:56:23 -08:00
test Merge pull request #30 from 0x0dea/has-an-alternative-article 2015-08-30 15:38:24 -07:00
.gitignore Manually removed some of the rsync output that isnt file names 2017-04-11 18:17:33 -04:00
.travis.yml adding Travis CI configuration file 2015-04-12 16:29:59 -07:00
CMakeLists.txt started adding new error infrastructure 2012-03-24 11:58:04 -04:00
COPYING added GPLv3 2014-04-21 00:07:12 -04:00
Doxyfile updated Doxygen info 2012-12-26 12:46:07 -08:00
README.md Make readme look better 2017-04-13 12:32:42 -07:00
error.c adding unhandled string detection error type 2015-04-12 16:28:56 -07:00
error.h adding unhandled string detection error type 2015-04-12 16:28:56 -07:00
install.py fixed install script 2013-03-17 19:34:48 -04:00
interpreter.c fixing interpolated string assignment 2016-03-27 14:01:37 -07:00
interpreter.h relax numeric conversions from string 2015-08-15 19:43:05 -04:00
lci.png Added basic array functionality and cleaned up documentation. 2011-06-14 23:54:12 -07:00
lexer.c new error infrastructure added 2012-12-12 23:53:54 -05:00
lexer.h minor bookkeeping changes 2012-12-13 00:02:17 -05:00
main.c updating README and bumping version 2014-04-21 00:47:04 -04:00
parser.c Merge pull request #30 from 0x0dea/has-an-alternative-article 2015-08-30 15:38:24 -07:00
parser.h Merge pull request #30 from 0x0dea/has-an-alternative-article 2015-08-30 15:38:24 -07:00
tokenizer.c use long long integers instead of ints 2013-10-04 12:17:19 -04:00
tokenizer.h Merge pull request #30 from 0x0dea/has-an-alternative-article 2015-08-30 15:38:24 -07:00
unicode.c added support for Unicode v6.3 2013-12-19 13:35:59 -05:00
unicode.h minor bookkeeping changes 2012-12-13 00:02:17 -05:00

README.md

                # lci - a LOLCODE interpreter written in C

LICENSE

Copyright (C) 2010-2014 Justin J. Meza

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

ABOUT

lci is a LOLCODE interpreter written in C and is designed to be correct, portable, fast, and precisely documented.

- correct: Every effort has been made to test lci's conformance to the
      LOLCODE language specification. Unit tests come packaged with the lci
      source code.
- portable: lci follows the widely ported ANSI C specification allowing it
      to compile on a broad range of systems.
- fast: Much effort has gone into producing simple and efficient code
      whenever possible to the extent that the above points are not
      compromised.
- precisely documented: lci uses Doxygen to generate literate code
      documentation, browsable here.

This project's homepage is at http://lolcode.org. For help, visit http://groups.google.com/group/lci-general. To report a bug, go to http://github.com/justinmeza/lci/issues.

Created and maintained by Justin J. Meza justin.meza@gmail.com.

PREREQUISITES

  1. You must have CMake installed (www.cmake.org). a) If you're using a Linux distro with package managment CMake should be in your repositories.

  2. Python 2.7+ or Python 2.x with the argparse module installed.

INSTALLATION: THE EASY WAY ON LINUX OR MAC OSX

  1. run the script install.py. Note that

$ ./install.py -h

will display a list of relavent install options. For example, if I wanted to install lci to the directory "/home/kurtis/opt" I would run:

$ ./install.py --prefix="/home/kurtis/opt"

INSTALLATION: THE MORE INVOLVED WAY ON LINUX OR MAC OSX

  1. Configure lci using CMake. This can be as simple as opening up the terminal, navigating to the directory containing lci and typing:

$ cmake .

You can also provide any other argument to the CMake configuration process you'd like. To enable Memory testing turn the PERFORM_MEM_TESTS option on like so:

$ cmake -DPERFORM_MEM_TESTS:BOOL=ON .

You can also use the "ccmake" command or the CMake GUI if you prefer. See the cmake documentation for more details.

  1. Build the project:

$ make

  1. Install

$ make install

  1. (Optional) Build documentation:

$ make docs

  1. (Optional) Run tests:

$ ctest

INSTALLATION ON WINDOWS

(Note that the instructions were written from the point of view of Windows 7, but in practice, any modern version will work.)

  1. Add MinGW and Python to your PATH.
  • Start > right-click Computer > Properties > Advanced system settings

    Environment Variables....

  • Select the "PATH" variable and click "Edit...".

  • Add ";C:\MinGW\bin;C:\Python32" to the end.

  1. Open an Administrator shell
  • Start > All Programs > Accessories > right-click Command Prompt

    Run as administrator.

  1. Navigate to the project directory using the "cd" command, for example,

cd C:\Users%user%\Documents\lci

  1. run the script install.py. Note that

install.py -h

will display a list of relavent install options. For example, if I wanted to install lci to the directory "C:\Program Files\lci" I would run:

install.py --prefix="C:/Program Files/lci"

(notice that forward slashes are used to separate directories.)