在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):haskell/ghcup开源软件地址(OpenSource Url):https://github.com/haskell/ghcup开源编程语言(OpenSource Language):Shell 80.2%开源软件介绍(OpenSource Introduction):THIS PROJECT IS NOW DEPRECATED IN FAVOR OF ghcup-hs --
Similar in scope to rustup, pyenv and jenv. Ubuntu users may prefer hvr's ppa. This project was started when CM was switching from stack to cabal nix-style builds. Table of ContentsInstallationChoose one of the following installation methods. Simple bootstrap of ghcup, GHC and cabal-install# complete bootstrap
curl https://gitlab.haskell.org/haskell/ghcup/raw/master/bootstrap-haskell -sSf | sh
# prepare your environment
. "$HOME/.ghcup/env"
echo '. $HOME/.ghcup/env' >> "$HOME/.bashrc" # or similar
# now create a project, such as:
mkdir myproject && cd myproject
cabal init -n --is-executable
cabal v2-run Manual installJust place the E.g.: ( mkdir -p ~/.ghcup/bin && curl https://gitlab.haskell.org/haskell/ghcup/raw/master/ghcup > ~/.ghcup/bin/ghcup && chmod +x ~/.ghcup/bin/ghcup) && echo "Success" Then adjust your export PATH="$HOME/.cabal/bin:$HOME/.ghcup/bin:$PATH" Security aware users may want to use the files from the release page and verify the gpg signatures. UsageSee Common use cases are: # install the last known "best" GHC version
ghcup install
# install a specific GHC version
ghcup install 8.2.2
# set the currently "active" GHC version
ghcup set 8.4.4
# install cabal-install
ghcup install-cabal
# update cabal-install
cabal new-install cabal-install Generally this is meant to be used with ManpagesFor man pages to work you need man-db as your Design goals
Non-goals
HowInstalls a specified GHC version into Optionally, an unversioned 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 Known usersKnown problemsLimited distributions supportedCurrently only GNU/Linux distributions compatible with the upstream GHC binaries are supported. Precompiled binariesSince this uses precompiled binaries you may run into several problems. Missing libtinfo (ncurses)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 or
try to compile from source via Libnuma requiredThis was a bug in the build system of some GHC versions that lead to unconditionally enabled libnuma support. To mitigate this you might have to install the libnuma package of your distribution. See here for a discussion. CompilationAlthough 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. FAQ
ghcup is not a reimplementation of stack. The only common part is automatic installation of GHC, but even that differs in scope and design.
While this might be an interesting idea, ghcup is about simplicity.
ghcup is POSIX sh.
Mainly because the implementation is fairly straight-forward and the script is highly portable. No need to bootstrap anything or set up yet another CI to build ghcup binaries for all possible arches and distros just to perform a very simple task: identify distro and platform and download a GHC bindist.
Consider using Chocolatey or ghcups. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论