RE: Generating External-Core for GHC libraries

2012-04-04 Thread Simon Peyton-Jones
askell.org Subject: Generating External-Core for GHC libraries Hi, I am trying to generate External-Core files for the GHC libraries. I need these files as I am working on an interpreter for Haskell (by interpreting External-core). I have tried following the README and HOWTO files of both the e

Generating External-Core for GHC libraries

2012-04-04 Thread Knut Halvor Skrede
Hi, I am trying to generate External-Core files for the GHC libraries. I need these files as I am working on an interpreter for Haskell (by interpreting External-core). I have tried following the README and HOWTO files of both the extcore and linkcore packages. Unfortunately, I have been unable

Re: GHC Libraries

2011-08-04 Thread Chris Dornan
m:* Bryan O'Sullivan [mailto:b...@serpentine.com] > *Sent:* 03 August 2011 18:26 > *To:* David Terei > *Cc:* Ian Lynagh; Simon Marlow; Simon Peyton-Jones; cvs-ghc@haskell.org > *Subject:* Re: GHC Libraries > > ** ** > > On Tue, Aug 2, 2011 at 5:37 PM, David Terei wr

RE: GHC Libraries

2011-08-04 Thread Simon Peyton-Jones
livan [mailto:b...@serpentine.com] Sent: 03 August 2011 18:26 To: David Terei Cc: Ian Lynagh; Simon Marlow; Simon Peyton-Jones; cvs-ghc@haskell.org Subject: Re: GHC Libraries On Tue, Aug 2, 2011 at 5:37 PM, David Terei mailto:davidte...@gmail.com>> wrote: These packages are unmaintained: Win32

RE: GHC Libraries

2011-08-04 Thread Simon Marlow
> So only unresolved issue is the '.darcs-boring' files. OK to remove these? Sure, go ahead. Simon ___ Cvs-ghc mailing list Cvs-ghc@haskell.org http://www.haskell.org/mailman/listinfo/cvs-ghc

Re: GHC Libraries

2011-08-03 Thread Ian Lynagh
On Wed, Aug 03, 2011 at 12:40:59PM -0700, David Terei wrote: > > So only unresolved issue is the '.darcs-boring' files. OK to remove these? If the main repository is converted to git, yes. Thanks Ian ___ Cvs-ghc mailing list Cvs-ghc@haskell.org http

Re: GHC Libraries

2011-08-03 Thread David Terei
On 3 August 2011 10:25, Bryan O'Sullivan wrote: > On Tue, Aug 2, 2011 at 5:37 PM, David Terei wrote: >> >> These packages are unmaintained: >> >> Win32    Volunteer needed >> xhtml    Volunteer needed > > I can take over the Win32 package. > On 3 August 2011 11:06, Chris Dornan wrote: > Are you

RE: GHC Libraries

2011-08-03 Thread Chris Dornan
Are you still looking for an xhtml maintainer? That is something I could help with. Chris From: cvs-ghc-boun...@haskell.org [mailto:cvs-ghc-boun...@haskell.org] On Behalf Of Bryan O'Sullivan Sent: 03 August 2011 18:26 To: David Terei Cc: Simon Marlow; cvs-ghc@haskell.org Subject: Re

Re: GHC Libraries

2011-08-03 Thread Bryan O'Sullivan
On Tue, Aug 2, 2011 at 5:37 PM, David Terei wrote: > These packages are unmaintained: > > Win32Volunteer needed > xhtmlVolunteer needed > I can take over the Win32 package. ___ Cvs-ghc mailing list Cvs-ghc@haskell.org http://www.haskell.org/mai

Re: GHC Libraries

2011-08-03 Thread Simon Marlow
On 03/08/2011 08:03, Simon Peyton-Jones wrote: | These packages are unmaintained: | | Win32 Volunteer needed | xhtml Volunteer needed | | I think it would be a good idea to change the .cabal file for them and | set the maintainer field to be either 'Unmaintained |' or 'Volunteer

RE: GHC Libraries

2011-08-03 Thread Simon Peyton-Jones
| These packages are unmaintained: | | Win32 Volunteer needed | xhtml Volunteer needed | | I think it would be a good idea to change the .cabal file for them and | set the maintainer field to be either 'Unmaintained | ' or 'Volunteer Needed '. Yes I agree. | The xhtml library

GHC Libraries

2011-08-02 Thread David Terei
Hi All, These packages are unmaintained: Win32Volunteer needed xhtmlVolunteer needed I think it would be a good idea to change the .cabal file for them and set the maintainer field to be either 'Unmaintained ' or 'Volunteer Needed '. The xhtml library is also apparently still maintained

patch applied (ghc): Libraries bytestirng, time, binary need -fno-warn-identities

2010-11-16 Thread Simon Peyton Jones
Tue Nov 16 09:16:10 PST 2010 simo...@microsoft.com * Libraries bytestirng, time, binary need -fno-warn-identities They all have redundant uses of fromIntegral, but are no under GHC HQ control. M ./mk/validate-settings.mk -2 +5 View patch online: http://darcs.haskell.org/cgi-bin/darc

patch applied (ghc): Libraries Makefile Hack for ndp

2008-05-17 Thread Ian Lynagh
Fri May 16 16:58:18 PDT 2008 Ian Lynagh <[EMAIL PROTECTED]> * Libraries Makefile Hack for ndp We use the "build" rather than "make" target M ./libraries/Makefile -1 +6 View patch online: http://darcs.haskell.org/ghc/_darcs/patches/20080516235818-3fd76-7bc0060cb17261633a0213fd0f51b61a6c9b

Re: Using Haddock 2.0 to build GHC libraries

2007-10-26 Thread Duncan Coutts
On Fri, 2007-10-26 at 13:31 +0100, Simon Marlow wrote: > This is specific to the GHC build system. There are flags defined in > build.mk that are local to the build, and have to be plumbed through to > Cabal. We don't want to have to reconfigure every time these flags change, > so they're pass

Re: Using Haddock 2.0 to build GHC libraries

2007-10-26 Thread Simon Marlow
Duncan Coutts wrote: On Fri, 2007-10-26 at 09:07 +0100, Simon Marlow wrote: I suspect all you need to do is add $(addprefix --ghc-option=,$(GhcLibHcOpts) $(SRC_HC_OPTS)) to the 'setup haddock' command line. That is, as long as --ghc-option is accepted by Cabal's haddock command, if not w

Re: Using Haddock 2.0 to build GHC libraries

2007-10-26 Thread David Waern
> On Fri, 2007-10-26 at 09:07 +0100, Simon Marlow wrote: > >> I suspect all you need to do is add >> >>$(addprefix --ghc-option=,$(GhcLibHcOpts) $(SRC_HC_OPTS)) >> >> to the 'setup haddock' command line. That is, as long as --ghc-option >> is >> accepted by Cabal's haddock command, if not we'l

Re: Using Haddock 2.0 to build GHC libraries

2007-10-26 Thread Duncan Coutts
On Fri, 2007-10-26 at 09:07 +0100, Simon Marlow wrote: > I suspect all you need to do is add > >$(addprefix --ghc-option=,$(GhcLibHcOpts) $(SRC_HC_OPTS)) > > to the 'setup haddock' command line. That is, as long as --ghc-option is > accepted by Cabal's haddock command, if not we'll need to

Re: Using Haddock 2.0 to build GHC libraries

2007-10-26 Thread Simon Marlow
David Waern wrote: I'm trying to build docs from a GHC 6.8.0 source distribution using Haddock 2.0. I'm just using "make" in the ghc root dir. When processing the base package I get the following errors: Foreign/Storable.hs:158:58: Couldn't match expected type `Integer' against inferred typ

Using Haddock 2.0 to build GHC libraries

2007-10-25 Thread David Waern
Hi, I'm trying to build docs from a GHC 6.8.0 source distribution using Haddock 2.0. I'm just using "make" in the ghc root dir. When processing the base package I get the following errors: Foreign/Storable.hs:158:58: Couldn't match expected type `Integer' against inferred type `Int' In th

patch applied (ghc): libraries/hpc is boring (in the GHC repo)

2007-07-09 Thread Ian Lynagh
Sun Jul 8 10:32:46 PDT 2007 Ian Lynagh <[EMAIL PROTECTED]> * libraries/hpc is boring (in the GHC repo) M ./.darcs-boring +1 ___ Cvs-ghc mailing list Cvs-ghc@haskell.org http://www.haskell.org/mailman/listinfo/cvs-ghc

patch applied (ghc): libraries/filepath/ is boring

2007-05-04 Thread Ian Lynagh
Fri May 4 07:57:56 PDT 2007 Ian Lynagh <[EMAIL PROTECTED]> * libraries/filepath/ is boring M ./.darcs-boring +1 ___ Cvs-ghc mailing list Cvs-ghc@haskell.org http://www.haskell.org/mailman/listinfo/cvs-ghc