problem with installing ghc-5.00 from .hc file

2001-04-16 Thread Saswat Anand
I am trying to install ghc-5.00 from .hc files on windows NT. But I get the following error. It seems Package.hc is missing. Please help. BTW when the windows binaries will be on sale? Thanks, Saswat ==fptools== make all

fatal error: interpretBCO

2001-05-17 Thread Saswat Anand
I get the following error with one of my programs. ghc5.00: fatal error: interpretBCO: unknown or unimplemented opcode Is it a bug? I am using i386-unknown-linux binary on SuSE 7.0. Thanks, Saswat ___ Glasgow-haskell-bugs mailing list [EMAIL

-fno-implicit-prelude

2001-06-01 Thread Saswat Anand
does not work with ghci-5.00. Shouldn't it? Thanks, S ___ Glasgow-haskell-bugs mailing list [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs

Profiling with -O2

2001-08-14 Thread Saswat Anand
Hi, When I am trying to compile my prgram with -prof -auto-all -O2, It fails saying: Failed to find interface decl for But it is fine if I compile with either profiling or optimization options alone. Are they not supposed to work together? Thanks, Saswat

Profiling Question

2001-09-23 Thread Saswat Anand
Hi, In the following profile, should not the sum of %time and %alloc be less than or equal to 100. It is not in this case. What do they mean then? Thanks, Saswat total time = 324.38 secs (16219 ticks @ 20 ms) total alloc = 4,577,009,108 bytes (excludes profiling

TH bug: Lift (a - b) where

2004-05-21 Thread Saswat Anand
Hello, I dont know if it has been reported, this looks like a bug in TH. The program goes into infinite loop. Saswat - instance Lift (a - b) where lift f = [| f |] compile :: (a - b) - ExpQ compile p = lift p printE :: ExpQ - IO () printE expQ = do exp - unQ expQ