[Haskell-cafe] -f flag to runghc broken, or is it just me? (because trying switch elegantly between ghc 6.6 and ghc 6.7)

2007-08-22 Thread Thomas Hartman
I'm doing a lot of switching between ghc 6.6 and ghc 6.7 on the same computer. I install modules using $ runghc Setup.hs configure etc. I would like to specify which version of ghc should be getting the package installed via the f flag to runghc $

workaround found, pipe it through ghci Re: [Haskell-cafe] -f flag to runghc broken, or is it just me? (because trying switch elegantly between ghc 6.6 and ghc 6.7)

2007-08-22 Thread Thomas Hartman
this works. now if only there were a quiet option for ghci... well, for me, I guess this may be goodbye to poor sad undocumented malfunctioning runghc.. [EMAIL PROTECTED]:~/personal/PersonalRepos/pharchive/learning/haskell/UnixTools/arghandlingecho :main 1 2 3 | /usr/local/bin/ghci-6.6.1

Re: workaround found, pipe it through ghci Re: [Haskell-cafe] -f flag to runghc broken, or is it just me? (because trying switch elegantly between ghc 6.6 and ghc 6.7)

2007-08-22 Thread Brent Yorgey
this works. now if only there were a quiet option for ghci... But there is! It's called -v0. -Brent ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] -f flag to runghc broken, or is it just me? (because trying switch elegantly between ghc 6.6 and ghc 6.7)

2007-08-22 Thread Ian Lynagh
On Wed, Aug 22, 2007 at 01:38:39PM -0400, Thomas Hartman wrote: $ runghc -f /usr/local/bin/ghc-6.6.1 arghandling-nice.hs does nothing. Contrary to the usage message, you aren't actually allowed a space after -f in 6.6.1 (but you are in 6.7). Use runghc -f/usr/local/bin/ghc-6.6.1