program instalar haskell cabal

haskell - program - instalar cabal



ExitFailure 9 al intentar instalar ghc-mod utilizando Cabal (1)

Cuando trato de instalarlo con cabal, me sale

~$ cabal install ghc-mod Resolving dependencies... [1 of 1] Compiling Main ( /tmp/haskell-src-exts-1.13.5-21238/haskell-src-exts-1.13.5/Setup.hs, /tmp/haskell-src-exts-1.13.5-21238/haskell-src-exts-1.13.5/dist/setup/Main.o ) /tmp/haskell-src-exts-1.13.5-21238/haskell-src-exts-1.13.5/Setup.hs:1:1: Warning: In the use of `runTests'' (imported from Distribution.Simple, but defined in Distribution.Simple.UserHooks): Deprecated: "Please use the new testing interface instead!" Linking /tmp/haskell-src-exts-1.13.5-21238/haskell-src-exts-1.13.5/dist/setup/setup ... Configuring haskell-src-exts-1.13.5... Building haskell-src-exts-1.13.5... Preprocessing library haskell-src-exts-1.13.5... dist/build/Language/Haskell/Exts/InternalParser.hs:1:12: Warning: -fglasgow-exts is deprecated: Use individual extensions instead [ 1 of 22] Compiling Language.Haskell.Exts.Annotated.Syntax ( src/Language/Haskell/Exts/Annotated/Syntax.hs, dist/build/Language/Haskell/Exts/Annotated/Syntax.o ) cabal: Error: some packages failed to install: ghc-mod-1.11.1 depends on haskell-src-exts-1.13.5 which failed to install. haskell-src-exts-1.13.5 failed during the building phase. The exception was: ExitFailure 9 hlint-1.8.33 depends on haskell-src-exts-1.13.5 which failed to install.

No estoy muy seguro de a dónde ir desde aquí. ¿Cómo puedo saber más sobre por qué falló?

edición: estoy usando GHC versión 7.4.1 y Cabal versión 1.14.0

Correr Cabal en modo detallado no parece dar ninguna pista excepto:

... World file is already up to date. cabal: Error: some packages failed to install: ghc-mod-1.11.1 depends on haskell-src-exts-1.13.5 which failed to install. haskell-src-exts-1.13.5 failed during the building phase. The exception was: ExitFailure 9 hlint-1.8.33 depends on haskell-src-exts-1.13.5 which failed to install.


Resultó ser un problema de falta de memoria, como Hammar sospechaba. Pude instalarlo (aunque fue muy lento) al agregar un archivo de intercambio de 1GB al sistema:

dd if=/dev/zero of=/swapfile bs=1M count=1024 mkswap /swapfile swapon /swapfile

Aparentemente las instancias de EC2 vienen sin swap por defecto.