Question

Why do I get a segmentation fault when I try to show a negative double or float? There is no problem for negative integers.

Prelude> let a = 4
Prelude> :t a
a :: Integer
Prelude> let b = -4
Prelude> b
-4
Prelude> :t b
b :: Integer
Prelude> let c = 5.6
Prelude> :t c
c :: Double
Prelude> let d = -5.6
Prelude> :t d
d :: Double
Prelude> show d
"-Segmentation fault

I tried it various ways, it seems that the number is correctly understood but not shown. Version info:

ghci --version
The Glorious Glasgow Haskell Compilation System, version 6.10.4
Was it helpful?

Solution

GHC on MacPorts seems to be broken. See https://trac.macports.org/ticket/25265

Consider instead installing the Haskell Platform from haskell.org, which includes GHC 6.12.3 and a bundle of Haskelly goodies.

OTHER TIPS

The most important thing you should realise is that segmentation faults should never occur in Haskell. Its type system ensures that nothing like that "goes wrong" at runtime. If you do see a segmentation fault then either there is a bug in your Haskell compiler or you're interfacing to C code with the Haskell FFI and something has gone wrong with your C code. In pure Haskell code, however, you should never see this.

March 2011: This is fixed in the GHC 7 release of the Haskell Platform, where both 32 bit and 64 bit Mac native ports are in fine condition.

Works for me on 6.12.3. Could be a bug in that version.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top