Cross compilers

2002-02-27 Thread Sean Seefried
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? Sean Seefried ___ Glasgow-haskell-users mailing list [EMAIL PROT

cannot switch to qualified module names in ghci

2002-02-27 Thread Hal Daume III
It seems that if you are in a module X which imports Foo.Bar, you cannot use :m to get to the Bar module. X> :m Bar can't find module `Bar' X> :m Foo.Bar strange looking module name: `Foo.Bar' It appears the remedy to this would be to modify the definition of isAlphaNumEx in ghci/InteractiveUI.h

mangler

2002-02-27 Thread David Feuer
How much (quantitatively) is gained by using GCC for compilation? It sure sounds like it causes a lot of trouble. How much better is it than an optimizing assembler? David Feuer ___ Glasgow-haskell-users mailing list [EMAIL PROTECTED] http://www.haske

RE: SGI-Port // Mnagler-Gcc Interface...

2002-02-27 Thread Simon Marlow
Hi there, > I'm trying to run GHC in a mips-SGI-irix platform, more > accurately Irix > 6. > > The last binary version avalaible > (ftp://ftp.dcs.glasgow.ac.uk/pub/haskell/glasgow/) is for ghc-2.10 > (ghc-2.10-mips-sgi-irix6.tar.gz) . > > > In order to reach the actual ghc-5-XX step by step,

Re: SGI-Port // Mnagler-Gcc Interface...

2002-02-27 Thread Keith Wansbrough
Rafael writes: > Well, I may be wrong, but I think booting .hc files doesn't avoid > mangling step ... The .hc files used for bootstrapping should be *unregisterised*, which means that they use the mini-interpreter and do not rely on mangling. I think. Over to you, Simon/Julian... :-) --KW 8-)

Re: SGI-Port // Mnagler-Gcc Interface...( Typing mistake on table)

2002-02-27 Thread Rafael Martínez Torres
  > > The other way to do the port is to bootstrap from HC files; i.e., > forget that any ghc build exists on your architecture, and start from > scratch.  The method is discussed briefly at > > http://www.haskell.org/ghc/docs/latest/building/sec-booting-from-c.html > > but basically involves usi

Re: SGI-Port // Mnagler-Gcc Interface...

2002-02-27 Thread Rafael Martínez Torres
> > The other way to do the port is to bootstrap from HC files; i.e., > forget that any ghc build exists on your architecture, and start from > scratch.  The method is discussed briefly at > > http://www.haskell.org/ghc/docs/latest/building/sec-booting-from-c.html > > but basically involves using

RE: Straightforward conversion from Int <-> Word

2002-02-27 Thread Simon Marlow
> Simon Marlow notes: > > But fromIntegral *does* do the right thing, doesn't it? > > > > > Numeric.showHex (fromIntegral (-1 :: Int32) :: Word32) "" > > "0x" > > Interesting. The fact that this fooled Julian as well as me suggests > the behavior needs to be better documented. Int

RE: problem compiling GUM

2002-02-27 Thread Simon Peyton-Jones
There is a GPH mailing list in fact. http://www.cee.hw.ac.uk/~dsg/gph/ It's not listed on the "comprehensive" list of mailing lists at haskell.org, which is surely an oversight. Simon | -Original Message- | From: Hal Daume III [mailto:[EMAIL PROTECTED]] | Sent: 26 February 2002 19:44 |

Re: SGI-Port // Mnagler-Gcc Interface...

2002-02-27 Thread Keith Wansbrough
Rafael writes: > I'm trying to run GHC in a mips-SGI-irix platform, more accurately Irix > 6. > > The last binary version avalaible > (ftp://ftp.dcs.glasgow.ac.uk/pub/haskell/glasgow/) is for ghc-2.10 > (ghc-2.10-mips-sgi-irix6.tar.gz) . > > > In order to reach the actual ghc-5-XX step by step