Dependent Types Branch of GHC ============================= This is a fork of GHC, with work toward supporting dependent types. Anyone is welcome to download and play with this implementation, and I am happy to receive feedback and issue reports on GitHub. There are two options of using this branch: manual, and Nix-based. Manual ------ This code should build, but I have tested it only on `DEBUG` settings; I recommend using build style `devel2` in `build.mk`. Here is a minimal script you can follow to build this at home; see the [GHC Building Guide] [3] for more info. ~~~ git clone https://github.com/goldfirere/ghc.git cd ghc git checkout nokinds git remote set-url origin git://git.haskell.org/ghc.git # so submodules work git submodule update --init cd mk cp build.mk.sample build.mk ## edit build.mk to uncomment the line to choose the `devel2` configuration cd .. perl boot ./configure make ~~~ Check out the `testsuite/tests/dependent/should_compile` directory for a few sample programs that should compile on this fork of GHC. For more information about GHC, visit [GHC's web site][1]. Information for developers of GHC can be found on the [GHC Trac][2]. Nix-based --------- Thanks to @deepfire, this branch is available in Nixpkgs, which means that with some effort it can be fairly automatically employed to build any package from Hackage. This way, though, requires that one installs the Nix package manager in parallel with the system package manager -- and this option is currently unavailable on Windows. Here are the instructions: 1. To install the Nix package manager, taking over /nix for package storage: curl https://nixos.org/nix/install | sh 2. Make Nix use the `master` repository of Nixpkgs package definitions: git clone https://github.com/NixOS/nixpkgs.git pushd ~/.nix-defexpr rm -rf channels ln -s ../nixpkgs popd echo 'export NIX_PATH=nixpkgs=/home/------/nixpkgs' >> ~/.bashrc export NIX_PATH=nixpkgs=/home/------/nixpkgs 3. [OPTIONAL] To enable prebuilt binaries from Peter Simons/NixOS Hydra servers: sudo mkdir /etc/nix echo 'binary-caches = http://hydra.nixos.org/ http://hydra.cryp.to/' | sudo dd of=/etc/nix/nix.conf # If you don't do that, everything will still work, just it'll have # to build everything from source. 4. Enter a shell with `ghc-nokinds` available: nix-shell -p haskell.compiler.ghcNokinds 5. See it's indeed `nokinds`: wget https://raw.githubusercontent.com/goldfirere/ghc/nokinds/testsuite/tests/dependent/should_compile/KindEqualities2.hs runhaskell KindEqualities2.hs To apply 'nokinds' to building packages from Hackage, the best option would be to follow instructions from the "Nix loves Haskell" talk by Peter Simons: http://cryp.to/nixos-meetup-3-slides.pdf ..where the relevant compiler name would be "ghcNokinds". Building & Installing ===================== For full information on building GHC, see the [GHC Building Guide] [3]. Here follows a summary - if you get into trouble, the Building Guide has all the answers. Before building GHC you may need to install some other tools and libraries. See, [Setting up your system for building GHC] [8]. *NB.* In particular, you need [GHC] [1] installed in order to build GHC, because the compiler is itself written in Haskell. You also need [Happy] [4], [Alex] [5], and [Cabal] [9]. For instructions on how to port GHC to a new platform, see the [GHC Building Guide] [3]. For building library documentation, you'll need [Haddock] [6]. To build the compiler documentation, you need [Sphinx](http://www.sphinx-doc.org/) and Xelatex (only for PDF output). **Quick start**: the following gives you a default build: $ ./boot $ ./configure $ make # can also say 'make -jX' for X number of jobs $ make install On Windows, you need an extra repository containing some build tools. These can be downloaded for you by configure. This only needs to be done once by running: $ ./configure --enable-tarballs-autodownload (NB: **Do you have multiple cores? Be sure to tell that to `make`!** This can save you hours of build time depending on your system configuration, and is almost always a win regardless of how many cores you have. As a simple rule, you should have about N+1 jobs, where `N` is the amount of cores you have.) The `./boot` step is only necessary if this is a tree checked out from git. For source distributions downloaded from [GHC's web site] [1], this step has already been performed. These steps give you the default build, which includes everything optimised and built in various ways (eg. profiling libs are built). It can take a long time. To customise the build, see the file `HACKING`. Filing bugs and feature requests ================================ If you've encountered what you believe is a bug in GHC, or you'd like to propose a feature request, please let us know! Submit a ticket in our [bug tracker] [10] and we'll be sure to look into it. Remember: **Filing a bug is the best way to make sure your issue isn't lost over time**, so please feel free. If you're an active user of GHC, you may also be interested in joining the [glasgow-haskell-users] [11] mailing list, where developers and GHC users discuss various topics and hang out. Hacking & Developing GHC ======================== Once you've filed a bug, maybe you'd like to fix it yourself? That would be great, and we'd surely love your company! If you're looking to hack on GHC, check out the guidelines in the `HACKING.md` file in this directory - they'll get you up to speed quickly. Contributors & Acknowledgements =============================== GHC in its current form wouldn't exist without the hard work of [its many contributors] [12]. Over time, it has grown to include the efforts and research of many institutions, highly talented people, and groups from around the world. We'd like to thank them all, and invite you to join! [1]: http://www.haskell.org/ghc/ "www.haskell.org/ghc/" [2]: http://ghc.haskell.org/trac/ghc "ghc.haskell.org/trac/ghc" [3]: http://ghc.haskell.org/trac/ghc/wiki/Building "ghc.haskell.org/trac/ghc/wiki/Building" [4]: http://www.haskell.org/happy/ "www.haskell.org/happy/" [5]: http://www.haskell.org/alex/ "www.haskell.org/alex/" [6]: http://www.haskell.org/haddock/ "www.haskell.org/haddock/" [7]: https://ghc.haskell.org/trac/ghc/wiki/Building/GettingTheSources#GettingaGHCrepositoryfromGitHub "https://ghc.haskell.org/trac/ghc/wiki/Building/GettingTheSources#GettingaGHCrepositoryfromGitHub" [8]: http://ghc.haskell.org/trac/ghc/wiki/Building/Preparation "http://ghc.haskell.org/trac/ghc/wiki/Building/Preparation" [9]: http://www.haskell.org/cabal/ "http://www.haskell.org/cabal/" [10]: http://ghc.haskell.org/trac/ghc/ "http://ghc.haskell.org/trac/ghc/" [11]: http://www.haskell.org/pipermail/glasgow-haskell-users/ "http://www.haskell.org/pipermail/glasgow-haskell-users/" [12]: http://ghc.haskell.org/trac/ghc/wiki/TeamGHC "http://ghc.haskell.org/trac/ghc/wiki/TeamGHC"