[Haskell-cafe] Re: IDE support

2007-04-27 Thread Georg Sauthoff
igure vim to create a new cabal project > using one command some settings, too. > If you're interested drop me a mail. > You can see some screenshots here http://www.mawercer.de/marcweber/vim/ss/vim/ I am interested as well - just upload it somewhere (or mail me, if p

[Haskell-cafe] Displaying infered type signature of 'offside' functions

2007-04-28 Thread Georg Sauthoff
Well, I mention this, because I would like to integrate some lookup feature (for type signatures) into vim (if it doesn't exist yet). Best regards Georg Sauthoff ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] Re: IDE support

2007-04-28 Thread Georg Sauthoff
On 2007-04-28, Marc Weber <[EMAIL PROTECTED]> wrote: > On Fri, Apr 27, 2007 at 08:05:53PM +0000, Georg Sauthoff wrote: >> what tagging program do you use? > I'm using hasktags beeing distributed with ghc. There has been another > topic about tagging programs for haskel

[Haskell-cafe] Re: Creating pseudo terminals

2007-04-29 Thread Georg Sauthoff
t; followed by calls to grantpt and unlockpt. well, then I suggest 'Stevens, Advanced programming in the unix environment' for basic pseudo terminal programming. Best regards Georg Sauthoff ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.o

[Haskell-cafe] Re: Displaying infered type signature of 'offside' functions

2007-05-05 Thread Georg Sauthoff
erface issues. If some people would like to thrash out > a design, and put it on the Wiki, I think there is a good chance that someone > (possibly even me) would implement it. Sounds great! I will wait a few days, if someone extends this thread and then put th

[Haskell-cafe] How to decrease ghc link time

2007-05-08 Thread Georg Sauthoff
Hi, well, I work with a Haskell project which I regulary compile with ghc. I am a bit unhappy with the link time of the project (i.e. the time ghc needs to link everyting). The project consinst of ~60 Haskell and ~25 foreign files. Some parts of the project are organized like a 'cluster', i.e. t

[Haskell-cafe] Re: How to decrease ghc link time

2007-05-09 Thread Georg Sauthoff
Simon Marlow <[EMAIL PROTECTED]> wrote: Hi, > Georg Sauthoff wrote: >> I am a bit unhappy with the link time of the project (i.e. the time ghc >> needs to link everyting). >> The project consinst of ~60 Haskell and ~25 foreign files. [..] > Make sure everythin

[Haskell-cafe] Shared libraries in GHC

2007-05-25 Thread Georg Sauthoff
. I am afraid, if both frontends are linked statically, the result will look a bit 'bloated' ... Best regards Georg Sauthoff ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] Re: Failure in GHC compilation

2007-06-05 Thread Georg Sauthoff
Esa Ilari Vuokko <[EMAIL PROTECTED]> wrote: Hi, [..] > It's exactly what it says...too long argument list (it's limited in Windows.) [..] I am just curious - is there a OS, where the argument list is not limited (like in limits.h under Unix/Posix)? Best reg

[Haskell-cafe] How to make Prelude.read: no parse more verbose ...

2007-12-19 Thread Georg Sauthoff
Hi, I try to debug some existing Haskell-Code. Out of the blue I get a 'progname: Prelude.read: no parse' error message from GHC. Great. Well, the code includes # grep '\' *| wc -l 23 (sic!) calls to the read fn. Well, how do I compile a Haskell program in such a way, that I get a useful erro

[Haskell-cafe] Re: How to make Prelude.read: no parse more verbose ...

2007-12-21 Thread Georg Sauthoff
Ketil Malde <[EMAIL PROTECTED]> wrote: > Georg Sauthoff <[EMAIL PROTECTED]> writes: >> Well, how do I compile a Haskell program in such a way, that I >> get a useful error message from read? I mean, like the >> filename/linenumber of the calling expression for s

[Haskell-cafe] Fast sorting with Bytestring

2008-06-18 Thread Georg Sauthoff
llating locale sequences), but this shouldn't explain the observed differences sorting the brackets file. Best regards Georg Sauthoff -- Fortune : 'Real programmers don't comment their code. It was hard to write, it should be hard to understand.' ;) __

Re: [Haskell-cafe] Fast sorting with Bytestring

2008-06-18 Thread Georg Sauthoff
ant factor, and not like a factor of 1000 with the brackets. Best regards Georg Sauthoff -- Fortune : 'Real programmers don't comment their code. It was hard to write, it should be hard to understand.' ;) ___ Haskell-Cafe mailing lis

Re: [Haskell-cafe] Fast sorting with Bytestring

2008-06-18 Thread Georg Sauthoff
the difference.. > GNU sort also handles locale-based comparison, which I suspect > explains more of the difference. Try with LC_ALL=C. Well, for input 'bible' with locale en_US.utf8 GNU sort is ~ 6 times slower than with locale C. But for input 'brackets' it is ~ 4