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

adding notes on required haskell packages for hake #5

Open
wants to merge 1 commit 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
11 changes: 10 additions & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,15 @@ The following are required to build Barrelfish and its tools:
- older versions of the tree supported v6.10 or v6.12.2 with Parsec 2.1
- GHC v6.12.1 has a known bug and is unable to build our tools
- earlier versions of GHC are unsupported
* Cabal and the following Haskell packages:
- async
- bytestring-trie
- exceptions
- ghc-mtl
- ghc-paths
- haskell-src-exts < 1.18 (the newer versions have a different interface)
- parsec
- random

Our build system may not be very portable; if in doubt, try building on a
recent Debian or Ubuntu system, as these are what we use.
Expand All @@ -104,7 +113,7 @@ Building

$ mkdir build && cd build

1. Run ``hake.sh``, giving it the path to the source directory and target
2. Run ``hake.sh``, giving it the path to the source directory and target
architecture(s) ::

$ ../hake/hake.sh -s ../ -a x86_64
Expand Down