You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
840 B
28 lines
840 B
3 years ago
|
This documentation explains how to install the Keystone Haskell bindings from
|
||
|
source.
|
||
|
|
||
|
1. Install the core Keystone Assembler as a dependency:
|
||
|
|
||
|
Follow docs/COMPILE.md in the root directory to compile & install the core.
|
||
|
2. Change into the Haskell bindings directory, build and install:
|
||
|
|
||
|
```
|
||
|
$ cd bindings/haskell
|
||
|
$ cabal install
|
||
|
```
|
||
|
|
||
|
If you are installing into a sandbox, run `cabal sandbox init` before
|
||
|
installing Keystone's dependencies.
|
||
|
|
||
|
If the build fails, install c2hs manually `cabal install c2hs` (note that this
|
||
|
will probably also require you to run `cabal install alex` and `cabal install
|
||
|
happy` as well). If you are NOT using a sandbox, ensure that `$HOME/.cabal/bin`
|
||
|
is on your PATH.
|
||
|
|
||
|
To build a sample (after having built and installed the Haskell bindings):
|
||
|
|
||
|
```
|
||
|
$ cd bindings/haskell
|
||
|
$ ghc --make samples/Sample.hs
|
||
|
```
|