Changes between Version 22 and Version 23 of Building/MacOSX
- Timestamp:
- 07/14/11 05:31:07 (23 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Building/MacOSX
v22 v23 1 1 = Building on MacOS X = 2 3 These instructions were last updated for GHC 7.2. 2 4 3 5 == Get the latest development tools == … … 10 12 11 13 == Building the distribution == 12 The following instructions are from Audrey Tang13 14 14 Install the 6.4.1 bindist, download both source 15 tarballs from http://haskell.org/ghc/download_ghc_66.html 16 and extract both; 15 Install a binary GHC distribution: either from a bindist (.tar.bz2) or from an installer (.pkg). 17 16 18 cd into ghc-6.6; sh configure; make; make install. 17 Download the source tarball from http://haskell.org/ghc/download.html 19 18 20 Then create mk/build.mk with one line: 19 Untar it and change into the directory it unpacks into. Then run 20 {{{ 21 ./configure 22 make 23 }}} 24 to build it. 21 25 22 BIN_DIST=1 23 24 then "make binary-dist", and tar the ghc-6.6/ directory produced. 26 You can then either install it, with 27 {{{ 28 make install 29 }}} 30 or make a binary distribution with 31 {{{ 32 make binary-dist 33 }}} 25 34 26 35 == Building installer packages ==
