RE: exhausted simplifier ticks and hs-boot files

2019-08-30 Thread Simon Peyton Jones via Glasgow-haskell-users
- | From: Glasgow-haskell-users On | Behalf Of Ganesh Sittampalam | Sent: 05 August 2019 14:02 | To: glasgow-haskell-users@haskell.org | Subject: exhausted simplifier ticks and hs-boot files | | Hi, | | The code below (also attached - unzip and run go.sh) triggers the GHC | panic "Simplifier

exhausted simplifier ticks and hs-boot files

2019-08-05 Thread Ganesh Sittampalam
Hi, The code below (also attached - unzip and run go.sh) triggers the GHC panic "Simplifier ticks exhausted", and I'm unsure whether I should view it as an instance of the known infelicity in the inliner (https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/bugs.html#bugs-ghc) My code

RE: [Haskell] (GHC) Boot files and instance declarations

2006-05-03 Thread Simon Peyton-Jones
this message Simon | -Original Message- | From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David House | Sent: 02 May 2006 21:36 | To: haskell@haskell.org | Subject: [Haskell] (GHC) Boot files and instance declarations | | Hi all. A quick bootfiles question. | | The GHC docs

boot files...

2004-09-06 Thread MR K P SCHUPKE
I need to change the boot .hi files for TypeRep, to include the derivied show instance for TyThing, what is the format? Keean. ___ Glasgow-haskell-users mailing list [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/glasgow-haskell-users

RE: boot files...

2004-09-06 Thread Simon Peyton-Jones
source tree; can you not elaborate the ppr instances instead? S | -Original Message- | From: [EMAIL PROTECTED] [mailto:glasgow-haskell-users- | [EMAIL PROTECTED] On Behalf Of MR K P SCHUPKE | Sent: 06 September 2004 12:23 | To: [EMAIL PROTECTED] | Subject: boot files... | | | I need

RE: boot files...

2004-09-06 Thread MR K P SCHUPKE
Yes, it might be easier to elaborate the ppr instances... That way I only have to modify instances I am interested in. Keean. ___ Glasgow-haskell-users mailing list [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/glasgow-haskell-users

Suggested improvements to .hi-boot files

2003-01-06 Thread George Russell
I am using .hi-boot files quite a lot at the moment. I'm very grateful for the recent change to a more Haskelly syntax, but I have a couple of suggestions for the GHC team to implement in their no doubt ample free time. 8-) (1) Importing a module {-# SOURCE #-} into itself currently produces

RE: Suggested improvements to .hi-boot files

2003-01-06 Thread Simon Marlow
Thanks for the suggestions, George. May I suggest that a good place for these things is the Feature Requests tracker on the GHC SourceForge page - otherwise good suggestions tend to get lost if we don't implement them immediately. I am using .hi-boot files quite a lot at the moment. I'm

Re: ghc5.03 .hi and .hi-boot files don't you just love those incompatible changes?

2002-04-16 Thread George Russell
Ah, I've figured it out. The new .hi-boot file format is actually Haskell!! Well almost. You have to fully qualify type names (you can't use Int, you must use GHC.Base.Int) and the input isn't run through -cpp. ___ Glasgow-haskell-users mailing list

ghc5.03 .hi and .hi-boot files don't you just love those incompatible changes?

2002-04-15 Thread George Russell
Formerly .hi and .hi-boot files had the same format; however ghc5.03 has a binary format for .hi files and a textual one for .hi-boot files. This is a nuisance for me, because I have an ingenious scheme by which .hi-boot files are themselves from Haskell files by ghc, which thinks