Не удалось установить Cabal-1.20.0.2

Я получаю эту ошибку при попытке установить Cabal-1.20.0.2:

$ cabal install Cabal-1.20.0.2.tar.gz 
Resolving dependencies...
Configuring Cabal-1.20.0.2...
Failed to install Cabal-1.20.0.2
Last 10 lines of the build log ( /home/yonutix/.cabal/logs/Cabal-1.20.0.2.log ):
cabal: Error: some packages failed to install:
Cabal-1.20.0.2 failed during the configure step. The exception was:
user error (
/tmp/Cabal-1.20.0.2-11804/Cabal-1.20.0.2/Distribution/Simple/Utils.hs:386:31:
Warning:
In the use of ‘runGenProcess_’
(imported from System.Process.Internals):
Deprecated: "Please do not use this anymore, use the ordinary
'System.Process.createProcess'. If you need the SIGINT handling, use
delegate_ctlc = True (runGenProcess_ is now just an imperfectly emulated stub
that probably duplicates or overrides your own signal handling)."
/usr/bin/ld: cannot find -lgmp
collect2: error: ld returned 1 exit status
)

Мне нужно установить этот пакет, потому что установка cabal зависит от него.

В чем может быть проблема? Спасибо!

1 ответ

Решение

Проблема обозначена этой частью файла журнала:

/usr/bin/ld: cannot find -lgmp

GHC не может найти libgmp. Скорее всего, исправить это установить libgmp-dev пакет, например, под Ubuntu:

sudo apt-get install libgmp-dev
Другие вопросы по тегам