Cabal 编译代码两次

Cabal compiles code twice

当我运行cabal build时,cabal经历了两次编译过程。由于编译已经花费了相对较长的时间(~60 秒),这开始阻碍我的工作流程。

这是我的 cabal 文件中的 ghc 选项:

GHC-Options: -O3 -rtsopts -funbox-strict-fields -threaded -Wall -feager-blackholing -fllvm -optlo-O3
if flag(Eventlog)
  GHC-Options: -O3 -rtsopts -funbox-strict-fields -threaded -eventlog -Wall
if flag(Profiling)
  ghc-prof-options: -O3 -auto-all
  GHC-Options: -O3 -rtsopts -funbox-strict-fields -threaded -fprof-auto -Wall
if flag(Dump)
  GHC-options: -O3 -funbox-strict-fields -Wall -ddump-simpl -dsuppress-module-prefixes -dsuppress-uniques -ddump-to-file

cabal build 的输出看起来完全正常,只是编译在最后一个模块第一次完成编译后立即重新启动。

[ 1 of 13] Compiling HaObj            ( src/HaObj.hs, nothing )
[ 2 of 13] Compiling Surfaces         ( src/Surfaces.hs, nothing )
[ 3 of 13] Compiling Materials        ( src/Materials.hs, nothing )
[ 4 of 13] Compiling Geometry3        ( src/Geometry3.hs, nothing )
[ 5 of 13] Compiling Triangles        ( src/Triangles.hs, nothing )
[ 6 of 13] Compiling BoundingVolumeHierarchy ( src/BoundingVolumeHierarchy.hs, nothing )
[ 7 of 13] Compiling RayTracer        ( src/RayTracer.hs, nothing )
[ 8 of 13] Compiling BenchmarkScene5  ( src/BenchmarkScene5.hs, nothing )
[ 9 of 13] Compiling BenchmarkScene4  ( src/BenchmarkScene4.hs, nothing )
[10 of 13] Compiling BenchmarkScene3  ( src/BenchmarkScene3.hs, nothing )
[11 of 13] Compiling BenchmarkScene2  ( src/BenchmarkScene2.hs, nothing )
[12 of 13] Compiling BenchmarkScene   ( src/BenchmarkScene.hs, nothing )
[13 of 13] Compiling Main             ( src/Main.hs, nothing )
[ 1 of 13] Compiling HaObj            ( src/HaObj.hs, nothing )
[ 2 of 13] Compiling Surfaces         ( src/Surfaces.hs, nothing )
[ 3 of 13] Compiling Materials        ( src/Materials.hs, nothing )
[ 4 of 13] Compiling Geometry3        ( src/Geometry3.hs, nothing )
[ 5 of 13] Compiling Triangles        ( src/Triangles.hs, nothing )
[ 6 of 13] Compiling BoundingVolumeHierarchy ( src/BoundingVolumeHierarchy.hs, nothing )
[ 7 of 13] Compiling RayTracer        ( src/RayTracer.hs, nothing )
[ 8 of 13] Compiling BenchmarkScene5  ( src/BenchmarkScene5.hs, nothing )
[ 9 of 13] Compiling BenchmarkScene4  ( src/BenchmarkScene4.hs, nothing )
[10 of 13] Compiling BenchmarkScene3  ( src/BenchmarkScene3.hs, nothing )
[11 of 13] Compiling BenchmarkScene2  ( src/BenchmarkScene2.hs, nothing )
[12 of 13] Compiling BenchmarkScene   ( src/BenchmarkScene.hs, nothing )
[13 of 13] Compiling Main             ( src/Main.hs, nothing )

我正在使用 Ubuntu 14.04、GHC 7.10.1、cabal 安装 1.22.4、cabal 库 1.22.3。如果您有兴趣尝试复制,这里是回购协议的 link。我建议 运行ning cabal build --ghc-options="-fno-code" 将构建时间减少到几秒钟。

编辑:Zeta 指出那是因为我的 cabal 文件中有可执行文件 ray-tracer 和基准测试 bench。有没有办法只构建其中一个?我试过 cabal build ray-tracer 但这也建立了两个目标。我也试过cabal configure --disable-benchmarks。有没有办法在不重新组织 cabal 文件结构的情况下选择性地只构建一个目标?

将评论中的答案发布为社区维基:

构建单个组件的语法是(例如)cabal build exe:ray-tracer