ghc-parmake: A parallel wrapper for 'ghc --make'.

[ bsd3, development, library, program ] [ Propose Tags ]

'ghc-parmake' is a parallel wrapper for 'ghc --make': it is intended to work as its drop-in replacement. It can build your Haskell program in parallel using multiple cores.


[Skip to Readme]

Modules

[Last Documentation]

  • GHC
    • ParMake
      • GHC.ParMake.BuildPlan
      • GHC.ParMake.Common
      • GHC.ParMake.Engine
      • GHC.ParMake.Parse
      • GHC.ParMake.Util

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 0.1.1, 0.1.2, 0.1.3, 0.1.4, 0.1.5, 0.1.6, 0.1.7, 0.1.8, 0.1.9
Dependencies array (>=0.3 && <0.4), base (>=4 && <5), containers (>=0.4 && <0.5), directory (>=1.1 && <2), filepath (>=1 && <2), ghc-parmake (>=0.1 && <0.2), process (>=1 && <2), temporary (>=1 && <2) [details]
License BSD-3-Clause
Author Mikhail Glushenkov
Maintainer the.dead.shall.rise@gmail.com
Category Development
Home page https://github.com/23Skidoo/ghc-parmake
Bug tracker https://github.com/23Skidoo/ghc-parmake/issues
Source repo head: git clone https://github.com/23Skidoo/ghc-parmake.git
Uploaded by MikhailGlushenkov at 2011-10-30T13:51:48Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables ghc-parmake
Downloads 7280 total (23 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2016-12-26 [all 6 reports]

Readme for ghc-parmake-0.1.1

[back to package description]
'ghc-parmake' is a parallel wrapper for 'ghc --make': it is intended to work as
its drop-in replacement. It can build your Haskell program or library in
parallel using multiple cores and will be integrated with 'cabal build'
eventually (though I also plan to support the standalone version).

'ghc-parmake' works by first extracting a module dependency graph with 'ghc -M'
and then running multiple 'ghc -c' processes in parallel. Currently, it can
build itself and some small test programs (see the 'tests' directory).

--

Usage: ghc-parmake OPTS FILES

Options:

-j N    - Run N jobs in parallel.
-vv[N]  - Set verbosity to N (only for ghc-parmake). N is 0-3, default 1.
-v[N]   - Set verbosity to N (both for GHC and ghc-parmake itself).
--help  - Print usage information.
-V      - Print version information.

Other options are passed to GHC unmodified.

--

Known limitations:

      * Building libraries is not yet supported.
      * Build fails when -odir != -hidir.
      * Unlike 'ghc --make', ghc-parmake can't figure out package dependencies automatically,
        so you'll need to specify them by hand with the -package option.
      * -hisuf/-osuf are not supported (needed for building libs for profiling).
      * Tested only on Linux.