Re: Heads-up: new parallel I/O manager merged

2013-02-17 Thread 山本和彦
Hello, This phenomenon has gone away today. Building is OK on Mac. Also "validate" resulted in: Unexpected failures: codeGen/should_run cgrun071 [bad exit code] (normal) perf/compiler T4801 [stat too good] (normal) perf/haddockhaddock.Cabal [stat not good enough] (normal)

Re: Current testsuite failures

2013-02-17 Thread Ian Lynagh
On Thu, Feb 14, 2013 at 10:44:44AM +, José Pedro Magalhães wrote: > > Last night I've built GHC HEAD with the default settings, and ran the > testsuite with just `make`. It > ran into 77 unexpected failures; the failure log is available at > http://hpaste.org/82291. The summary > is at the end

Re: [PATCH] fixes for android in libraries/unix

2013-02-17 Thread Nathan Hüsken
On 02/17/2013 01:58 PM, Ian Lynagh wrote: Hi Nathan, On Tue, Jan 29, 2013 at 07:45:34PM +0100, Nathan Hüsken wrote: 2 is difficult. To correctly test if _POSIX_VDISABLE is supported, a program must be compiled and run which test if _POSIX_VDISABLE is != -1. But that is not possible for cross co

unprotected use of global variables in base:GHC.IO.Encoding

2013-02-17 Thread Nicolas Frisby
I've noticed some suspicious code in base:GHC.IO.Encoding. setLocaleEncoding, setFileSystemEncoding, setForeignEncoding :: TextEncoding -> IO () (getLocaleEncoding, setLocaleEncoding) = mkGlobal initLocaleEncoding (getFileSystemEncoding, setFileSystemEncoding) = mkGlobal initFileSystemE

Re: [PATCH] (haskeline) Include termios.h on android

2013-02-17 Thread Ian Lynagh
On Sun, Feb 17, 2013 at 05:01:45PM +0100, Nathan Hüsken wrote: > On 02/17/2013 01:42 PM, Ian Lynagh wrote: > > > >>-#ifdef USE_TERMIOS_H > >>+#if defined(USE_TERMIOS_H) || defined(__ANDROID__) > >It looks like this would be better handled by defining USE_TERMIOS_H in > >the .cabal file if the os is

Re: [PATCH] (haskeline) Include termios.h on android

2013-02-17 Thread Nathan Hüsken
On 02/17/2013 01:42 PM, Ian Lynagh wrote: Hi Nathan, On Fri, Jan 25, 2013 at 09:45:47AM +0100, Nathan Hüsken wrote: This patch is for libraries/haskeline. Thanks for the patch, although note that haskeline is maintained by Judah Jacobson and has a trac here: http://trac.haskell.org/

Re: [commit: ghc] master: Build fix for dyn way on Windows; patch from nus (c39d315)

2013-02-17 Thread Ian Lynagh
On Sat, Feb 16, 2013 at 06:26:35PM -0500, Bill Tutt wrote: > > Shouldn't this use the new #define you added to Prelude.h just above? Good point, thanks. Done. Thanks Ian ___ ghc-devs mailing list ghc-devs@haskell.org http://www.haskell.org/mailman/l

Re: [PATCH] fixes for android in libraries/unix

2013-02-17 Thread Ian Lynagh
Hi Nathan, On Tue, Jan 29, 2013 at 07:45:34PM +0100, Nathan Hüsken wrote: > > 2 is difficult. To correctly test if _POSIX_VDISABLE is supported, a > program must be compiled and run which test if _POSIX_VDISABLE is != -1. > But that is not possible for cross compilation, because the program can >

Re: [PATCH] (haskeline) Include termios.h on android

2013-02-17 Thread Ian Lynagh
Hi Nathan, On Fri, Jan 25, 2013 at 09:45:47AM +0100, Nathan Hüsken wrote: > > This patch is for libraries/haskeline. Thanks for the patch, although note that haskeline is maintained by Judah Jacobson and has a trac here: http://trac.haskell.org/haskeline > -#ifdef USE_TERMIOS_H > +#if