
28 Feb
2002
28 Feb
'02
9:24 a.m.
Look what came up when I tried to make a cross compiler.
GHC configuration does not support differing host/target (i.e., cross-compiling)
Now what do I do? Can I make a cross compiler?
Never been done, certainly would be an adventure :-) Cross compilation in GHC is usually done by taking .hc files generated on a machine with a working GHC and compiling them on the target machine using only gcc. This is how we bootstrap GHC on new machines. Cheers, Simon