Changes between Version 31 and Version 32 of Building/Preparation/Windows
- Timestamp:
- 12/17/12 01:39:18 (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Building/Preparation/Windows
v31 v32 27 27 and follow the download instructions for the '''mingw-get-inst''' installer. This is an easy to use installer for installing both MinGW and MSYS. Make sure when you run the installer that you '''select to install g++, MSYS and the MSYS Dev Kit'''. 28 28 29 3. '''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: 29 3. '''Set your `PATH`'''. You need to include at least 30 * `c:/MinGW/bin` (contains `autoconf` etc) 31 * `c:/MinGW/msys/1.0/bin` (contains `bash` etc) 32 * `c:/git/bin` (or wherever you installed git) 33 * `c:/Python27` (or wherever you installed Python) 34 * `c:/dev/llvm/bin` (or wherever you installed LLVM, if you got it) 35 36 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: 30 37 31 38 {{{ 32 # Add Git andPython to path33 export PATH=${PATH}: "/c/Program Files (x86)/Git/bin":/c/Python2739 # Add Python to path 40 export PATH=${PATH}:/c/Python27 34 41 35 # If you also grabbed LLVM 36 export PATH=${PATH}:/c/dev/llvm/bin 42 ...etc..etc... 37 43 }}} 38 44 39 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. 45 The Haskell platform installer should have already done the work needed to make GHC available on the path. 46 47 If you use a shell within Emacs, make sure your `SHELL` environment variable points to the `bash` in `c:/MinGW/msys/1.0/bin`. 40 48 41 49 4. '''Launch the shell''' by starting the 'MinGW Shell' which should be in your start menu.
