Re[2]: [Haskell] A road for Haskell into the kernel of a full-fledged OS

2006-06-16 Thread Bulat Ziganshin
Hello Jaap, Friday, June 16, 2006, 7:27:32 PM, you wrote: > I like Haskell a lot, but I chose to use OCaml for this work because > the practicalities of porting the compiler were a little easier to > manage. GHC would be rather harsh on the fairly primitive MINIX memory > management system, altho

Re: [Haskell] A road for Haskell into the kernel of a full-fledged OS

2006-06-16 Thread Jaap Weel
> It is irreleveant what language these services are written in, so > long as they obey the protocol. This is most likely true. I have written an interface using the OCaml FFI to be able to call the MINIX message passing functions from within an OCaml program. It's doesn't work completely just yet

[Haskell] RE: OS-dependent cabal file selection

2006-06-16 Thread Simon Marlow
On 16 June 2006 12:27, Bulat Ziganshin wrote: > sorry if i overfill mail list, but that is another solution, that > don't contain hard-wired name of "Streams.cabal" file and don't > require two separate cabal files - one for windows and one for unix. > instead, it just use the default cabal file a

[Haskell] Re: OS-dependent cabal file selection

2006-06-16 Thread Bulat Ziganshin
Hello Bulat, Friday, June 16, 2006, 11:19:08 AM, you wrote: >>> btw, my cabal file contain line: >>> >>> Build-Depends: base, Win32, template-haskell >>> >>> if i correctly understand, this will not work on unix systems, while >>> without Win32 package program can't be compiled on my windo

[Haskell] Haskell Weekly News: June 16, 2006

2006-06-16 Thread Donald Bruce Stewart
Welcome to issue 37 of HWN, a weekly newsletter covering developments in the Haskell community. Each Monday, new editions are posted to [1]the Haskell mailing list as well as to [2]the Haskell Sequence and [3]Planet Haskell. [4]RSS is also available, and headlines appear on [5]haske

[Haskell] OS-dependent cabal file selection

2006-06-16 Thread Bulat Ziganshin
Hello Simon, Friday, June 9, 2006, 7:23:15 PM, you wrote: >> btw, my cabal file contain line: >> >> Build-Depends: base, Win32, template-haskell >> >> if i correctly understand, this will not work on unix systems, while >> without Win32 package program can't be compiled on my windows box.