What's the best way to iterate over all the modules (files) in a given package? Concretely, suppose I have

  1. an executable called "runThis"
  2. a cabal package P with files F1.hs, F2.hs, ..., Fn.hs

Whats the easiest way to execute:

runThis F1.hs
runThis F2.hs
...
runThis Fn.hs 

?

I thought I might try --with-compiler but that fails with

cabal: The program ghc version >=6.4 is required but the version of runThis

(The other option looks like tweaking the Setup.lhs -- but ideally I'd like to hijack the build process and use "runThis" instead of, say, ghc)

Thanks!

link|improve this question

50% accept rate
This mailing list message looks relevant: opensubscriber.com/message/haskell-cafe@haskell.org/… – Daniel Wagner Dec 19 '11 at 23:24
1  
What sort of program is runThis? Would something like $ for file in *.hs; do runThis $file; done; do what you want? – Daniel Fischer Dec 19 '11 at 23:27
Thanks @DanielWagner, that does the trick. Turns out though that it misses hidden modules not mentioned in the .cabal (which I also want) so, its actually easier to do something like what Daniel Fischer suggests (plus using, say, filemanip, to recursively find all *.hs files...) – Ranjit Jhala Dec 20 '11 at 0:09
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.