这个问题是其他人帮助我解决的问题的提炼解决方案。可以在这个问题和这个 r/xmonad 帖子上找到讨论。
我主要将 Artix 与 Pacman 一起用作包管理器。今天,大约一周后,我升级了许多软件包,最终破坏了 XMonad。
这是我收到的消息xmonad --recompile -v
:
XMonad is recompiling and replacing itself another XMonad process because the current process is called "xmonad" but the compiled configuration should be called "xmonad-x86_64-linux"
XMonad will use ghc to recompile, because "/home/philippe/.xmonad/build" does not exist.
XMonad skipping recompile because it is not forced (e.g. via --recompile), and neither xmonad.hs nor any *.hs / *.lhs / *.hsc files in lib/ have been changed.
/home/philippe/.xmonad/xmonad-x86_64-linux: error while loading shared libraries: libHSxmonad-contrib-0.16-KKfUmtIonstICqbgIKQKYh-ghc8.10.4.so: cannot open shared object file: No such file or directory
我已经尝试了很多人们在互联网上提到的解决方案——到目前为止,我已经花了 3 个多小时尝试调试它——其中值得注意的是:
cabal install --lib xmonad-contrib
,它解决了我过去在使用 XMonad 时遇到的一些问题。- 删除并重新安装 Stack、GHC、Cabal 和 XMonad 本身。
- 通过 Stack 安装 XMonad。
- 这最终给了我同样的错误信息,不同的是我必须执行
~/.local/bin/xmonad --recompile -v
。
- 这最终给了我同样的错误信息,不同的是我必须执行
有谁知道如何解决这个问题?我以前在升级 XMonad 时遇到过问题,但从来没有这样的问题——我喜欢 Haskell 作为一门语言,但它的包管理是我 10 多年来经历过的最恶心、最复杂的软件之一编程生活。
如果我最终清理我的系统并通过 Stack 管理所有内容,我如何通过它编译 XMonad?仅使用 Stack 然后xmonad --recompile
给我这个错误:
XMonad will use ghc to recompile, because "/home/philippe/.xmonad/build" does not exist.
xmonad: ghc: runProcess: runInteractiveProcess: exec: inappropriate type (Not a directory)
(顺便说一句,我确实有一个~/.xmonad/build/
文件夹......)