5. What machines the Glasgow tools run on

The main question is whether or not the Haskell compiler (GHC) runs on your platform.

A ``platform'' is a architecture/manufacturer/operating-system combination, such as sparc-sun-solaris2. Other common ones are alpha-dec-osf2, hppa1.1-hp-hpux9, i386-unknown-linux, i386-unknown-solaris2, i386-unknown-freebsd, i386-unknown-cygwin32, m68k-sun-sunos4, mips-sgi-irix5, sparc-sun-sunos4, sparc-sun-solaris2, powerpc-ibm-aix.

Bear in mind that certain ``bundles'', e.g. parallel Haskell, may not work on all machines for which basic Haskell compiling is supported.

Some libraries may only work on a limited number of platforms; for example, a sockets library is of no use unless the operating system supports the underlying BSDisms.

5.1. What platforms the Haskell compiler (GHC) runs on

The GHC hierarchy of Porting Goodness: (a) Best is a native-code generator; (b) next best is a ``registerised'' port; (c) the bare minimum is an ``unregisterised'' port. (``Unregisterised'' is so terrible that we won't say more about it).

We use Sparcs running Solaris 2.7 and x86 boxes running FreeBSD and Linux, so those are the best supported platforms, unsurprisingly.

Here's everything that's known about GHC ports. We identify platforms by their ``canonical'' CPU/Manufacturer/OS triple.

alpha-dec-{osf,linux,freebsd,openbsd,netbsd}:

The OSF port is currently working (as of GHC version 5.02.1) and well supported. The native code generator is currently non-working. Other operating systems will require some minor porting.

sparc-sun-sunos4

Probably works with minor tweaks, hasn't been tested for a while.

sparc-sun-solaris2

Fully supported, including native-code generator.

hppa1.1-hp-hpux (HP-PA boxes running HPUX 9.x)

Works registerised. No native-code generator.

i386-unknown-linux (PCs running Linux, ELF binary format)

GHC works registerised and has a native code generator. You must have GCC 2.7.x or later. NOTE about glibc versions: GHC binaries built on a system running glibc 2.0 won't work on a system running glibc 2.1, and vice versa. In general, don't expect compatibility between glibc versions, even if the shared library version hasn't changed.

i386-unknown-freebsd (PCs running FreeBSD 2.2 or higher)

GHC works registerised. Pre-built packages are available in the native package format, so if you just need binaries you're better off just installing the package.

i386-unknown-{netbsd,openbsd) (PCs running NetBSD and OpenBSD)

Will require some minor porting effort, but should work registerised.

i386-unknown-cygwin32:

Fully supported under Win9x/NT, including a native code generator. Requires the cygwin32 compatibility library and a healthy collection of GNU tools (i.e., gcc, GNU ld, bash etc.).

mips-sgi-irix5

Port currently doesn't work, needs some minimal porting effort. As usual, we don't have access to machines and there hasn't been an overwhelming demand for this port, but feel free to get in touch.

powerpc-ibm-aix

Port currently doesn't work, needs some minimal porting effort. As usual, we don't have access to machines and there hasn't been an overwhelming demand for this port, but feel free to get in touch.

powerpc-apple-macosx

Works, unregisterised only at the moment.

Various other systems have had GHC ported to them in the distant past, including various Motorola 68k boxes. The 68k support still remains, but porting to one of these systems will certainly be a non-trivial task.

5.2. What machines the other tools run on

Unless you hear otherwise, the other tools work if GHC works.