| 1 | =========================================
|
| 2 | INSTALLATION INSTRUCTIONS
|
| 3 | For Linux, Unix, BSD, and POSIX platforms
|
| 4 | =========================================
|
| 5 |
|
| 6 | Please see the file INSTALL-win.txt for Windows platform instructions.
|
| 7 |
|
| 8 | PREREQUISITES
|
| 9 | -------------
|
| 10 |
|
| 11 | You must satisfy one or more of these major categories:
|
| 12 |
|
| 13 | 1. GHC 6.6 or above (including cpphs) or Hugs
|
| 14 |
|
| 15 | 2. MissingH and its dependencies;
|
| 16 | see http://software.complete.org/missingh
|
| 17 |
|
| 18 | INSTALLATION
|
| 19 | ------------
|
| 20 |
|
| 21 | The first step is to generate your setup file. To do that, run:
|
| 22 |
|
| 23 | make setup
|
| 24 |
|
| 25 | Now, for GHC:
|
| 26 |
|
| 27 | ./setup configure
|
| 28 | ./setup build
|
| 29 | ./setup install
|
| 30 |
|
| 31 | Or, for Hugs:
|
| 32 |
|
| 33 | ./setup configure --hugs
|
| 34 | ./setup build
|
| 35 | ./setup install
|
| 36 |
|
| 37 | Optionally, to run the unit tests, you'll need to install HUnit. Then:
|
| 38 |
|
| 39 | make test-ghc6
|
| 40 |
|
| 41 | or:
|
| 42 |
|
| 43 | make test-hugs
|
| 44 |
|
| 45 | (More to come in this file)
|