Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,20 @@ npm install

If you encounter errors, you most likely have not configured the dependencies correctly.

### Debug build

In order to track down possible bugs, you will need a debug buid so you
can get a backtrace with [gdb](http://www.gnu.org/software/gdb/) or
[lldb](http://lldb.llvm.org/).

In order to do so, follow these steps:

1. `BUILLD_ONLY=true npm install`, or `BUILLD_ONLY=true npm link .` if
you are into it
2. `rm -rf build/Release`
3. `node-gyp configure --debug`
4. `node-gyp build --debug`

### Installing dependencies: ###

#### Mac OS X ####
Expand Down