RE: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-04 Thread Hal Daume III
Simon,

Sorry about the confusion here...the one you uploaded I don't think was
entirely fixed (this is my first time building a binary distribution -- I
promise next time it will be much smoother).  Please re-sync with:

  http://www.isi.edu/~hdaume/ghc-6.0-sparc-solaris2.tar.bz2

This should not have the path problems the previous one(s) did.

--
 Hal Daume III   | [EMAIL PROTECTED]
 Arrest this man, he talks in maths.   | www.isi.edu/~hdaume

On Tue, 3 Jun 2003, Simon Marlow wrote:

  
  Sorry about that.  It's fixed at:
http://www.isi.edu/~hdaume/ghc-6.0-sparc-solaris2.tar.bz2
  
  Simon: could you update the haskell.org link?
 
 Uploaded, thanks.
 
 Simon
 ___
 Glasgow-haskell-users mailing list
 [EMAIL PROTECTED]
 http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
 


___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


RE: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-04 Thread Simon Marlow
 
 Sorry about the confusion here...the one you uploaded I don't 
 think was
 entirely fixed (this is my first time building a binary 
 distribution -- I
 promise next time it will be much smoother).  Please re-sync with:
 
   http://www.isi.edu/~hdaume/ghc-6.0-sparc-solaris2.tar.bz2
 
 This should not have the path problems the previous one(s) did.

Done.

Simon
___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


RE: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-04 Thread Matt Fairtlough
I am having trouble installing the package in a non-standard place.  After
downloading and unpacking I did:

 ./configure --prefix=/home/matt
creating cache ./config.cache
checking host system type... sparc-sun-solaris2.9
...
usual reports, not relevant to problem reported I think
...
updating cache ./config.cache
creating ./config.status
creating Makefile

Configuration done, ready to either 'make install'
or 'make in-place'.
(see README and INSTALL files for more info.)


So this looks ok; and is confirmed by:

 make show-install-setup
Install setup...
bindir  = /home/matt/bin
libdir  = /home/matt/lib/ghc-6.0 (libdir  = /home/matt/lib/ghc-6.0)
datadir = /home/matt/share/ghc-6.0 (datadir = /home/matt/share/ghc-6.0)
 make install ! install.log 

 more install.log
Configuring ghc, version 6.0, on sparc-sun-solaris2 ...
Creating a configured version of ghc-asm ..
Done.
Creating a configured version of ghc-split ..
Done.
Creating a configured version of ghc-6.0 ..
Done.
Creating a configured version of ghci-6.0 ..
Done.
Creating a configured version of ghc-pkg-6.0 ..
Done.
Creating a configured version of hsc2hs ..
Done.
./mkdirhier /home/matt/bin
(cd lib/sparc-sun-solaris2; find . -type d -exec sh -c '../.././mkdirhier $0 
/ho
me/matt/lib/ghc-6.0/$0' {} \; )
(cd share; find . -type d -exec sh -c '.././mkdirhier 
/home/matt/share/ghc-6.0/$
0' {} \; )
for i in  ghc-6.0 ghci-6.0 ghc-pkg-6.0 hsc2hs ; do \
   if test -n $i ; then /usr/local/bin/ginstall -c -m 755   
bin/sparc-sun-sola
ris2/$i /home/matt/bin; fi; \
done;
for i in hp2ps ghcprof ; do \
   if test -n $i ; then /usr/local/bin/ginstall -c -m 755   
bin/sparc-sun-sola
ris2/$i /home/matt/bin; fi; \
done;
Creating a symbolic link from ghc-6.0 to ghc
Creating a symbolic link from ghci-6.0 to ghci
Creating a symbolic link from ghc-pkg-6.0 to ghc-pkg
(cd lib/sparc-sun-solaris2; find . -type f -exec sh -c 'cp $0 
/home/matt/lib/ghc
-6.0/$0' {} \; )
for i in `(cd share; find . -type f )`; do \
   /usr/local/bin/ginstall -c -m 644   share/$i /home/matt/share/ghc-6.0/$i; 
\
done
./mkdirhier /home/matt/share/ghc-6.0/html 
if test -d share/html ; then cp -r share/html/* /home/matt/share/ghc-6.0/html 
; 
fi
for i in share/*.ps; do \
cp $i /home/matt/share/ghc-6.0 ; \
done
cp: cannot stat `share/*.ps': No such file or directory
make: *** [install-docs] Error 1

ok, a problem with the documentation but I think this is the last thing make
install does so it shouldn't affect the binaries.

 ls -l `which ghc`
lrwxrwxrwx1 matt vt  7 Jun  3 16:54 /home/matt/bin/ghc - ghc-6.0*

ok, looks reasonable, should work:

 ghc --version
/home/matt/bin/ghc: /usr/local/lib/ghc-6.0/ghc-6.0: not found

oops, who said anything about /usr/local?

 more /home/matt/bin/ghc
#! /bin/sh
bindir='/home/matt/bin'
libdir='/home/matt/lib/ghc-6.0'
libexecdir='/home/matt/lib/ghc-6.0'
datadir='/home/matt/share/ghc-6.0'
SED='/usr/local/bin/sed'
DEFAULT_TMPDIR='/tmp'
#!/bin/sh
GHCBIN=/usr/local/lib/ghc-6.0/ghc-6.0;
TOPDIROPT=-B/usr/local/lib/ghc-6.0;
# Mini-driver for GHC
exec $GHCBIN $TOPDIROPT ${1+$@}

That doesn't look right at all.

Matt.

---
Matt Fairtlough  0114-22-21826  http://www.dcs.shef.ac.uk/~matt/
---



___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


Re: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-04 Thread Volker Stolz
In local.glasgow-haskell-users, you wrote:
 I am having trouble installing the package in a non-standard place.  After
 downloading and unpacking I did:

There have been some fixes to this particular package. Please check
if there's a more recent package (t  1 day)!

Volker
-- 
http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME
rage against the finite state machine 
___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


Re: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-04 Thread Hal Daume III
I don't think this is the problem, though, as none of the path issues he
mentioned contained the ill-mannered hdaume in them :).

Perhaps SimonM can comment more on this...

--
 Hal Daume III   | [EMAIL PROTECTED]
 Arrest this man, he talks in maths.   | www.isi.edu/~hdaume

On Tue, 3 Jun 2003, Volker Stolz wrote:

 In local.glasgow-haskell-users, you wrote:
  I am having trouble installing the package in a non-standard place.  After
  downloading and unpacking I did:
 
 There have been some fixes to this particular package. Please check
 if there's a more recent package (t  1 day)!
 
 Volker
 -- 
 http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME
 rage against the finite state machine 
 ___
 Glasgow-haskell-users mailing list
 [EMAIL PROTECTED]
 http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
 

___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


Re: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-04 Thread Matt Fairtlough

X-Authentication-Warning: moussor.isi.edu: hdaume owned process doing -bs
Date: Tue, 3 Jun 2003 09:26:32 -0700 (PDT)
From: Hal Daume III [EMAIL PROTECTED]
To: Volker Stolz [EMAIL PROTECTED]
cc: Matt Fairtlough [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Re: GHC 6.0 Release: sparc-solaris2 binaries

I don't think this is the problem, though, as none of the path issues he
mentioned contained the ill-mannered hdaume in them :).

I downloaded the package this afternoon after Simon's message so I assumed it 
was the latest (I also, rather cheekily, downloaded it from Hal's isi link 
posted today; it was a different binary file but exhibited exactly the same 
behaviour wrt non-default installation directories).

Matt.



___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


RE: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-04 Thread Simon Marlow
Hal - how did you build this distribution?  Did you set 'BIN_DIST=1' in
build.mk before building everything?

Cheers,
Simon 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Hal Daume III
 Sent: 03 June 2003 17:27
 To: Volker Stolz
 Cc: Matt Fairtlough; [EMAIL PROTECTED]
 Subject: Re: GHC 6.0 Release: sparc-solaris2 binaries
 
 I don't think this is the problem, though, as none of the 
 path issues he
 mentioned contained the ill-mannered hdaume in them :).
 
 Perhaps SimonM can comment more on this...
 
 --
  Hal Daume III   | [EMAIL PROTECTED]
  Arrest this man, he talks in maths.   | www.isi.edu/~hdaume
 
 On Tue, 3 Jun 2003, Volker Stolz wrote:
 
  In local.glasgow-haskell-users, you wrote:
   I am having trouble installing the package in a 
 non-standard place.  After
   downloading and unpacking I did:
  
  There have been some fixes to this particular package. Please check
  if there's a more recent package (t  1 day)!
  
  Volker
  -- 
  http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME
  rage against the finite state machine 
  ___
  Glasgow-haskell-users mailing list
  [EMAIL PROTECTED]
  http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
  
 
 ___
 Glasgow-haskell-users mailing list
 [EMAIL PROTECTED]
 http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
 
 
___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


RE: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-03 Thread Hal Daume III
Sorry about that.  It's fixed at:
  http://www.isi.edu/~hdaume/ghc-6.0-sparc-solaris2.tar.bz2

Simon: could you update the haskell.org link?

 - Hal

--
 Hal Daume III   | [EMAIL PROTECTED]
 Arrest this man, he talks in maths.   | www.isi.edu/~hdaume

On Mon, 2 Jun 2003, Josef Svenningsson wrote:

 On Fri, 30 May 2003, Simon Marlow wrote:
 
 
   A binary version of GHC6 is available for sparc-solaris2 machines at:
  
 http://www.isi.edu/~hdaume/ghc-6.0-sparc-solaris2.tar.bz2
 17.5 mb
  
   I'd appreciate it if the maintainers could copy it and make
   it available
   locally off of the GHC web page so as to not kill bandwidth here :).
 
  Uploaded, thanks!
 
  Are the notes about libcurses etc. still relevant?  (see the download
  page).
 
 Uhmmm
 
 When I installed the dist and tried it I got the following message:
 
 ghci: /nfs/moussor/hdaume/lib/ghc-6.0/ghc-6.0: not found
 
 The fix is easy, just change the scripts ghc-6.0 and ghci-6.0. Would be
 nice if you could ship a correct binary dist though...
 
 All the best,
 
   /Josef
 
 ___
 Glasgow-haskell-users mailing list
 [EMAIL PROTECTED]
 http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
 

___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


RE: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-03 Thread Simon Marlow
 
 Sorry about that.  It's fixed at:
   http://www.isi.edu/~hdaume/ghc-6.0-sparc-solaris2.tar.bz2
 
 Simon: could you update the haskell.org link?

Uploaded, thanks.

Simon
___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


RE: GHC 6.0 Release: sparc-solaris2 binaries

2003-06-02 Thread Josef Svenningsson
On Fri, 30 May 2003, Simon Marlow wrote:


  A binary version of GHC6 is available for sparc-solaris2 machines at:
 
http://www.isi.edu/~hdaume/ghc-6.0-sparc-solaris2.tar.bz2
17.5 mb
 
  I'd appreciate it if the maintainers could copy it and make
  it available
  locally off of the GHC web page so as to not kill bandwidth here :).

 Uploaded, thanks!

 Are the notes about libcurses etc. still relevant?  (see the download
 page).

Uhmmm

When I installed the dist and tried it I got the following message:

ghci: /nfs/moussor/hdaume/lib/ghc-6.0/ghc-6.0: not found

The fix is easy, just change the scripts ghc-6.0 and ghci-6.0. Would be
nice if you could ship a correct binary dist though...

All the best,

/Josef

___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


RE: GHC 6.0 Release: sparc-solaris2 binaries

2003-05-31 Thread Simon Marlow
 
 A binary version of GHC6 is available for sparc-solaris2 machines at:
 
   http://www.isi.edu/~hdaume/ghc-6.0-sparc-solaris2.tar.bz2
   17.5 mb
 
 I'd appreciate it if the maintainers could copy it and make 
 it available
 locally off of the GHC web page so as to not kill bandwidth here :).

Uploaded, thanks!

Are the notes about libcurses etc. still relevant?  (see the download
page).

Cheers,
Simon
___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


RE: GHC 6.0 Release: sparc-solaris2 binaries

2003-05-31 Thread Hal Daume III
Yes, it does.  Furthermore, this contains profiling and normal libraries,
but not documentation.

 - Hal

--
 Hal Daume III   | [EMAIL PROTECTED]
 Arrest this man, he talks in maths.   | www.isi.edu/~hdaume

On Fri, 30 May 2003, Simon Marlow wrote:

  
  A binary version of GHC6 is available for sparc-solaris2 machines at:
  
http://www.isi.edu/~hdaume/ghc-6.0-sparc-solaris2.tar.bz2
17.5 mb
  
  I'd appreciate it if the maintainers could copy it and make 
  it available
  locally off of the GHC web page so as to not kill bandwidth here :).
 
 Uploaded, thanks!
 
 Are the notes about libcurses etc. still relevant?  (see the download
 page).
 
 Cheers,
   Simon
 

___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users