OlivierSohn

Results 33 comments of OlivierSohn

@drvink After reading your comment I tried haskell-ide-engine, unfortunately I ran into [this error](https://github.com/haskell/haskell-ide-engine/issues/606) : it seems multi-project support is not there yet!

Hello Richard, Thanks for the info, I don't know how to contact people on sourceforge, but yes it would be nice if the maintainers of ftgl would integrate the changes...

btw I saw there are 2 emails in the README, maybe they are the maintainers?

@harendra-kumar : could it be that while running the benchmarks, the CPU temperature increases, and when the CPU reaches a given temperature it is slown down by the OS (or...

> Also why not add your manual Lift instance in a PR without referencing template-haskell? The `Lift` class is in `Language.Haskell.TH.Syntax`, this is why we need to reference `template-haskell`.

Btw, the `Lift`instance I implemented for my type is: ```haskell newtype Time a b = Time TimeSpec deriving(Generic, Eq, Ord) instance Lift (Time a b) where lift (Time (TimeSpec s...

> Is template-haskell available everywhere? How widely is it installed? How does it interact with cross-compilation? It's available on hackage, do you mean "which platforms are supported?" I have no...

Do you have a minimal sample program reproducing the issue?

One way to debug this is to add logs inside glfwInit() and see where it blocks, can you try that?

I guess going deeper is the way to go. I'm not familiar with that code, but if you find the exact call that takes time, then we can google the...