Re: Help with GHC on win nt, doesnt do anything??

1999-08-23 Thread Michael V. Nikolaev
Another reason may be mount type inconsistent with GHC-4.03 text stuff format. This is famous text vs binary problem. GHC-4.03 text stuff is in "Microsoft" text mode, i.e. each line ends with the sequence character sequence that differs from Unix text mode files, containing lines that end with

Re: Help with GHC on win nt, doesnt do anything??

1999-08-23 Thread Michael V. Nikolaev
Hi, It's only advice. May be, you didn't say "make install"? In general, you should have link "ghc" in /usr/local/bin to script "ghc-4.03" in this directory. The last is perl script. In any case, check to see which perl you have installed with command "type perl" under bash prompt. You should

RE: ghc-4.04 -O: panic! mk_cpr_let: not a product

1999-08-23 Thread Simon Peyton-Jones
> lips> ghc-4.04 -O -c -fglasgow-exts MonadLibrary.lhs > > panic! (the `impossible' happened): > mk_cpr_let: not a product > forall a{-ruq-} b{-rur-}. > (a{-ruq-} -> b{-rur-}) > -> MonadLibrary.StateM{-r2o,x-} m{-a30Y-} s{-a30Z-} a{-ruq-} > -> MonadLibrary.St

Help with GHC on win nt, doesnt do anything??

1999-08-23 Thread Ronald J. Legere
I followed closly the instructions for installing ghc-4.03 on my win nt machine. In the end however, I tried the test, and nothing happens! That is: "bash$ ghc-4.03 -o main main.hs" returns with no error, and no file created. THis is also the case if main.hs is full of garbage! On the other han

RE: Compiling GHC

1999-08-23 Thread Simon Marlow
John McCarten writes: > I recently emailed you concerning the installation of GHC, > I have now managed to install and configure to some degree the > system, however it 'compiles' a haskell script but fails when > trying to import the library gmp, giving the message: > > ld: Software Generation

RE: FW: Compiling GHC

1999-08-23 Thread Simon Marlow
> [I don't know if this will be much help, but...] > I've had a lot of trouble trying to install GHC 4.04 under > Linux too, both from the binary distribution and the source one. > This gmp problem was fairly easy to fix, I just hunted > around the (source) directory tree and found that gmp is a

RE: -fddump..

1999-08-23 Thread Simon Marlow
> In ghc-4.04-src.tar.gz .../docs/users_guide/glasgow_exts.vsgml > contains > ... > Use @-fddump-rules@to see ... > Use @-fddump-simpl-stats@ to see ... > ... This one was fixed after 4.04 shipped, and will be in the forthcoming patchlevel 1. Cheers, Simon

Re: Large FiniteMap causes SIGSEGV in ghc-4.04

1999-08-23 Thread Marcin 'Qrczak' Kowalczyk
Sun, 22 Aug 1999 03:39:11 +0200, Michael Weber <[EMAIL PROTECTED]> pisze: > *hmm* this works with ghc-4.04 of 1999/08/03 on Linux, but I had to increase > stack size, i.e. > ./fmtest +RTS -K2M Ah, thanks. Surprisingly, with 1 elements and 4.04 it needs at least -K4M, but with 4.02 it

Re: FW: Compiling GHC

1999-08-23 Thread Manuel M. T. Chakravarty
"Jeffrey R. Lewis" <[EMAIL PROTECTED]> wrote, > Mark Utting wrote: > > > Simon wrote: > > > Can anyone help with this? Simon and Sigbjorn are both > > > on holiday, and I am wonderfully ignorant about such things. > > > > > John McCarten wrote: > > >> I recently emailed you concerning the insta

Re: Large FiniteMap causes SIGSEGV in ghc-4.04

1999-08-23 Thread Michael Weber
On Sat, Aug 21, 1999 at 11:59:25 +, Marcin 'Qrczak' Kowalczyk wrote: > import FiniteMap > main = print . fmToList . listToFM $ [(i,0) | i <- [1..3]] > > This program simply segfaults. With less than 2 elements it works. > With ghc-4.02 it works. *hmm* this works with ghc-4.04 of 1999