From: Bjorn B. <bri...@cs...> - 2006-07-19 18:45:22
|
On Jul 19, 2006, at 11:28 AM, Matthias Radestock wrote: > I grabbed the latest haskelldb version from darcs and tried to install > it. haskelldb itself built and installed fine, but when I try to build > the driver-dynamic module I get: > > <snip> > cd /usr/local/src/haskelldb/driver-dynamic/ > runghc Setup.hs build > Preprocessing library haskelldb-dynamic-0.10... > Preprocessing executables for haskelldb-dynamic-0.10... > Building haskelldb-dynamic-0.10... > ghc-6.4.1: ghc-6.4.1: panic! (the `impossible' happened, GHC =20 > version 6.4.1): > unknown exception > > Please report it as a compiler bug to glasgow-haskell-=20 > bu...@ha..., > or http://sourceforge.net/projects/ghc/. > </snip> > > Is anybody else seeing this? It may be a 6.4.1 bug, but a) this worked > fine until recently, b) I'd rather not have to upgrade ghc. There are sometimes problems like this one when you have old versions =20= compiled or installed. Try this: - First unregister all haskelldb packages: $ ./unregister-all - The make clean before configuring and building each package: (For haskelldb and each driver-X:) $ runghc Setup.hs clean $ runghc Setup.hs configure $ runghc Setup.hs build $ runghc Setup.hs install /Bj=F6rn= |