aboutsummaryrefslogtreecommitdiff
path: root/CabalHelper/Shared/Common.hs
Commit message (Collapse)AuthorAgeFilesLines
* Move split source into src/ and lib/Daniel Gröber2017-09-281-128/+0
|
* Cleanup module headersDaniel Gröber2017-09-261-1/+6
|
* Fix shadowing warningDaniel Gröber2017-09-261-2/+3
|
* Fix missing 'lookupEnv' for GHC 7.4Daniel Gröber2017-09-261-0/+1
|
* Change cache dir name to 'cabal-helper' from 'ghc-mod'Daniel Gröber2017-09-251-1/+1
|
* Add support for running Cabal's Setup.hs directlyDaniel Gröber2017-09-251-0/+3
| | | | | | | | 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.
* Use $XDG_CACHE_HOME instead of '.ghc-mod' (Fix DanielG/ghc-mod#833)Daniel Gröber2017-09-181-2/+14
|
* Fix literally everything :)Daniel Gröber2017-09-181-0/+106
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