Go to file
Julian Ospald 2193b42822
Make self-update more robust
In fact, the old method was unsafe. Curl would modify the script
in-place and there was no guarantee that the script is already
in memory, leading to harmless, but unnecessary corruption
at the end of the script.

mv is atomic, so will unlink the old file before writing the new one.
2018-10-08 22:42:04 +08:00
.travis.sh Fix travis finally 2018-10-03 15:34:30 +08:00
.travis.yml Fix travis 2018-09-30 19:41:49 +08:00
COPYING License this project BSD-3 2018-09-29 23:33:16 +08:00
README.md Improve README.md 2018-10-03 01:33:47 +08:00
ghcup Make self-update more robust 2018-10-08 22:42:04 +08:00

README.md

Build Status license

GHC up

Installs a specified GHC version into ~/.ghcup/ghc/<ver>, and places ghc-<ver> etc. symlinks in ~/.ghcup/bin/. Additionally allows to manage currently selected ghc via unversioned symlinks.

This uses precompiled GHC binaries that have been compiled on fedora/debian by upstream GHC.

Alternatively, you can also tell it to compile from source (note that this might fail due to missing requirements).

In addition this script can also install cabal-install.

Table of Contents

Why

I don't use stack, but cabal new-* and system GHC versions are often either outdated or cannot be installed in parallel with proper symlink management.

Inspired by rustup.

Installation

Just place the ghcup shell script into your PATH anywhere (preferably ~/.local/bin).

Usage

See ghcup --help.

Contributing

TODO

  • FreeBSD support (#4)
  • Make fetching tarballs more robust (#5)
  • More code documentation
  • Allow to compile from source (#2)
  • Allow to install cabal-install as well (#3)

Known problems

Precompiled binaries

Since this uses precompiled binaries you may run into problems with ncurses and missing libtinfo, in case your distribution doesn't use the legacy way of building ncurses and has no compatibility symlinks in place.

Ask your distributor on how to solve this.

Unreliable download location

There is no single reliable URL where to download future GHC binary releases from, since the tarball names contain the distro name and version they were built on. As such, we cannot foresee what will be the next tarball name.

In such a case, consider to update this script via ghcup self-update.

Compilation

Although this script can compile GHC for you, it's just a very thin wrapper around the build system. It makes no effort in trying to figure out whether you have the correct toolchain and the correct dependencies. Refer to the official docs on how to prepare your environment for building GHC.