Re: Haskell install error

2007-06-11 Thread Thorkil Naur
Hello,

You may find these details useful:

  http://www.haskell.org/pipermail/glasgow-haskell-users/2007-May/012576.html

(This is referred from the ghc 6.6.1 download page 
http://haskell.org/ghc/download_ghc_661.html.)

Best regards
Thorkil

On Thursday 31 May 2007 14:06, schulzy wrote:
 
 Hello I am a relativly new Mac user and need to use the Haskell 6.6 for a
 project.
 
 I downloaded the binary install file from the Haskell download site
 unpakaged it, ran the ./configure, and the make install both as admin and
 they both were sucessful. When i then try and run the ghci compiler i get
 the following error:
 
 dyld: Library not loaded: /usr/local/lib/libreadline.5.2.dylib
   Referenced from: /usr/local/lib/ghc-6.6/ghc-6.6
   Reason: image not found
 Trace/BPT trap
 
 I was hoping someone could walk me through a solution. I currently have the
 haskell 6.4 compiler on my computer.
 
   
   
 Sincerly Schulzy
 -- 
 View this message in context: 
http://www.nabble.com/Haskell-install-error-tf3846179.html#a10892594
 Sent from the Haskell - Glasgow-haskell-bugs mailing list archive at 
Nabble.com.
 
 ___
 Glasgow-haskell-bugs mailing list
 Glasgow-haskell-bugs@haskell.org
 http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs
 
___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Haskell install error

2007-06-10 Thread schulzy

Hello I am a relativly new Mac user and need to use the Haskell 6.6 for a
project.

I downloaded the binary install file from the Haskell download site
unpakaged it, ran the ./configure, and the make install both as admin and
they both were sucessful. When i then try and run the ghci compiler i get
the following error:

dyld: Library not loaded: /usr/local/lib/libreadline.5.2.dylib
  Referenced from: /usr/local/lib/ghc-6.6/ghc-6.6
  Reason: image not found
Trace/BPT trap

I was hoping someone could walk me through a solution. I currently have the
haskell 6.4 compiler on my computer.



Sincerly Schulzy
-- 
View this message in context: 
http://www.nabble.com/Haskell-install-error-tf3846179.html#a10892594
Sent from the Haskell - Glasgow-haskell-bugs mailing list archive at Nabble.com.

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: Re: [GHC] Visual Haskell install error

2007-03-28 Thread Liam Clarke

Hi Dennis,

Did you use the default install directory or a custom one? A custom 
directory what caused this error for me. The simple solution was to 
uninstall and reinstall to the default Program Files\Visual Haskell path.


Alternately, have a look at this file here - 
http://darcs.haskell.org/vshaskell/vs_haskell_setup/setup.vbs


What's failing is the calls to regsvr32.exe - if you search your system 
for vs_haskell.dll, you'll most likely find that it's in... C:\Program 
Files\Visual Haskell\bin, no matter what install directory you specified.


If you check the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Visual 
Haskell\Visual Studio version\InstallDir you'll see that it's set to 
the one you specified (where Visual Studio version is 7.1 for 2003 and 
8.0 for VS 2005.


So what's happening is that regsvr32 is trying to find the DLL's in the 
\bin directory of your specified install dir, but the DLL's are over in 
Program Files... not sure what other bugs this could introduce, hence 
why I reinstalled to Progam Files etc. If you run the following three 
commands in a command prompt, it should work to some extent, but I'll 
reiterate that I haven't tested this.


regsvr32.exe /i:8.0 /n /s C:\Program Files\bin\vs_haskell.dll
regsvr32.exe /i:8.0 /n /s C:\Program Files\bin\vs_haskell_babel.dll
regsvr32.exe /i:8.0 /n /s C:\Program Files\bin\vs_haskell_babel.dll

VS 2003 users should replace 8.0 with 7.1...

Now, is there a bug tracker anywhere for this, or is it just the mailing 
list? I think the hardcoded paths in 
http://darcs.haskell.org/vshaskell/vs_haskell_setup/Common.wxs need to 
be tweaked, or the reg key(s) modified. :-)


Anyway, hope that helps you, good luck.

Liam Clarke


___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] Visual Haskell install error

2007-03-28 Thread Simon Marlow
Thanks for the analysis.  You can use the GHC bug tracker for tickets against 
Visual Haskell - just set the Component field to Visual Haskell. 
Unfortunately we can't guarantee to fix anything promptly; Krasimir Angelov is 
the only person actively working on Visual Haskell, and he's been quiet recently.


Cheers,
Simon

Liam Clarke wrote:


Did you use the default install directory or a custom one? A custom 
directory what caused this error for me. The simple solution was to 
uninstall and reinstall to the default Program Files\Visual Haskell path.


Alternately, have a look at this file here - 
http://darcs.haskell.org/vshaskell/vs_haskell_setup/setup.vbs


What's failing is the calls to regsvr32.exe - if you search your system 
for vs_haskell.dll, you'll most likely find that it's in... C:\Program 
Files\Visual Haskell\bin, no matter what install directory you specified.


If you check the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Visual 
Haskell\Visual Studio version\InstallDir you'll see that it's set to 
the one you specified (where Visual Studio version is 7.1 for 2003 and 
8.0 for VS 2005.


So what's happening is that regsvr32 is trying to find the DLL's in the 
\bin directory of your specified install dir, but the DLL's are over in 
Program Files... not sure what other bugs this could introduce, hence 
why I reinstalled to Progam Files etc. If you run the following three 
commands in a command prompt, it should work to some extent, but I'll 
reiterate that I haven't tested this.


regsvr32.exe /i:8.0 /n /s C:\Program Files\bin\vs_haskell.dll
regsvr32.exe /i:8.0 /n /s C:\Program Files\bin\vs_haskell_babel.dll
regsvr32.exe /i:8.0 /n /s C:\Program Files\bin\vs_haskell_babel.dll

VS 2003 users should replace 8.0 with 7.1...

Now, is there a bug tracker anywhere for this, or is it just the mailing 
list? I think the hardcoded paths in 
http://darcs.haskell.org/vshaskell/vs_haskell_setup/Common.wxs need to 
be tweaked, or the reg key(s) modified. :-)


Anyway, hope that helps you, good luck.

Liam Clarke


___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs



___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] Visual Haskell install error

2007-03-28 Thread Liam Clarke

Thanks for that, will do. :)

Simon Marlow wrote:
Thanks for the analysis.  You can use the GHC bug tracker for tickets 
against Visual Haskell - just set the Component field to Visual 
Haskell. Unfortunately we can't guarantee to fix anything promptly; 
Krasimir Angelov is the only person actively working on Visual 
Haskell, and he's been quiet recently.


Cheers,
Simon

Liam Clarke wrote:


Did you use the default install directory or a custom one? A custom 
directory what caused this error for me. The simple solution was to 
uninstall and reinstall to the default Program Files\Visual Haskell 
path.


Alternately, have a look at this file here - 
http://darcs.haskell.org/vshaskell/vs_haskell_setup/setup.vbs


What's failing is the calls to regsvr32.exe - if you search your 
system for vs_haskell.dll, you'll most likely find that it's in... 
C:\Program Files\Visual Haskell\bin, no matter what install directory 
you specified.


If you check the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Visual 
Haskell\Visual Studio version\InstallDir you'll see that it's set 
to the one you specified (where Visual Studio version is 7.1 for 2003 
and 8.0 for VS 2005.


So what's happening is that regsvr32 is trying to find the DLL's in 
the \bin directory of your specified install dir, but the DLL's are 
over in Program Files... not sure what other bugs this could 
introduce, hence why I reinstalled to Progam Files etc. If you run 
the following three commands in a command prompt, it should work to 
some extent, but I'll reiterate that I haven't tested this.


regsvr32.exe /i:8.0 /n /s C:\Program Files\bin\vs_haskell.dll
regsvr32.exe /i:8.0 /n /s C:\Program Files\bin\vs_haskell_babel.dll
regsvr32.exe /i:8.0 /n /s C:\Program Files\bin\vs_haskell_babel.dll

VS 2003 users should replace 8.0 with 7.1...

Now, is there a bug tracker anywhere for this, or is it just the 
mailing list? I think the hardcoded paths in 
http://darcs.haskell.org/vshaskell/vs_haskell_setup/Common.wxs need 
to be tweaked, or the reg key(s) modified. :-)


Anyway, hope that helps you, good luck.

Liam Clarke


___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs






___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] Visual Haskell install error

2007-03-28 Thread Liam Clarke

Hi Dennis,

Ah, interesting, ... incidentally, that last regsvr32 call should be for 
the file vs_haskell_dlg.dll of course... late night coding and all.


Good luck with it,

Liam

Dennis van der Pool wrote:

Hi Liam,

Please note that i (re)installed both VS2005 and Visual Haskell in the
default directories. Didn't seem to resolve the problem. I'll look into this
tomorrow and will let you know. Having the setup.vbs should help me anyway
:-)

Dennis

-Oorspronkelijk bericht-
Van: Liam Clarke [mailto:[EMAIL PROTECTED] 
Verzonden: woensdag 28 maart 2007 15:09

Aan: [EMAIL PROTECTED]
CC: glasgow-haskell-bugs@haskell.org
Onderwerp: Re: Re: [GHC] Visual Haskell install error

Hi Dennis,

Did you use the default install directory or a custom one? A custom 
directory what caused this error for me. The simple solution was to 
uninstall and reinstall to the default Program Files\Visual Haskell path.


Alternately, have a look at this file here - 
http://darcs.haskell.org/vshaskell/vs_haskell_setup/setup.vbs


What's failing is the calls to regsvr32.exe - if you search your system 
for vs_haskell.dll, you'll most likely find that it's in... C:\Program 
Files\Visual Haskell\bin, no matter what install directory you specified.


If you check the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Visual 
Haskell\Visual Studio version\InstallDir you'll see that it's set to 
the one you specified (where Visual Studio version is 7.1 for 2003 and 
8.0 for VS 2005.


So what's happening is that regsvr32 is trying to find the DLL's in the 
\bin directory of your specified install dir, but the DLL's are over in 
Program Files... not sure what other bugs this could introduce, hence 
why I reinstalled to Progam Files etc. If you run the following three 
commands in a command prompt, it should work to some extent, but I'll 
reiterate that I haven't tested this.


regsvr32.exe /i:8.0 /n /s C:\Program Files\bin\vs_haskell.dll
regsvr32.exe /i:8.0 /n /s C:\Program Files\bin\vs_haskell_babel.dll
regsvr32.exe /i:8.0 /n /s C:\Program Files\bin\vs_haskell_babel.dll

VS 2003 users should replace 8.0 with 7.1...

Now, is there a bug tracker anywhere for this, or is it just the mailing 
list? I think the hardcoded paths in 
http://darcs.haskell.org/vshaskell/vs_haskell_setup/Common.wxs need to 
be tweaked, or the reg key(s) modified. :-)


Anyway, hope that helps you, good luck.

Liam Clarke




  


___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Re: [GHC] Visual Haskell install error

2007-03-24 Thread Dennis van der Pool

Hi Scott,

Did you already got it working? I got the same problem (with VS2005 though).

Dennis


Scott Brown-5 wrote:
 
 Hello,
   
   when I try to install Visual Haskell for Visual Studio 2003 I get the
 following errors:
   
   Failed to setup vs_haskell.dll
   Failed to setup vs_haskell_babel.dll
   Failed to setup vs_haskell_dlg.dll
   
   Is there a solution for this bug?
   
  Send instant messages to your online friends
 http://au.messenger.yahoo.com 
 ___
 Glasgow-haskell-bugs mailing list
 Glasgow-haskell-bugs@haskell.org
 http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs
 
 

-- 
View this message in context: 
http://www.nabble.com/Visual-Haskell-install-error-tf3149312.html#a9622269
Sent from the Haskell - Glasgow-haskell-bugs mailing list archive at Nabble.com.

___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs


Visual Haskell install error

2007-01-31 Thread Scott Brown
Hello,
  
  when I try to install Visual Haskell for Visual Studio 2003 I get the 
following errors:
  
  Failed to setup vs_haskell.dll
  Failed to setup vs_haskell_babel.dll
  Failed to setup vs_haskell_dlg.dll
  
  Is there a solution for this bug?
  
 Send instant messages to your online friends http://au.messenger.yahoo.com ___
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs