Timing Stats in ghci-6.6

2006-10-17 Thread Daniel Fischer
Hi, apparently the timing doesn't work properly in ghci 6.6 (at least for me), I always get very small timings, usually 0.01 secs, sometimes 0.00 secs, once 0.07 secs, no matter how long it actually took. Is that a common problem or is it only me? Cheers, Daniel

Re: ghc for PC Solaris

2006-10-17 Thread Christian Maeder
Simon Marlow schrieb: You should be able to use any platform with a working GHC 6.6 to bootstrap from; x86/Linux is fine. Ian bootstraps GHC on new machines for fun(!), so I'm pretty sure the process has most of the kinks ironed out at the moment. Ok, I've got a hc-file-bundle now. Comparing

Re: Hacking on GHC interactively with GHCi

2006-10-17 Thread Simon Marlow
Clemens Fruhwirth wrote: Hello everyone, I would like to hack on GHC interactively. My aim is to load ghc into ghci and start hacking a source file in one emacs buffer, while the other hosts an inferior-haskell session connected to GHCi. I really like this kind of development style and found it

Re: ghc-6.6 under sparc-sun-solaris

2006-10-17 Thread Christian Maeder
Duncan Coutts schrieb: So ghc -split-objs works now with either -optc-mcpu=v8 or -opta-mcpu=v9 (or even -opta-mcpu=ultrasparc). Where should I place what so that my stage1 inplace-compiler works without SplitObjs=NO in mk/build.mk? Try SRC_HC_OPTS = -optc-mcpu=ultrasparc

Re: scoped tyvar

2006-10-17 Thread TOPE KAREM
Hi, After downloading Haskell 98 (current version), I tried to load stdm by typing :load stdm I kept gettin command line could not find module 'stdm' Iadded path under system variables under environment variables like this: control panel/system/Aadvanced/(under system variable)Environment

Re: foldl laziness support. Reply

2006-10-17 Thread roconnor
Although this doesn't answer your question, I think it is releated. When implementing SHA, I need to create a recursive function to append the length of a string to the string. This function needed to be strict, because it needed to accumulted the length of the string, and it needed to be

Re: Hacking on GHC interactively with GHCi

2006-10-17 Thread Clemens Fruhwirth
At Tue, 17 Oct 2006 10:26:15 +0100, Simon Marlow [EMAIL PROTECTED] wrote: Clemens Fruhwirth wrote: * load all .o files (with unboxed types) and load a modified source in interpreted mode. This doesn't work well because for that approach you need to mix the source with the object in the

Some potentially useful installers..

2006-10-17 Thread Sigbjorn Finne
Hi, I've bundled up a bunch of Win32 installers for various tools that come in handy when developing withfor GHC: Alex, Happy, and Haddock (aka The Marlow Collection) http://galois.com/~sof/msi/alex-2-0-1.msi http://galois.com/~sof/msi/happy-1-15.msi

Re: Some potentially useful installers..

2006-10-17 Thread Neil Mitchell
Hi Sigbjorn, I've bundled up a bunch of Win32 installers for various tools that come in handy when developing withfor GHC: Alex, Happy, and Haddock (aka The Marlow Collection) Are the tools used to build these installers available? Thanks Neil ___

Re: Some potentially useful installers..

2006-10-17 Thread Sigbjorn Finne
Hi, some day (soon) --sigbjorn Neil Mitchell wrote: Hi Sigbjorn, I've bundled up a bunch of Win32 installers for various tools that come in handy when developing withfor GHC: Alex, Happy, and Haddock (aka The Marlow Collection) Are the tools used to build these installers available?

Re: [Haskell] Expecting more inlining for bit shifting

2006-10-17 Thread John Meacham
On Mon, Oct 09, 2006 at 03:54:41PM +0100, Ian Lynagh wrote: It might be possible, but it sounds tricky. I guess it would have to go something like try inlining this, run the simplifier, see if it got small enough, if not back out, which could waste a lot of work if it fails in lots of cases.