views:

97

answers:

2

I attempted to point the Cygwin installer to http://haskell.org/ghc/cygwin, but the installer was unable to find setup.ini.sig. If possible, how could I alternatively edit my .bashrc to reference an installation made using the setup binaries in C:/ghc/.

+1  A: 

When I installed the Windows version of GHC, added its binaries location to my PATH environment variable, I was able to run it from Cygwin's BASH just fine. I've never attempted to install or compile GHC on Cygwin itself.

Ishpeck
A: 

Just add --no-verify to setup.exe which means

Don't verify setup.ini signatures

http://cygwin.com/faq/faq-nochunks.html#faq.setup.cli

gavenkoa