Difference between revisions of "Raspberry Pi"

From HaskellWiki
Jump to navigation Jump to search
(→‎GHC Status: Added a link to the GHC Trac)
(One intermediate revision by one other user not shown)
Line 29: Line 29:
 
* Debian Wheezy - [http://packages.debian.org/wheezy/ghc 7.4.1-3]
 
* Debian Wheezy - [http://packages.debian.org/wheezy/ghc 7.4.1-3]
   
'''Note:''' GHCi does not currently work on ARM below version 7.4.2. See [http://www.haskell.org/pipermail/haskell-cafe/2012-June/101704.html this post on haskell-cafe for information on this]
+
'''Note:''' GHCi does not currently work on ARM, but it may become available in GHC 7.8. See [http://www.haskell.org/pipermail/haskell-cafe/2013-December/111825.html this post on haskell-cafe] for the status as of December 2013.
   
[http://www.raspberrypi.org/phpBB3/viewtopic.php?f=34&t=6655 djhuk has been able to compile] and install GHC-7.4.2 via QEMU to the Raspberry Pi but there still seems to be some work to do.
+
There seemed to be a point where GHCi was [http://www.haskell.org/pipermail/haskell-cafe/2012-June/101704.html merged into version 7.4.2.], and it may still be possible to install it in an experimental manner, but it is not (currently) available in the Debian Raspberry Pi repository. [http://www.raspberrypi.org/phpBB3/viewtopic.php?f=34&t=6655 Here is a discussion thread wherein djhuk describes] compiling and installing GHC-7.4.2 via QEMU to the Raspberry Pi, with incomplete GHCi functionality.
  +
  +
To build a cross-compiler from Linux to Raspberry Pi (running Raspbian), see the [https://ghc.haskell.org/trac/ghc/wiki/Building/Preparation/RaspberryPi GHC Trac].
   
 
== Current Issues ==
 
== Current Issues ==

Revision as of 19:51, 22 November 2014

This article is a stub. You can help by expanding it.

Introduction

Raspberry Pi is an ARM based single-board computer, developed for educational purposes, costing USD 25. For more details, see the Wikipedia article about Raspberry Pi, or the FAQ list.

Raspberry Pi Beta Board.jpg

Links

GHC Status

Of the "official" images currently available from the Raspberry Pi Downloads page, the following versions of GHC are available

Note: GHCi does not currently work on ARM, but it may become available in GHC 7.8. See this post on haskell-cafe for the status as of December 2013.

There seemed to be a point where GHCi was merged into version 7.4.2., and it may still be possible to install it in an experimental manner, but it is not (currently) available in the Debian Raspberry Pi repository. Here is a discussion thread wherein djhuk describes compiling and installing GHC-7.4.2 via QEMU to the Raspberry Pi, with incomplete GHCi functionality.

To build a cross-compiler from Linux to Raspberry Pi (running Raspbian), see the GHC Trac.

Current Issues

The main issues encountered so far is the memory limitations of the device, at 256 MB GHC will execute fine, but problems will start to arise when using cabal-install to install new libraries, especially ones with lots of dependencies. Recent model B boards have 512 MB on board [1].

Potential solutions to this problem have been suggested, including using QEMU on a more powerful system and thus compiling your application there and copying the resulting binary across to your Raspberry Pi

See also