Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Follow-up to 32f41c79 | Herbert Valerio Riedel | 2014-02-26 | 1 | -3/+3 |
| | | | | | | | These parts were forgotten to be committed together with the rest of 32f41c79960ffc1d04c4573acb37756109d279a5 Signed-off-by: Herbert Valerio Riedel <hvr@gnu.org> | ||||
* | Make distribution tarball compression format configurable | Herbert Valerio Riedel | 2014-02-26 | 1 | -3/+3 |
| | | | | | | | | | | | | | By default, bzip2 compression is selected (which is what has been used till now). Additionally, by setting the TAR_COMP make variable to one of the values "bzip2", "gzip", or "xz", an explicit compression format can be requested for the distribution tarballs. For instance, invoking make TAR_COMP=xz sdist-ghc will result in a tarball `./sdistprep/ghc-7.9.20140226-src.tar.xz` Signed-off-by: Herbert Valerio Riedel <hvr@gnu.org> | ||||
* | Globally replace "hackage.haskell.org" with "ghc.haskell.org" | Simon Marlow | 2013-10-01 | 2 | -4/+4 |
| | |||||
* | Rename $(Windows) to $(Windows_Host) | Ian Lynagh | 2013-03-01 | 1 | -1/+1 |
| | |||||
* | Rename package-conf flags to package-db. | Paolo Capriotti | 2012-05-15 | 2 | -4/+4 |
| | | | | | | | | Rename package database flags in both GHC and ghc-pkg so that they are consistent with Cabal nomenclature. Add a version check to the build system so that the correct set of package db flags are used when the bootstrapping GHC has version < 7.5. | ||||
* | Fix bindisttest in git | Ian Lynagh | 2011-04-01 | 1 | -1/+4 |
| | |||||
* | Fix checkBinaries on OS X | Ian Lynagh | 2010-12-16 | 1 | -1/+1 |
| | |||||
* | Use "-perm -u+x" rather than "-executable" to find executables | Ian Lynagh | 2010-12-16 | 1 | -1/+1 |
| | | | | On Windows, -executable is matching the html docs. | ||||
* | Remove a debugging print | Ian Lynagh | 2010-12-16 | 1 | -1/+0 |
| | |||||
* | Add a test that all programs in the bindist were built with the right GHC | Ian Lynagh | 2010-12-10 | 2 | -0/+21 |
| | | | | They should use the GHC from the build tree, not the bootstrapping compiler. | ||||
* | When testing the bindist, tell it where gcc is | Ian Lynagh | 2010-11-20 | 1 | -1/+1 |
| | | | | | The location isn't baked into the bindist, as it may differ from machine to machine. | ||||
* | Fix bindisttest when GhcProfiled = YES | Ian Lynagh | 2010-09-21 | 1 | -0/+2 |
| | |||||
* | Fix bindisttest Makefile | Ian Lynagh | 2010-06-16 | 2 | -2/+2 |
| | |||||
* | Add a ghc.mk for bindisttest/ | Ian Lynagh | 2010-05-08 | 1 | -0/+49 |
| | |||||
* | Improve the bindisttest Makefile | Ian Lynagh | 2010-05-08 | 1 | -6/+10 |
| | |||||
* | Use $(MAKE), not make, when recursively calling make | Ian Lynagh | 2010-04-15 | 1 | -1/+1 |
| | |||||
* | Avoid using non-standard GNU tar option --force-local | Simon Marlow | 2009-11-30 | 1 | -2/+5 |
| | |||||
* | Pass --no-user-package-conf to ghc-pkg in bindisttest | Roman Leshchinskiy | 2009-11-25 | 1 | -1/+2 |
| | |||||
* | Follow bindist changes in bindisttest | Ian Lynagh | 2009-09-27 | 1 | -1/+7 |
| | | | | | Also add support for testing the bindistprep tarball, for when we are validating. | ||||
* | Improve bindist testing | Ian Lynagh | 2009-06-13 | 2 | -0/+5 |
| | | | | We now also test runghc and unlit | ||||
* | Clean the right directory in bindisttest | Ian Lynagh | 2009-05-14 | 1 | -1/+1 |
| | |||||
* | Test "ghc-pkg check" passes in bindisttest | Ian Lynagh | 2009-05-04 | 1 | -0/+1 |
| | | | | | Also fixes it so that it really does pass (we weren't substituting the GMP variables in the RTS package config). | ||||
* | Test bindists in a deeper subdirectory | Ian Lynagh | 2009-05-04 | 1 | -6/+8 |
| | | | | | configure looks for install-sh in . .. ../.. and we don't want it to find the build system's install-sh. | ||||
* | Add a header to all build system files: | Simon Marlow | 2009-04-28 | 1 | -0/+11 |
| | | | | | | | | | | | | | | # ----------------------------------------------------------------------------- # # (c) 2009 The University of Glasgow # # This file is part of the GHC build system. # # To understand how the build system works and how to modify it, see # http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture # http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying # # ----------------------------------------------------------------------------- | ||||
* | GHC new build system megapatch | Ian Lynagh | 2009-04-26 | 1 | -2/+2 |
| | |||||
* | Don't use the absolute path to the bindist tarball | Ian Lynagh | 2009-02-10 | 1 | -1/+1 |
| | | | | | | | | | On Windows, we end up doing something like rsync c:/build/ghc-6.10.1-unknown-mingw32.tar.bz2 haskell.org:dist and it thinks that it is meant to get the file from the host called "c". Now we just do rsync ghc-6.10.1-unknown-mingw32.tar.bz2 haskell.org:dist so rsync understand what we mean. | ||||
* | Use --force-local when calling tar in bindisttest/ | Ian Lynagh | 2008-09-12 | 1 | -1/+2 |
| | | | | Otherwise it thinks that c:/foo is a remote file | ||||
* | Change references to the old BIN_DIST_TARBALL to the new BIN_DIST_TAR_BZ2 | Ian Lynagh | 2008-08-24 | 1 | -1/+1 |
| | |||||
* | BIN_DIST_INST_SUBDIR Needs to be defined in config.mk so ./Makefile can see it | Ian Lynagh | 2007-12-07 | 1 | -9/+0 |
| | |||||
* | on Windows, install to a directory with spaces (test for #1828) | Simon Marlow | 2007-11-15 | 1 | -2/+11 |
| | |||||
* | Fix up bindist creation and publishing | Ian Lynagh | 2007-09-05 | 1 | -6/+4 |
| | |||||
* | In bindisttest, don't try to configure/install the bindist on Windows | Ian Lynagh | 2007-08-23 | 1 | -1/+5 |
| | |||||
* | Add a bindisttest directory | Ian Lynagh | 2007-08-22 | 3 | -0/+38 |
After make binary-dist stage=2 you can run make in bindisttest/ to test it |