unicorn/bindings/haskell
2017-01-10 20:59:14 +08:00
..
samples [haskell] Added testI386ContextSave function 2016-10-31 11:57:13 +01:00
src rename API uc_mem_free() to uc_free(). see #662 2017-01-10 20:59:14 +08:00
.gitignore
README.TXT
Setup.hs
unicorn.cabal Updates to Haskell bindings (#667) 2016-10-30 10:51:02 +08:00

This documentation explains how to install Haskell binding for Unicorn
from source.


0. Install the core engine as dependency

   Follow README in the root directory to compile & install the core.

   On *nix, this can simply be done by (project root directory):

        $ sudo ./make.sh install


1. Change directories into the Haskell bindings, build and install

    $ cd bindings/haskell
    $ cabal install


If you are installing into a sandbox, run `cabal sandbox init` before
installing Unicorn'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/SampleArm.hs