aboutsummaryrefslogtreecommitdiff
path: root/CabalHelper/Compiletime
Commit message (Collapse)AuthorAgeFilesLines
* Omit -j when calling Setup.hs for Cabal<1.20Daniel Gröber2017-09-261-7/+18
|
* Make debugging env var name consistentDaniel Gröber2017-09-251-1/+1
|
* Fix displayExceoption not being available on older GHCsDaniel Gröber2017-09-251-1/+1
|
* Fix wording in error messageDaniel Gröber2017-09-251-1/+1
| | | | [ci skip]
* Add support for running Cabal's Setup.hs directlyDaniel Gröber2017-09-254-106/+192
| | | | | | | | cabal-install 1.24 broke installing older Cabal versions which use build-type:custom. See https://github.com/haskell/cabal/pull/4787. This still breaks with HEAD on GHC<8. See https://github.com/haskell/cabal/pull/4786.
* Remove 'Options' from shared Types moduleDaniel Gröber2017-09-255-4/+37
| | | | Only needed at compiletime, were being hidden everywhere else already.
* Fix CH.C.C.Environment on Prelude without '<$>'Daniel Gröber2017-09-251-1/+1
|
* Remove 'extra' dependencyDaniel Gröber2017-09-192-1/+8
| | | | ..constrains dependency versions too much and just causes failures.
* Remove leftover debug codeDaniel Gröber2017-09-181-2/+0
|
* Use $XDG_CACHE_HOME instead of '.ghc-mod' (Fix DanielG/ghc-mod#833)Daniel Gröber2017-09-182-6/+7
|
* Use 'extra' for 'lookupEnv'Daniel Gröber2017-09-181-1/+1
|
* Fix literally everything :)Daniel Gröber2017-09-186-0/+875
Sorry for the megacommit - Seperate modules into: - Compiletime, modules which are only used while building the package - Runtime, modues included in the wrapper binary to be compiled on the users machine at runtime - Shared, modues used in both contexts - Refactor runtime compilation - Completely revamp output paths - Don't chdir when invoking ghc - Require cabal-version 1.14 in cabal file