Я полный новичок с haskell, и я делаю тривиальный проект, но мне нужно было запустить cabal install encoding
. Но, когда я это сделал, он дал мне эту ошибку:В Haskell, как установить пакет кодировки в Windows?
Configuring encoding-0.6.7.2...
setup.exe: Missing dependency on a foreign library:
* Missing (or bad) header file: system_encoding.h
This problem can usually be solved by installing the system package that
provides this library (you may need the "-dev" version). If the library is
already installed but in a non-standard location then you can use the flags
--extra-include-dirs= and --extra-lib-dirs= to specify where it is.
If the header file does exist, it may contain errors that are caught by the C
compiler at the preprocessing stage. In this case you can re-run configure
with the verbosity flag -v3 to see the error messages.
cabal.exe: Error: some packages failed to install:
encoding-0.6.7.2 failed during the configure step. The exception was:
ExitFailure 1
Как устранить эту проблему?
Как правило, просмотр флагов в файле cabal может указывать на полезные способы избежать необходимости использования внешних библиотек потенциально за счет некоторых из API или некоторой функции. Рад, что смог помочь! – fryguybob
@fryguybob: Как вы на это смотрите? –
Внизу страницы взлома есть ссылка на «описание пакета», которое открывает файл кэша. Вы также можете выполнить 'cabal unpack ...', и это извлечет пакет в каталог, в котором вы можете просмотреть источник. 'cabal info ...' также будет перечислять флаги, но не так много информации о том, что они делают. – fryguybob