Problem with Windows ghc 6.8.2

2008-02-23 Thread Matthew Bentham
Hi all, I'm not too experienced with ghc or Haskell, so I wanted to check here rather than submitting a bug: $ cat test.hs import Text.PrettyPrint main = print "foo" $ /c/ghc/ghc-6.6.1/bin/ghc test.hs $ ./main.exe "foo" $ /c/ghc/ghc-6.8.2/bin/ghc test.hs test.o(.text+0x217):fake: undefined refe

Re: Problem with Windows ghc 6.8.2

2008-02-23 Thread Daniel Fischer
Am Sonntag, 24. Februar 2008 01:54 schrieb Matthew Bentham: > Hi all, > > I'm not too experienced with ghc or Haskell, so I wanted to check here > rather than submitting a bug: It's probably the base-split. In 6.6.1, Text.PrettyPrint was in the base package, in 6.8.2 it's in the pretty package. T

how to use ghci-debugger with packages

2008-02-23 Thread Frederik Eaton
Hello, I have a program which uses some code in a package, and I would like to be able to find out the source of an error which is occuring inside that package. Can I use the ghci-debugger to do this? If I try to set a breakpoint inside the package, it says: "cannot set breakpoint on Vector.Spars

Re: how to use ghci-debugger with packages

2008-02-23 Thread Daniel Fischer
Am Sonntag, 24. Februar 2008 02:18 schrieb Frederik Eaton: > Hello, > > I have a program which uses some code in a package, and I would like > to be able to find out the source of an error which is occuring inside > that package. Can I use the ghci-debugger to do this? If I try to set > a breakpoin

Re: Problem with Windows ghc 6.8.2

2008-02-23 Thread Matthew Bentham
- Original Message > From: Daniel Fischer <[EMAIL PROTECTED]> > To: Matthew Bentham <[EMAIL PROTECTED]>; glasgow-haskell-users@haskell.org > Sent: Sunday, February 24, 2008 1:13:48 AM > Subject: Re: Problem with Windows ghc 6.8.2 > > Am Sonntag, 24. Februar 2008 01:54 schrieb Matthew Bent

Re: how to use ghci-debugger with packages

2008-02-23 Thread Frederik Eaton
On Sun, Feb 24, 2008 at 02:36:08AM +0100, Daniel Fischer wrote: > Am Sonntag, 24. Februar 2008 02:18 schrieb Frederik Eaton: > > Hello, > > > > I have a program which uses some code in a package, and I would like > > to be able to find out the source of an error which is occuring inside > > that pa

Visual Haskell sources

2008-02-23 Thread Andrei Formiga
Hello, The Visual Haskell 0.2 release notes [1] say that sources are available, but the download page only has binaries available. Where are the sources? Also, does it use the Visual Studio SDK, and is it compatible with VS 2008? Thanks. [1] http://haskell.org/visualhaskell/doc/index.html#releas

static constants -- ideas?

2008-02-23 Thread Jason Dusek
I have an awkward programming problem -- I need to take a dictionary, parse it, build a bunch of intermediate lists and then make maps and tries out of the list. A "programming problem" because it's taken me a fair amount of effort to pull together the parser and list generator -- and "aw