diff options
author | simonpj <unknown> | 2005-10-11 13:28:49 +0000 |
---|---|---|
committer | simonpj <unknown> | 2005-10-11 13:28:49 +0000 |
commit | ed3d72b5eaac2c139fb5923bd60006e04d3ed3a2 (patch) | |
tree | fe17c01a18b434268067c04a85b0e9b280e810d5 /docs | |
parent | 74f4d30833166b780b708b161b03290bd0c8973c (diff) | |
download | haskell-ed3d72b5eaac2c139fb5923bd60006e04d3ed3a2.tar.gz |
[project @ 2005-10-11 13:28:49 by simonpj]
Small fixes to the Win32 build log
Diffstat (limited to 'docs')
-rw-r--r-- | docs/building/building.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/building/building.xml b/docs/building/building.xml index 99513e46e7..ec5cfb14a9 100644 --- a/docs/building/building.xml +++ b/docs/building/building.xml @@ -5004,7 +5004,7 @@ choices, but it gives a single path that works.</para> - cvs checkout ghc hslibs libraries - Build ghc, using cygwin and mingw, targetting mingw - - export PATH=/cygdrive/c/ghc/ghc-6.4.1/tools:$PATH + - export PATH=/cygdrive/c/ghc/ghc-6.4.1:$PATH ; for haddock, alex, happy (*) - export PATH=/cygdrive/c/mingw/bin:$PATH ; without, we pick up some cygwin tools at best! @@ -5015,9 +5015,11 @@ choices, but it gives a single path that works.</para> ; we use cygwin, but build for windows - cp mk/build.mk.sample mk/build.mk - in mk/build.mk: + add line: SplitObjs = NO + (MSYS seems slow when there are zillions of object files) uncomment line: BuildFlavour = perf + (or BuildFlavour = devel, if you are doing development) add line: BIN_DIST=1 - add line: SplitObjs = NO - make 2>&1 | tee make.log ; always useful to have a log around |