[nightly] 09-Feb-2011 build of HEAD on i386-unknown-linux (cam-02-unx)

2011-02-09 Thread GHC Build Reports
Build description = HEAD on i386-unknown-linux (cam-02-unx) Build location= /playpen/simonmar/nightly/HEAD Build config file = /home/simonmar/nightly/site/msrc/conf-HEAD-cam-02-unx Nightly build started on cam-02-unx at Wed Feb 9 18:00:02 GMT 2011. checking out new source tree

[nightly] 09-Feb-2011 build of STABLE on i386-unknown-linux (cam-02-unx)

2011-02-09 Thread GHC Build Reports
Build description = STABLE on i386-unknown-linux (cam-02-unx) Build location= /playpen/simonmar/nightly/STABLE Build config file = /home/simonmar/nightly/site/msrc/conf-STABLE-cam-02-unx Nightly build started on cam-02-unx at Wed Feb 9 18:10:02 GMT 2011. checking out new source tree

[nightly] 09-Feb-2011 build of HEAD on x86_64-unknown-linux (cam-04-unx)

2011-02-09 Thread GHC Build Reports
Build description = HEAD on x86_64-unknown-linux (cam-04-unx) Build location= /64playpen/simonmar/nightly/HEAD-cam-04-unx Build config file = /home/simonmar/nightly/site/msrc/conf-HEAD-cam-04-unx Nightly build started on cam-04-unx at Wed Feb 9 18:00:01 GMT 2011. checking out new source t

[nightly] 09-Feb-2011 build of STABLE on x86_64-unknown-linux (cam-04-unx)

2011-02-09 Thread GHC Build Reports
Build description = STABLE on x86_64-unknown-linux (cam-04-unx) Build location= /64playpen/simonmar/nightly/STABLE-cam-04-unx Build config file = /home/simonmar/nightly/site/msrc/conf-STABLE-cam-04-unx Nightly build started on cam-04-unx at Wed Feb 9 18:10:01 GMT 2011. checking out new so

patch applied (testsuite): Add tests for quasi-quoting unboxed values

2011-02-09 Thread Ian Lynagh
Wed Feb 9 12:31:05 PST 2011 Ian Lynagh * Add tests for quasi-quoting unboxed values A ./tests/ghc-regress/th/TH_repPrim2.hs A ./tests/ghc-regress/th/TH_repPrim2.stderr A ./tests/ghc-regress/th/TH_repPrimOutput2.hs A ./tests/ghc-regress/th/TH_repPrimOutput2.stdout M ./tests

patch applied (ghc): Allow TH brackets to contain things of any kind

2011-02-09 Thread Ian Lynagh
Wed Feb 9 10:44:59 PST 2011 Ian Lynagh * Allow TH brackets to contain things of any kind You can now quasi-quote things with unboxed types, and unboxed tuples. M ./compiler/typecheck/TcSplice.lhs -2 +2 View patch online: http://darcs.haskell.org/cgi-bin/darcsweb.cgi?r=ghc;a=darcs_commi

Severe bug in GHC HEAD

2011-02-09 Thread Kyra
Ghc HEAD has some severe bug. A have not filled an "official" bug report since I nave not isolated it properly. Below is how can I describe this bug: 1. Symptoms: under a heavy load *and* with RTS option -Nn where n > 1 my application stops responding to (http) requests. With -N1 all is ok. 2.

patch applied (testsuite): Test Trac #4949

2011-02-09 Thread Simon Peyton Jones
Wed Feb 9 09:21:24 PST 2011 simo...@microsoft.com * Test Trac #4949 A ./tests/ghc-regress/th/T4949.hs M ./tests/ghc-regress/th/all.T +1 View patch online: http://darcs.haskell.org/cgi-bin/darcsweb.cgi?r=testsuite;a=darcs_commitdiff;h=20110209172124-1287e-1d4f847524ff28c8790151a569cab2

patch applied (ghc): Simpify constraints from a TH bracket eagerly

2011-02-09 Thread Simon Peyton Jones
Wed Feb 9 09:50:03 PST 2011 simo...@microsoft.com * Simpify constraints from a TH bracket eagerly See Trac #4949, where having a TH bracket implication was messing things up. Better to get rid of it right away. M ./compiler/typecheck/TcSplice.lhs -4 +16 View patch online: http://d

patch applied (ghc): Typo in comment

2011-02-09 Thread Simon Peyton Jones
Wed Feb 9 09:49:14 PST 2011 simo...@microsoft.com * Typo in comment M ./compiler/typecheck/TcRnTypes.lhs -1 +1 View patch online: http://darcs.haskell.org/cgi-bin/darcsweb.cgi?r=ghc;a=darcs_commitdiff;h=20110209174914-1287e-2b9eeed00e05d3b1d7c8e90114612cb02af0570b.gz

win32 buld error (MinGW)

2011-02-09 Thread Dimitrios Vytiniotis
Hi, I get this when building the libraries: libraries\Win32\System\Win32\Info.hsc:19:1: Warning: In the use of `catch' (imported from System.IO.Error): Deprecated: "Please use the new exceptions variant, Control.Exception.catch" : Failing due to -Werror. make[1]:

patch applied (testsuite): Test Trac #4935

2011-02-09 Thread Simon Peyton Jones
Wed Feb 9 05:31:14 PST 2011 simo...@microsoft.com * Test Trac #4935 M ./tests/ghc-regress/simplCore/should_compile/Makefile +6 A ./tests/ghc-regress/simplCore/should_compile/T4945.hs M ./tests/ghc-regress/simplCore/should_compile/all.T +5 View patch online: http://darcs.haskell.or

RE: Generic deriving: new default methods

2011-02-09 Thread Simon Peyton-Jones
"Generic defaults" seems like a good title, yes. And yes, I'm happy to drop 'derivable type classes' at the same time that we add generic defaults. simion From: José Pedro Magalhães [mailto:j...@cs.uu.nl] Sent: 09 February 2011 11:15 To: Simon Peyton-Jones Cc: cvs-ghc@haskell.org Subject: Re:

Re: Generic deriving: new default methods

2011-02-09 Thread José Pedro Magalhães
Hi Simon, 2011/1/13 Simon Peyton-Jones > > Just an implementation note. There is a lot of machinery already in place > to help you here. Look at the DefMeth type in Class.lhs. It records for > each kind of method what the default code is. All you need do is add an > extra constructor PedroMe