pgj-freebsd-i386-stable (x86 FreeBSD STABLE), build 382, Success

2011-10-31 Thread Builder
pgj-freebsd-i386-stable (x86 FreeBSD STABLE), build 382 Build succeeded Details: http://darcs.haskell.org/ghcBuilder/builders/pgj-freebsd-i386-stable/382.html git clone| Success create mk/build.mk | Success get subrepos | Success repo versions| Success setting versi

pgj2 (amd64 FreeBSD HEAD), build 517, Success

2011-10-31 Thread Builder
pgj2 (amd64 FreeBSD HEAD), build 517 Build succeeded Details: http://darcs.haskell.org/ghcBuilder/builders/pgj2/517.html git clone| Success create mk/build.mk | Success get subrepos | Success repo versions| Success setting version date | Success booting

pgj (x86 FreeBSD HEAD), build 519, Success

2011-10-31 Thread Builder
pgj (x86 FreeBSD HEAD), build 519 Build succeeded Details: http://darcs.haskell.org/ghcBuilder/builders/pgj/519.html git clone| Success create mk/build.mk | Success get subrepos | Success repo versions| Success setting version date | Success booting | Su

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

2011-10-31 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 Mon Oct 31 18:00:01 GMT 2011. checking out new source

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

2011-10-31 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 Mon Oct 31 18:10:01 GMT 2011. checking out new s

[commit: ghc] master: Fix unused var warning on windows (3955077)

2011-10-31 Thread Duncan Coutts
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master http://hackage.haskell.org/trac/ghc/changeset/3955077fd55d8190da6c26ffa750b473831755ce >--- commit 3955077fd55d8190da6c26ffa750b473831755ce Author: Duncan Coutts

kgardas-opensolaris-x86-head (x86 Solaris HEAD), build 385, Failure

2011-10-31 Thread Builder
kgardas-opensolaris-x86-head (x86 Solaris HEAD), build 385 Build failed Details: http://darcs.haskell.org/ghcBuilder/builders/kgardas-opensolaris-x86-head/385.html git clone| Success create mk/build.mk | Success get subrepos | Success repo versions| Success setting

Windows build failiure

2011-10-31 Thread Simon Peyton-Jones
Windows build fails thus: "inplace/bin/ghc-stage1.exe" -optc-Wall -optc-Werror -optc-Wall -optc-Wextra -optc-Wstrict-prototypes -optc-Wmissing-prototypes -optc-Wmissing-declarations -optc-Winline -optc-Waggregate-return -optc-Wpointer-arith -optc-Wmissing-noreturn -optc-Wnested-externs -optc-Wr

Re: Turning off Native GHC Code

2011-10-31 Thread Ian Lynagh
On Mon, Oct 31, 2011 at 01:17:02PM -0600, Paul Monday wrote: > > Addition of these vectorization functions is going to require some new > MachOps, once I add a new MachOp, all of the code generators want to know > about the new MachOp as well But what's the problem with just not implementing th

simonmar-win32-head (x86 Windows HEAD), build 431, Failure

2011-10-31 Thread Builder
simonmar-win32-head (x86 Windows HEAD), build 431 Build failed Details: http://darcs.haskell.org/ghcBuilder/builders/simonmar-win32-head/431.html git clone| Success create mk/build.mk | Success get subrepos | Success repo versions| Success setting version date | Suc

Re: Turning off Native GHC Code

2011-10-31 Thread Paul Monday
The compile time is not the issue. I'm working on adding SIMD instructions and experimenting with the LLVM side of things (adding new primtypes / primops). I really just want to add instructions to the LLVM generation for now and leave native SIMD/SSE instructions to someone else. Addition of

Re: Turning off Native GHC Code

2011-10-31 Thread Ian Lynagh
On Mon, Oct 31, 2011 at 12:52:59PM -0600, Paul Monday wrote: > Yeah, I was tracking down the unregistered build semantics …. > > Unfortunately, this simply says to the compiler: > "Don't build USING asm because I'm building on an architecture I don't know", > it doesn't say "don't build asm (nati

Re: Turning off Native GHC Code

2011-10-31 Thread Paul Monday
Yeah, I was tracking down the unregistered build semantics …. Unfortunately, this simply says to the compiler: "Don't build USING asm because I'm building on an architecture I don't know", it doesn't say "don't build asm (native code generation)". Perhaps if I unentangle it from compiler/ghc.cab

simonmar-win32-stable (x86 Windows STABLE), build 364, Failure

2011-10-31 Thread Builder
simonmar-win32-stable (x86 Windows STABLE), build 364 Build failed Details: http://darcs.haskell.org/ghcBuilder/builders/simonmar-win32-stable/364.html git clone | Failure: Just (ExitFailure 128) Build failed Details: http://darcs.haskell.org/ghcBuilder/builders/simonmar-win32-stable/364.html

Re: Turning off Native GHC Code

2011-10-31 Thread David Terei
Check out this page: http://hackage.haskell.org/trac/ghc/wiki/Building/Unregisterised You don't want to do a full unregisterised build if you can avoid it (although its a viable option) but it gives you a starting point, I don't know how just putting: GhcWithNativeCodeGen=NO in your mk/build.mk

Re: git user name and email

2011-10-31 Thread David Terei
Done. On 31 October 2011 10:01, Dimitrios Vytiniotis wrote: > > Hi everyone, it would be useful for someone to reproduce the instructions or > add the link: >           http://help.github.com/set-your-user-name-email-and-github-token/ > somewhere in the developer wiki. (where?) I've forgotten to

Re: Turning off Native GHC Code

2011-10-31 Thread Paul Monday
Hmmm, it's more complex then that. Maybe I need to step back and look differently at this. I'm adding a series of primops/primtypes that I only care about, for now, being in the LLVM code generation branch. Someone else will worry about the other code generation paths. Is the native code gen

[commit: ghc] ghc-constraint-solver: Adding caching from evidence binds. (b4c4633)

2011-10-31 Thread dimitris
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : ghc-constraint-solver http://hackage.haskell.org/trac/ghc/changeset/b4c4633391e069e5cbe463f2762729fd5fec61d2 >--- commit b4c4633391e069e5cbe463f2762729fd5fec61d2 Author:

tn23 (x86 OSX HEAD), build 473, Success

2011-10-31 Thread Builder
tn23 (x86 OSX HEAD), build 473 Build succeeded Details: http://darcs.haskell.org/ghcBuilder/builders/tn23/473.html git clone| Success create mk/build.mk | Success get subrepos | Success repo versions| Success setting version date | Success booting | Succ

[commit: ghc] ghc-kinds: Fix lint again. (0829edf)

2011-10-31 Thread José Pedro Magalhães
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : ghc-kinds http://hackage.haskell.org/trac/ghc/changeset/0829edf792df3eb142e3db430caa80828cd721fb >--- commit 0829edf792df3eb142e3db430caa80828cd721fb Author: Jose Pedro M

Re: [commit: ghc] ghc-kinds: Fix Lint (28bac4f)

2011-10-31 Thread Max Bolingbroke
On 31 October 2011 15:04, Simon Peyton Jones wrote: >  lintCoercion (UnsafeCo ty1 ty2) > -  = do { ty1' <- lintInTy ty1 > -       ; ty2' <- lintInTy ty2 > +  = do { ty1' <- lintType ty1 > +       ; ty2' <- lintType ty2 >        ; return (ty1', ty2') } Really? This might have changed on the ghc-k

Re: Dumping Core to an alternative format

2011-10-31 Thread Aaron Tomb
On Oct 31, 2011, at 7:31 AM, Simon Marlow wrote: > On 28/10/2011 16:27, Knut Halvor Skrede wrote: >> Hi, >> >> I have been trying to dump Core to an alternative format for a while now. >> >> I started trying to use the compileToCoreSimplifed function and >> traversing the resulting CoreModule,

Re: [commit: ghc] master: Use signed comparison for +RTS -N x <= 0 test (43a9271)

2011-10-31 Thread Ian Lynagh
On Mon, Oct 31, 2011 at 02:46:33PM +, Simon Marlow wrote: > On 31/10/2011 13:41, Ian Lynagh wrote: > >On Fri, Oct 28, 2011 at 05:22:23AM -0700, Duncan Coutts wrote: > >> > >>+ int nNodes; > >>+RtsFlags.ParFlags.nNodes = (nat)nNodes; > > > >Is there a reason Rts

[commit: ghc] ghc-kinds: Wibbles with Simon (abdbcf7)

2011-10-31 Thread Simon Peyton Jones
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : ghc-kinds http://hackage.haskell.org/trac/ghc/changeset/abdbcf7b194c413a1cf51670eea8dfaacdbd030a >--- commit abdbcf7b194c413a1cf51670eea8dfaacdbd030a Author: Simon Peyton

[commit: ghc] ghc-kinds: Fix Lint (28bac4f)

2011-10-31 Thread Simon Peyton Jones
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : ghc-kinds http://hackage.haskell.org/trac/ghc/changeset/28bac4f9884e44f79e4edd04fa9740d35bdf550f >--- commit 28bac4f9884e44f79e4edd04fa9740d35bdf550f Author: Simon Peyton

Re: [commit: ghc] master: Use signed comparison for +RTS -N x <= 0 test (43a9271)

2011-10-31 Thread Simon Marlow
On 31/10/2011 13:41, Ian Lynagh wrote: On Fri, Oct 28, 2011 at 05:22:23AM -0700, Duncan Coutts wrote: + int nNodes; +RtsFlags.ParFlags.nNodes = (nat)nNodes; Is there a reason RtsFlags.ParFlags.nNodes shouldn't be an int? What would a negative number mea

Re: Dumping Core to an alternative format

2011-10-31 Thread Simon Marlow
On 28/10/2011 16:27, Knut Halvor Skrede wrote: Hi, I have been trying to dump Core to an alternative format for a while now. I started trying to use the compileToCoreSimplifed function and traversing the resulting CoreModule, however, I was unable to figure out how this datastructure mapped to

Re: [commit: base] master: Update base for new Safe Haskell design (447448a)

2011-10-31 Thread Simon Marlow
On 28/10/2011 13:21, Duncan Coutts wrote: On Thu, 2011-10-27 at 09:12 +0100, Simon Marlow wrote: On 26/10/2011 21:45, David Terei wrote: Hi Duncan, On 26 October 2011 06:05, Duncan Coutts wrote: I don't understand this. Is it required that we mark Data.Trace as unsafe? Why is it not just le

Re: [commit: ghc] master: Use signed comparison for +RTS -N x <= 0 test (43a9271)

2011-10-31 Thread Ian Lynagh
On Fri, Oct 28, 2011 at 05:22:23AM -0700, Duncan Coutts wrote: > > + int nNodes; > +RtsFlags.ParFlags.nNodes = (nat)nNodes; Is there a reason RtsFlags.ParFlags.nNodes shouldn't be an int? Thanks Ian ___ Cvs-ghc ma

[commit: ghc] ghc-kinds: Add annotated testsuite summary. (d694748)

2011-10-31 Thread José Pedro Magalhães
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : ghc-kinds http://hackage.haskell.org/trac/ghc/changeset/d694748d1669037531d171a5eed54382f165c169 >--- commit d694748d1669037531d171a5eed54382f165c169 Author: Jose Pedro M

[commit: ghc] ghc-kinds: Update example tests. (7f5db30)

2011-10-31 Thread José Pedro Magalhães
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : ghc-kinds http://hackage.haskell.org/trac/ghc/changeset/7f5db30bb0f5f7a9383e91a8ed616a7f6fba5367 >--- commit 7f5db30bb0f5f7a9383e91a8ed616a7f6fba5367 Author: Jose Pedro M

[commit: ghc] ghc-kinds: Add precondition test for zonkQuantifiedTyVars. (0034b5a)

2011-10-31 Thread José Pedro Magalhães
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : ghc-kinds http://hackage.haskell.org/trac/ghc/changeset/0034b5a61c984e7ace966dd6a5b87338aed9ab96 >--- commit 0034b5a61c984e7ace966dd6a5b87338aed9ab96 Author: Jose Pedro M

[commit: ghc] ghc-kinds: PolyKinds implies KindSignatures. (563d323)

2011-10-31 Thread José Pedro Magalhães
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : ghc-kinds http://hackage.haskell.org/trac/ghc/changeset/563d3230c6278fd46c59f3f0d71a65ed62c71116 >--- commit 563d3230c6278fd46c59f3f0d71a65ed62c71116 Author: Jose Pedro M

[commit: ghc] ghc-kinds: Only promote datatypes when PolyKinds is on. (ab2fe65)

2011-10-31 Thread José Pedro Magalhães
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : ghc-kinds http://hackage.haskell.org/trac/ghc/changeset/ab2fe65716a0fa31e6e4403cffa1307e57d4c99b >--- commit ab2fe65716a0fa31e6e4403cffa1307e57d4c99b Author: Jose Pedro M

[commit: ghc] ghc-kinds: Documentation, refactoring. (40a4843)

2011-10-31 Thread José Pedro Magalhães
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : ghc-kinds http://hackage.haskell.org/trac/ghc/changeset/40a4843d02d0bd912a63c9c68ae87d2e70b1 >--- commit 40a4843d02d0bd912a63c9c68ae87d2e70b1 Author: Jose Pedro M

Re: Windows bvild failure

2011-10-31 Thread Duncan Coutts
On Sat, 2011-10-29 at 11:01 +, Simon Peyton-Jones wrote: > Windows build failure in HEAD > > "inplace/bin/ghc-stage1.exe" -optc-Wall -optc-Werror -optc-Wall -optc-Wextra > -optc-Wstrict-prototypes -optc-Wmissing-prototypes > -optc-Wmissing-declarations -optc-Winline -optc-Waggregate-return

[commit: ghc] master: Fix recent rts flags changes on windows (d518e8f)

2011-10-31 Thread Duncan Coutts
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master http://hackage.haskell.org/trac/ghc/changeset/d518e8f1a6f111575aba37bb0b0ba00168ad7fcd >--- commit d518e8f1a6f111575aba37bb0b0ba00168ad7fcd Author: Duncan Coutts

New patches in /srv/darcs/git-mirrors/Cabal

2011-10-31 Thread Ian Lynagh
New patches in /srv/darcs/git-mirrors/Cabal commit d7384a6125b55d108cc14ab00207cbef3e15b4cd Author: Duncan Coutts Date: Wed Oct 26 20:43:46 2011 + Bump major version to 1.13 Since 1.12 got released with ghc-7.2.x commit 52285df0a921cd9ad8de5a135e8d43d464209d88 Author: Johan Tibel

[commit: ghc] master: VECTORISE pragmas for type classes and instances (c439818)

2011-10-31 Thread Manuel Chakravarty
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master http://hackage.haskell.org/trac/ghc/changeset/c439818a1ac494baeed5706922c4292e44cdaa49 >--- commit c439818a1ac494baeed5706922c4292e44cdaa49 Author: Manuel M T Chak

[commit: ghc] master: Tabs -> spaces (a39afe4)

2011-10-31 Thread Manuel Chakravarty
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master http://hackage.haskell.org/trac/ghc/changeset/a39afe498c589b33ae258c3fb58ed14f1aba84d8 >--- commit a39afe498c589b33ae258c3fb58ed14f1aba84d8 Author: Manuel M T Chak

[commit: ghc] master: Tabs -> spaces (f05b36d)

2011-10-31 Thread Manuel Chakravarty
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master http://hackage.haskell.org/trac/ghc/changeset/f05b36dc618ef52c7420b993a46e5d0a0d04e269 >--- commit f05b36dc618ef52c7420b993a46e5d0a0d04e269 Author: Manuel M T Chak

[commit: ghc] master: Tabs -> spaces (585c354)

2011-10-31 Thread Manuel Chakravarty
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master http://hackage.haskell.org/trac/ghc/changeset/585c354d71d5cdd75137920d6570ce0f441be129 >--- commit 585c354d71d5cdd75137920d6570ce0f441be129 Author: Manuel M T Chak

[commit: ghc] master: Tabs -> Spaces (44334d4)

2011-10-31 Thread Manuel Chakravarty
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master http://hackage.haskell.org/trac/ghc/changeset/44334d44ea7ca06912e2d54779d15aafc2c772ce >--- commit 44334d44ea7ca06912e2d54779d15aafc2c772ce Author: Manuel M T Chak

[commit: ghc] master: Tabs -> spaces (b03e62f)

2011-10-31 Thread Manuel Chakravarty
Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master http://hackage.haskell.org/trac/ghc/changeset/b03e62fcdbedee6bfcee52ffb519b34e8bc1b640 >--- commit b03e62fcdbedee6bfcee52ffb519b34e8bc1b640 Author: Manuel M T Chak

pgj-freebsd-amd64-stable (amd64 FreeBSD STABLE), build 398, Success

2011-10-31 Thread Builder
pgj-freebsd-amd64-stable (amd64 FreeBSD STABLE), build 398 Build succeeded Details: http://darcs.haskell.org/ghcBuilder/builders/pgj-freebsd-amd64-stable/398.html git clone| Success create mk/build.mk | Success get subrepos | Success repo versions| Success setting v