Skip to content

Latest commit

 

History

History
56 lines (38 loc) · 1.21 KB

mac.md

File metadata and controls

56 lines (38 loc) · 1.21 KB

Software dependencies

Install Homebrew

Install cmake

  • brew install cmake

The C Foreign Function Interface for Python CFFI module is also required if you wish to use the Python module.

  • brew install pkg-config libffi
  • sudo pip install cffi

In order to build the documentation doxygen is required.

  • brew install doxygen

Build Instructions

The default build is for 32 bit machines

  1. mkdir Release
  2. cd Release
  3. cmake ..
  4. make
  5. make test
  6. make doc
  7. sudo make install

The build can be configured using by setting flags on the command line i.e.

  1. cmake -DWORD_LENGTH=64 ..

Uninstall software

  • sudo make uninstall