Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/haskell/Cabal. Pull mirroring updated .
  1. Nov 15, 2017
  2. Nov 12, 2017
  3. Nov 11, 2017
  4. Nov 10, 2017
    • Moritz Angermann's avatar
      Make ExposedModules out of ModuleNames · 62bc64dd
      Moritz Angermann authored
      62bc64dd
    • Moritz Angermann's avatar
      Adds `virtual-modules`. · 3623270d
      Moritz Angermann authored
      GHC's `ghc-prim` package has an `exposed-module` for which there exists no source code. As such it can't be built and has no interface file.  With the goal of getting rid of hacks in GHC `ghc-prim`s cabal file, which does the following:
      
      ```
      flag include-ghc-prim
          Description: Include GHC.Prim in exposed-modules
          default: False
      [...]
          if flag(include-ghc-prim)
              exposed-modules: GHC.Prim
      ```
      
      and has this explaination in the build system:
      
      ```
      # ----------------------------------------
      # Special magic for the ghc-prim package
      
      # We want the ghc-prim package to include the GHC.Prim module when it
      # is registered, but not when it is built, because GHC.Prim is not a
      # real source module, it is built-in to GHC.  The old build system did
      # this using Setup.hs, but we can't do that here, so we have a flag to
      # enable GHC.Prim in the .cabal file (so that the ghc-prim package
      # remains compatible with the old build system for the time being).
      # GHC.Prim module in the ghc-prim package with a flag:
      #
      libraries/ghc-prim_CONFIGURE_OPTS += --flag=include-ghc-prim
      
      # And then we strip it out again before building the package:
      define libraries/ghc-prim_PACKAGE_MAGIC
      libraries/ghc-prim_dist-install_MODULES := $$(filter-out GHC.Prim,$$(libraries/ghc-prim_dist-install_MODULES))
      endef
      ```
      
      The addition of the `virtual-modules` has thus the effect of a module that is assumed to exist
      but not tried to be built or listed in any of the module files.  It is however part of the
      `exposed-modules` when registered into the package database
      3623270d
  5. Nov 09, 2017
  6. Nov 08, 2017
  7. Nov 07, 2017
  8. Nov 04, 2017
  9. Nov 03, 2017
  10. Nov 02, 2017
  11. Nov 01, 2017
  12. Oct 28, 2017
  13. Oct 27, 2017
Loading