5
votes
1answer
133 views
How to get 64-bit binaries from GHC for Snow Leopard?
Hey guys,
I've recently upgraded my OS to Snow Leopard, which broke my GHC. I was able to fix it on one machine by adding flags for 32-bit compiles in /usr/bin/ghc (something lik …
0
votes
3answers
101 views
How to use fromInteger in Haskell?
One way to calculate 2^8 in haskell is by writing
product(replicate 8 2)
When trying to create a function for this, defined as follows...
power1 :: Integer → Integer → Integer …
8
votes
5answers
444 views
Mixing Erlang and Haskell
If you've bought into the functional programming paradigm, the chances are that you like both Erlang and Haskell. Both have purely functional cores and other goodness such as ligh …
0
votes
4answers
85 views
How to programmatically retrieve GHC package information?
More specifically, given an arbritary package name I need to retrieve the same library-dirs field that can be obtained with the ghc-pkg describe command from inside a running Haske …
1
vote
3answers
110 views
How to stop GHC from generating intermediate files?
When compiling a haskell source file via ghc --make foo.hs GHC always leaves behind a variety of intermediate files other than foo.exe. These are foo.hi and foo.o.
I often end up …
1
vote
2answers
121 views
Problem using Network package in GHC
I have this simple code:
import Network
main = return ()
executing it with runhaskell fails:
>runhaskell test.hs
test.hs: C:\ghc\ghc-6.10.4\network-2.2.1.2\HSnetwork-2.2.1.2.o: …
1
vote
1answer
129 views
GHC parse error which I do not understand
I am teaching myself Haskell
I want to write a function that recursively finds the first number that has an integer square root and is smaller than a starting number.
It looks li …
1
vote
1answer
38 views
Haddock: Failed to create dependency graph (when adding sections with * or a module heading)
I compiled and installed haddock-2.4.2 from the tarball source.
Adding a few simple comments to the code here:
https://dl.getdropbox.com/u/143480/doc/DualMap.hs
and running ha …
0
votes
1answer
360 views
On Cygwin, how do I install curl from hackage?
From a Windows command prompt,
c:\>cabal install curl
Resolving dependencies...
Configuring curl-1.3.5...
cabal: Error: some packages failed to install:
curl-1.3.5 failed during t …
3
votes
3answers
247 views
Pass Pointer to an Array in Haskell to a C Function
I have the following C code:
#include <sys/times.h>
#include <time.h>
float etime_( float *tarray )
{ struct tms buf;
times( &buf );
tarray[0] = 1.0 …
15
votes
3answers
421 views
Should I use GHC Haskell extensions or not?
As I am learning Haskell, I see that there is a lot of language extensions used in real life code. As a beginner, should I learn to use them, or should I avoid them at all cost? I …
5
votes
6answers
550 views
Making small haskell executables?
Are there any good ways to make small haskell executables? With ghc6 a simple hello world program seems to come to about 370kB (523kB before strip). Hello world in C is about 4kB ( …
0
votes
1answer
120 views
specialization in type classes using ghc
How can I make the genOut/String fire?
module IOStream where
import System.IO
import System.IO.Unsafe
class Out a where
out :: a → String
instance Show a ⇒ Out a where
out …
5
votes
4answers
534 views
What is a good way to debug haskell code?
I have used the ghci debugger but would really prefer if it was somewhat integrated with a text editor to simplify the process of setting breakpoints. It should probably not strict …
3
votes
1answer
249 views
How to catch arbitrary exception in Haskell?
In ghc 6.10.1.
