我正在尝试使用性能分析选项编译我的一个可执行文件.我在cabal文件中添加了-prof选项.当我这样做时,我收到一条消息说 Could not find module ‘Package-X’Perhaps you haven't installed the profiling l
Could not find module ‘Package-X’ Perhaps you haven't installed the profiling libraries for package ‘package-x’? Use -v to see a list of the files searched for.
我怎么做?我尝试了cabal安装–only-dependency –reinstall,我收到以下响应:
All the requested packages are already installed: Use --reinstall if you want to reinstall anyway.
我已经用过–reinstall我该怎么办?我也试过cabal configure –enable-profiling-libraries等…
bheklilr建议的 link有所帮助,但没有立即解决.我最终在我的.cabal / config文件中添加了库分析:True并重新安装了所有内容.
cabal安装–reinstall wolrd不起作用,也许是因为我在沙箱里面.但是,好
关于沙箱的事情是你可以抛弃它们,所以我重新安装了所有东西
cabal sandbox delete cabal sandbox init cabal install
即使这个解决方案有效,但由于以下原因,它并不令人满意:
>我必须修改.cabal / config这是一个全局文件,而在理想的wolrd中我应该只修改我的沙盒.但是,我没有尝试创建本地cabal配置文件>我不得不重新安装一切,即每个库的分析版本以及已经安装的普通版本.