[Haskell-cafe] Yesod 0.7.1 using GHC 7.0.2 on Arch Linux

2011-03-12 Thread Ertugrul Soeylemez
Hello there, today I have upgraded to GHC 7.0.2 by doing a system update on my Arch Linux box (x86, 32 bits), and I'm having difficulties to install Yesod. Its dependencies seem to have been installed without problems, but the Yesod package itself fails. The complete build log follows: % cab

Re: [Haskell-cafe] Yesod 0.7.1 using GHC 7.0.2 on Arch Linux

2011-03-12 Thread Ryan Yates
Looks to be reported here: http://hackage.haskell.org/trac/ghc/ticket/5004 Ryan On Sat, Mar 12, 2011 at 3:26 PM, Ertugrul Soeylemez wrote: > Hello there, > > today I have upgraded to GHC 7.0.2 by doing a system update on my Arch > Linux box (x8

Re: [Haskell-cafe] Yesod 0.7.1 using GHC 7.0.2 on Arch Linux

2011-03-12 Thread Ertugrul Soeylemez
Hello Ryan, thanks a lot. Is there a workaround for this, until it's fixed? Greets, Ertugrul Ryan Yates wrote: > Looks to be reported here: > > http://hackage.haskell.org/trac/ghc/ticket/5004 > > > Ryan > > On Sat, Mar 12, 2011 at 3:26 PM

Re: [Haskell-cafe] Yesod 0.7.1 using GHC 7.0.2 on Arch Linux

2011-03-12 Thread Ertugrul Soeylemez
Oh, I just noticed the other thread about this issue. Compiling Yesod with the -fproduction flag solved it. Thanks to Michael for that. Greets, Ertugrul Ertugrul Soeylemez wrote: > Hello Ryan, > > thanks a lot. > > Is there a workaround for this, until it's fixed? > > > Greets, > Ertugr

Re: [Haskell-cafe] Yesod 0.7.1 using GHC 7.0.2 on Arch Linux

2011-03-12 Thread vagif . verdi
No, it is not solved. With -fproduction flag you are loosing devel-server functionality. On Saturday, March 12, 2011 02:45:11 PM Ertugrul Soeylemez wrote: > Oh, I just noticed the other thread about this issue. Compiling Yesod > with the -fproduction flag solved it. > > Thanks to Michael for tha

Re: [Haskell-cafe] Yesod 0.7.1 using GHC 7.0.2 on Arch Linux

2011-03-13 Thread Ertugrul Soeylemez
I know, but at least I can go on with development. I hope, the problem will be fixed soon. vagif.ve...@gmail.com wrote: > No, it is not solved. > With -fproduction flag you are loosing devel-server functionality. > > On Saturday, March 12, 2011 02:45:11 PM Ertugrul Soeylemez wrote: > > Oh, I j

Re: [Haskell-cafe] Yesod 0.7.1 using GHC 7.0.2 on Arch Linux

2011-03-13 Thread Krzysztof Skrzętnicki
You can also download binary tarball, untar, ./configure --prefix=$HOME/ghc-7.0.2, make install, export PATH=$PATH:$HOME/ghc-7.0.2 and you will be good to go. Best regards, Krzysztof Skrzętnicki On Mon, Mar 14, 2011 at 02:15, Ertugrul Soeylemez wrote: > I know, but at least I can go on with dev