Re: Errors generating compiler/parser/Parser.hs with Happy 1.16 under mingw

2007-07-21 Thread Peter Tanski
On Jul 21, 2007, at 7:19 PM, Ian Lynagh wrote: On Sat, Jul 21, 2007 at 07:08:27PM -0400, Peter Tanski wrote: That seems to be what it is: the preprocessor for gcc 3.4.5 (Mingw special) inserts a space: cat TstFile.pp #define INCLUDE #include INCLUDE "HsVersions.h" gcc -E -u -P TstFile.pp

Re: Linker.c -- little help?

2007-07-21 Thread Peter Tanski
On Jul 21, 2007, at 7:27 PM, Ian Lynagh wrote: On Sat, Jul 21, 2007 at 05:08:13PM -0400, Peter Tanski wrote: I succumbed to the temptation to try and finish this beast off; I have gotten as far as compiling Linker.c in the RTS with MS CL (using ghc-inplace as the driver). I don't understand w

patch applied (ghc): in hpc-tools, removing the use of %error, to allow happy 1.15 to be used.

2007-07-21 Thread Andy Gill
Fri Jul 20 17:06:21 PDT 2007 [EMAIL PROTECTED] * in hpc-tools, removing the use of %error, to allow happy 1.15 to be used. M ./utils/hpc/HpcParser.y -2 +1 ___ Cvs-ghc mailing list Cvs-ghc@haskell.org http://www.haskell.org/mailman/listinfo/cvs-gh

patch applied (ghc): hpc-tools: improving flag processing and help messages, small bug fixes.

2007-07-21 Thread Andy Gill
Fri Jul 20 16:57:03 PDT 2007 [EMAIL PROTECTED] * hpc-tools: improving flag processing and help messages, small bug fixes. M ./utils/hpc/Hpc.hs -8 +11 M ./utils/hpc/HpcCombine.hs -2 +8 M ./utils/hpc/HpcDraft.hs -7 +12 M ./utils/hpc/HpcFlags.hs -35 +52 A ./utils/hpc/HpcLexer.h

[nightly] 21-Jul-2007 build of HEAD on i386-unknown-linux (cam-02-unx.europe.corp.microsoft.com)

2007-07-21 Thread GHC Build Reports
Build description = HEAD on i386-unknown-linux (cam-02-unx.europe.corp.microsoft.com) Build location= /playpen/ghc/nightly/HEAD-cam-02-unx Build config file = /home/simonmar/nightly/site/msrc/conf-HEAD-cam-02-unx Nightly build started on cam-02-unx at Sat Jul 21 19:30:01 BST 2007. checki

Re: Linker.c -- little help?

2007-07-21 Thread Ian Lynagh
Hi Peter, On Sat, Jul 21, 2007 at 05:08:13PM -0400, Peter Tanski wrote: > > I succumbed to the temptation to try and finish this beast off; I > have gotten as far as compiling Linker.c in the RTS with MS CL (using > ghc-inplace as the driver). (Note: CL is more strict about certain > thin

Re: Errors generating compiler/parser/Parser.hs with Happy 1.16 under mingw

2007-07-21 Thread Ian Lynagh
On Sat, Jul 21, 2007 at 07:08:27PM -0400, Peter Tanski wrote: > > That seems to be what it is: the preprocessor for gcc 3.4.5 (Mingw > special) inserts a space: > > cat TstFile.pp > > #define INCLUDE #include > INCLUDE "HsVersions.h" > > > gcc -E -u -P TstFile.pp > #include "HsVersions.h > ^

Re: Errors generating compiler/parser/Parser.hs with Happy 1.16 under mingw

2007-07-21 Thread Peter Tanski
On Jul 21, 2007, at 6:24 PM, Ian Lynagh wrote: On Thu, Jul 19, 2007 at 08:57:36PM -0400, Peter Tanski wrote: Sorry, I forgot to attach the original Parser.hs file. Here it is: Looks like the problem is before this point. You have a space before #include "HsVersions.h" when there shouldn't b

patch applied (testsuite): Tell the testsuite what exeext is

2007-07-21 Thread Ian Lynagh
Sat Jul 21 15:47:08 PDT 2007 Ian Lynagh <[EMAIL PROTECTED]> * Tell the testsuite what exeext is M ./mk/test.mk +1 ___ Cvs-ghc mailing list Cvs-ghc@haskell.org http://www.haskell.org/mailman/listinfo/cvs-ghc

patch applied (testsuite): Fix cabal01 to work on Windows

2007-07-21 Thread Ian Lynagh
Sat Jul 21 14:58:54 PDT 2007 Ian Lynagh <[EMAIL PROTECTED]> * Fix cabal01 to work on Windows M ./tests/ghc-regress/cabal/cabal01/Makefile -8 +13 M ./tests/ghc-regress/cabal/cabal01/all.T -4 +2 M ./tests/ghc-regress/cabal/cabal01/test.cabal -1 ___

patch applied (testsuite): Share the pwd program between tests

2007-07-21 Thread Ian Lynagh
Sat Jul 21 14:58:16 PDT 2007 Ian Lynagh <[EMAIL PROTECTED]> * Share the pwd program between tests ./tests/ghc-regress/rename/prog006/pwd.hs -> ./utils/pwd.hs M ./Makefile -1 +1 M ./mk/test.mk -1 +7 M ./tests/ghc-regress/rename/prog006/Makefile -2 +1 A ./utils/ A ./utils

patch applied (testsuite): Make a non-profiling version of test cabal01

2007-07-21 Thread Ian Lynagh
Sat Jul 21 06:34:57 PDT 2007 Ian Lynagh <[EMAIL PROTECTED]> * Make a non-profiling version of test cabal01 M ./tests/ghc-regress/cabal/cabal01/Makefile -1 +1 M ./tests/ghc-regress/cabal/cabal01/all.T -1 +12 ___ Cvs-ghc mailing list Cvs-ghc@ha

patch applied (ghc): Hack: copy ld.exe to compiler/gcc-lib so Cabal can find it

2007-07-21 Thread Ian Lynagh
Sat Jul 21 13:00:43 PDT 2007 Ian Lynagh <[EMAIL PROTECTED]> * Hack: copy ld.exe to compiler/gcc-lib so Cabal can find it M ./Makefile +22 ___ Cvs-ghc mailing list Cvs-ghc@haskell.org http://www.haskell.org/mailman/listinfo/cvs-ghc

patch applied (ghc): Fix the Windows build

2007-07-21 Thread Ian Lynagh
Fri Jul 20 18:18:17 PDT 2007 Ian Lynagh <[EMAIL PROTECTED]> * Fix the Windows build M ./compat/Compat/Directory.hs +3 ___ Cvs-ghc mailing list Cvs-ghc@haskell.org http://www.haskell.org/mailman/listinfo/cvs-ghc

Re: Errors generating compiler/parser/Parser.hs with Happy 1.16 under mingw

2007-07-21 Thread Ian Lynagh
On Thu, Jul 19, 2007 at 08:57:36PM -0400, Peter Tanski wrote: > > Sorry, I forgot to attach the original Parser.hs file. Here it is: Looks like the problem is before this point. You have a space before #include "HsVersions.h" when there shouldn't be one. In my log this file is built with: c:/mi

Linker.c -- little help?

2007-07-21 Thread Peter Tanski
Hello Simon and Ian, I succumbed to the temptation to try and finish this beast off; I have gotten as far as compiling Linker.c in the RTS with MS CL (using ghc-inplace as the driver). (Note: CL is more strict about certain things than gcc, such as empty structs and extra semicolons.) The

Daily report for head

2007-07-21 Thread BuildBot Collator
Build results: x86-64 Linux head: lost gbesh Intel x86_64 Linux head: pass mnemosyne x86-64 Gentoo head: pass tnaur PPC OSX head:pass fail (failed stage1) tnaur x86 Linux head: pass x86-64 Linux head unreg: pass Dropping unexpected test passes reports from b