Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Suppose I have ten modules in my project and GHC is going to recompile the third and fifth, I will see something like the following:

[3 of 10] Compiling C      ( A.hs, dist/build/p/p/A.o )
[5 of 10] Compiling E      ( B.hs, dist/build/p/p/B.o )

I have no idea how many more it's going to compile.

How can I get it to display progress of the compile process?

share|improve this question

3 Answers

up vote 2 down vote accepted

GHC does not know in advance how many modules will need to be recompiled. It uses a fairly sophisticated mechanism for checking whether recompilation is needed. In you example, module 4 of 10 has been found to need no recompilation. In short, GHC is going to compile up to 10 modules, or less if you're lucky.

share|improve this answer

I don't think you can, short of supplying -fforce-recomp. I don't think the GHC authors would mind a patch, though (but are probably too busy to do it themselves). All the information needed should be (relatively) easy available.

share|improve this answer

Try with -dshow-passes or other verbosity flag.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.