Skip to content

Commit

Permalink
README: add build instructions
Browse files Browse the repository at this point in the history
This should close #260.
  • Loading branch information
philips committed Jun 28, 2012
1 parent 3c834e1 commit 42923ed
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README.markdown
Expand Up @@ -31,6 +31,32 @@ end):listen(8080)
print("Server listening at http://localhost:8080/")
```

### Building from git

Grab a copy of the source code:

`git clone https://github.com/luvit/luvit.git --recursive`

To use the gyp build system run:

```
cd luvit
./configure
make -C out
tools/build.py test
./out/Debug/luvit
```

To use the Makefile build system (for embedded systems without python)
run:

```
cd luvit
make
make test
./build/luvit
```

## Debugging

Luvit contains an extremely useful debug API. Lua contains a stack which is used
Expand Down

0 comments on commit 42923ed

Please sign in to comment.