Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ubuntu Installation dependency to libmsgpack-dev #12

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Matching trail patterns reliably can be very tricky because of a large number of
### Requirements:

* Ubuntu / Debian Linux / OSX
* Debian packages `bash python (>=2.7) make python-ply jq libjudy-dev (>=1.0.5-5) libjson-c-dev libcmph-dev libc6-dev libjemalloc-dev`
* Debian packages `bash python (>=2.7) make python-ply jq libjudy-dev (>=1.0.5-5) libjson-c-dev libcmph-dev libc6-dev libjemalloc-dev libmsgpack-dev`
* C compiler, tested with `gcc` and `clang`.

On OSX, you'll need to install a few packages from `brew`:
Expand All @@ -82,7 +82,7 @@ Example:
./bin/trck -c myprogram.tr -o matcher-traildb
```

That will compile your program to a binary `matcher-traildb` that will dynamically linked to `libtraildb`. That binary accepts TrailDB paths as positional arguments and prints results in JSON format to stdout. You can also compile a static binary by using `--static` flag (currently Linux only).
That will compile your program to a binary `matcher-traildb` that will dynamically linked to `libtraildb`. This binary accepts TrailDB paths as positional arguments and prints results in JSON format to stdout. You can also compile to a static binary by using `--static` flag (currently Linux only).

You can specify program parameter values using `--params file.json`, JSON file should contain a dictionary specifying values for every parameter. See [Parameters](#parameters) section for more details.

Expand Down