Changes between Version 22 and Version 23 of Building/Preparation/Windows
- Timestamp:
- 11/18/11 01:39:01 (18 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Building/Preparation/Windows
v22 v23 1 1 = Setting up a Windows system for building GHC = 2 2 3 Installing the following will get you a working build environment with MSYS (alternatively, [wiki:Building/Windows/Cygwin install Cygwin]). For your convenience we've cached a working set of build tools that you can download. Note: we recommend not installing anything in a directory that contains spaces.3 Installing the following will get you a working build environment with MSYS. The instructions are current for GHC 7.2. An alternatively method for windows is to build GHC, [wiki:Building/Windows/Cygwin using Cygwin]). Using MSYS is the preferred approach though. 4 4 5 * First install a recent stable version of [http://www.haskell.org/ghc/download.html GHC].5 1. We don't recommend installing anything into a directory path that contains spaces. 6 6 7 * Install MSYS: 8 * [http://www.haskell.org/ghc/tools/Win32/MSYS-1.0.11.exe] (originally from http://sourceforge.net/projects/mingw/files/ under "MSYS Base System") 9 * [http://www.haskell.org/ghc/tools/Win32/msysDTK-1.0.1.exe] (originally from http://sourceforge.net/projects/mingw/files/ under "MSYS Supplementary Tools") 10 * [http://www.haskell.org/ghc/tools/Win32/msysCORE-1.0.11-bin.tar.gz] (originally from http://sourceforge.net/projects/mingw/files/ under "MSYS Base System") (this is a tar file, which you have to unpack in `c:/msys/1.0`, or wherever you installed MSYS. Note that you can't do that using an MSYS shell, because you can't overwrite the files in use, so make a copy of `c:/msys/1.0`, unpack it there, and then rename the copy back to `c:/msys/1.0`). 7 2. You will need to install the following tools: 11 8 12 * Install [http://www.python.org/download/releases/ Python] (version 2.6.2 is a good choice. 2.6.1 causes a problem with the test suite, and we don't support 3.x at this time). 9 * [http://hackage.haskell.org/platform/ Haskell Platform] 10 * [http://git-scm.com/ Git] 11 * [http://python.org/ Python] (Version 2.7 is a good choice, we don't support version 3.x at this time) 13 12 14 The next three are just zip files, you can unpack them wherever you like, but you need to ensure that the programs can be found on your `PATH`. I usually put all these in `c:/tools` (NB. don't put them anywhere in `c:/msys`, that's special). 13 3. You will need to install the MinGW and MSYS tools: 15 14 16 * Install Happy: [http://www.haskell.org/ghc/tools/Win32/happy-1.17.zip] 17 * Install Alex: [http://www.haskell.org/ghc/tools/Win32/alex-2.2.zip] 18 * Install Git: [http://git-scm.com/] 15 * [http://www.mingw.org/ MinGW with MSYS] 19 16 20 Now set your `PATH`. We recommend doing this by creating a file `.profile` in your home directory (by default `c:/msys/1.0/home/<username>`). The contents of your `.profile` should be something like this: 17 MinGW provides a windows version of GCC while MSYS provides a minimal UNIX environment (e.g bash, make... ect). The website for MinGW is a little confusing, go to the [http://www.mingw.org/wiki/Getting_Started getting started] page and follow the download instructions for the 'mingw-get-inst' installer. This is an easy to use single executable for installing both MinGW and MSYS, make sure when you run it that you select to install MSYS and the MSYS Dev Kit. 18 19 4. Launch the shell by starting the 'MinGW Shell' which should be in your start menu. 20 21 5. Set your `PATH`. We recommend doing this by creating a file `.profile` in your home directory (by default `c:/MinGW/msys/1.0/home/<username>`). The contents of your `.profile` should be something like this: 21 22 22 23 {{{ 23 PATH=/c/mingw/bin:/c/ghc/ghc-6.10.1/bin:/usr/bin:/bin:/c/tools:/c/Python26:/c/windows/system32 24 # Add Git and Python to path 25 export PATH=${PATH}:/c/Git/bin:/c/Python27 24 26 }}} 25 27 26 Modify the above according to where you installed things, and change the GHC version appropriately.28 Modify the above according to where you installed Git and Python. The Haskell platform installer should have already done the work needed to make GHC available on the path. 27 29 28 === Disable realtime virus-scanning for your build === 30 6. You should now have a working environment for getting the source for GHC and building it! 31 32 == Disable realtime virus-scanning for your build == 29 33 30 34 Realtime virus scanners are prone to causing weird build failures, typically "permission denied" errors that go away when the build is restarted. The best way to avoid these problems is to exclude the directory containing your GHC build from realtime virus scanning, if your scanner supports excluding particular directories. You probably also want to exclude directories in which temporary files are stored, which by default is `C:/Users/<user>/Local Settings/Temp` on Windows Vista and later, `C:/Documents and Settings/<user>/Local Settings/Temp` on Windows XP and older, or `C:/Temp`. 31 35 32 == = Building documentation on Windows ===36 == Building documentation on Windows == 33 37 34 38 Building GHC's documentation is optional, but in order to build it in Windows you must currently use Cygwin (there isn't a working !DocBook toolchain on MSYS as far as we know). 35 39 36 In the Cygwin installer, just install the complete {{{Doc}}} category. You 37 may have to help {{{configure}}} a little bit: Set the 38 environment variables {{{XmllintCmd}}} and 39 {{{XsltprocCmd}}} to the paths of the Cygwin executables 40 {{{xmllint}}} and {{{xsltproc}}}, 41 respectively, and set {{{fp_cv_dir_docbook_xsl}}} to the path 42 of the directory where the XSL stylesheets are installed, 43 e.g. {{{c:/cygwin/usr/share/docbook-xsl}}}. 40 In the Cygwin installer, just install the complete {{{Doc}}} category. You may have to help {{{configure}}} a little bit: Set the environment variables {{{XmllintCmd}}} and {{{XsltprocCmd}}} to the paths of the Cygwin executables {{{xmllint}}} and {{{xsltproc}}}, respectively, and set {{{fp_cv_dir_docbook_xsl}}} to the path of the directory where the XSL stylesheets are installed, e.g. {{{c:/cygwin/usr/share/docbook-xsl}}}. 44 41 45 If you want to build HTML Help, you have to install the 46 [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/htmlhelp/html/hworiHTMLHelpStartPage.asp HTML Help SDK], 47 too, and make sure that {{{hhc}}} is in your {{{PATH}}}. 42 If you want to build HTML Help, you have to install the [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/htmlhelp/html/hworiHTMLHelpStartPage.asp HTML Help SDK], tool, and make sure that {{{hhc}}} is in your {{{PATH}}}.
