11

我正在尝试在 Raspberry Pi 上编译 GHC 7.6.3。Raspbian 附带的 7.4 版本的 GHC 不支持ghci。我打算打包 v 7.6.3 并使其可用。

很长一段时间后,我在 Pi 上收到此错误:

HC [stage 0] utils/hp2ps/dist/build/Key.o
HC [stage 0] utils/hp2ps/dist/build/PsFile.o
HC [stage 0] utils/hp2ps/dist/build/Shade.o
HC [stage 0] utils/hp2ps/dist/build/Utilities.o
"inplace/bin/mkdirhier" utils/hp2ps/dist/build/tmp//.
HC [stage 0] utils/hp2ps/dist/build/tmp/hp2ps
Warning: -rtsopts and -with-rtsopts have no effect with -no-hs-main.
Call hs_init_ghc() from your main() function to set these options.
"cp" -p utils/hp2ps/dist/build/tmp/hp2ps inplace/bin/hp2ps
cp driver/ghc-usage.txt inplace/lib/ghc-usage.txt
cp driver/ghci-usage.txt inplace/lib/ghci-usage.txt
HC [stage 0] utils/genapply/dist/build/GenApply.o
"inplace/bin/mkdirhier" utils/genapply/dist/build/tmp//.
HC [stage 0] utils/genapply/dist/build/tmp/genapply
"cp" -p utils/genapply/dist/build/tmp/genapply inplace/bin/genapply
HC [stage 1] libraries/ghc-prim/dist-install/build/GHC/Types.o
Stack dump:
0.  Program arguments: /usr/bin/llc -O3 -relocation-model=static /tmp/ghc467_0/ghc467_0.bc  -o /tmp/ghc467_0/ghc467_0.lm_s --enable-tbaa=true 
1.  Running pass 'Function Pass Manager' on module '/tmp/ghc467_0/ghc467_0.bc'.
2.  Running pass 'ARM Instruction Selection' on function '@ghczmprim_GHCziTypes_Dzh_info'
/tmp/ghc467_0/ghc467_0.lm_s: openBinaryFile: does not exist (No such file or directory)
make[1]: *** [libraries/ghc-prim/dist-install/build/GHC/Types.o] Error 1
make: *** [all] Error 2

real    308m59.437s
user    292m8.320s
sys     10m18.220s

知道出了什么问题吗?

我怎样才能最终丢失由构建系统生成的中间文件?

4

2 回答 2

2

我从上游源获得了用 Raspberry PI 编译的 GHC-7.8.3。它不是很快,但它完成了工作:

pi@arlanda ~ $ ghci
GHCi, version 7.8.3: http://www.haskell.org/ghc/  :? for help
Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
Loading package base ... linking ... done.
Prelude> 1+1
2

关键是要做到以下几点:

  1. 有足够的内存。插入外部硬盘并创建一个 4 GB 的交换分区。首先在fdisk选择分区类型为Linux swap,然后做mkswap /dev/sdXX,最后做swapon /dev/sdXX,这里XX是磁盘id字母和分区号。
  2. 将内核更新到最新版本rpi-update以防止挂起。我还在文件smsc95xx.turbo_mode=N slub_debug=FP中添加了内核命令行的/boot/cmdline.txt末尾。
  3. 使用 安装黄金链接器apt-get install binutils-gold,因为常规ld.bfd将无法创建动态库。问题是您不能gold用于链接所有内容,但需要将阶段 1 与ld.bfd. 您需要遵循此脚本中的说明(来自此处的原始信息),但您也需要ld.bfd用于运行初始./configure调用。
  4. 有耐心——编译需要几天时间。
于 2014-08-11T11:54:27.547 回答
0

您可以随时查看 R-Pi 的官方 haskell 页面。希望它对你的帮助比对我的帮助更大。那里有一些非常有用的链接。

http://www.haskell.org/haskellwiki/Raspberry_Pi

于 2013-07-29T10:53:06.587 回答