From 78fccddde31535b90ff555f5f745a596cdad0b5b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 10 Jul 2014 16:33:28 +0200 Subject: [PATCH] ghc 7.0.2 and 7.0.3 are "broken" because of build errors with recent versions of GCC rts/StgCRun.c: In function 'StgRunIsImplementedInAssembler': rts/StgCRun.c:208:1: error: frame pointer required, but reserved StgRunIsImplementedInAssembler(void) ^ In file included from includes/Stg.h:230:0: 0, from rts/StgCRun.c:70: includes/stg/Regs.h:323:20: note: for 'Sp' GLOBAL_REG_DECL(P_,Sp,REG_Sp) ^ includes/stg/Regs.h:174:54: note: in definition of macro 'GLOBAL_REG_DECL' #define GLOBAL_REG_DECL(type,name,reg) register type name REG(reg); ^ --- pkgs/development/compilers/ghc/7.0.2.nix | 1 + pkgs/development/compilers/ghc/7.0.3.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/development/compilers/ghc/7.0.2.nix b/pkgs/development/compilers/ghc/7.0.2.nix index 6706b99e203..5dd2e14b0c6 100644 --- a/pkgs/development/compilers/ghc/7.0.2.nix +++ b/pkgs/development/compilers/ghc/7.0.2.nix @@ -37,6 +37,7 @@ stdenv.mkDerivation rec { stdenv.lib.maintainers.andres ]; inherit (ghc.meta) license platforms; + broken = true; }; } diff --git a/pkgs/development/compilers/ghc/7.0.3.nix b/pkgs/development/compilers/ghc/7.0.3.nix index 0b422043ae2..c8d4b264804 100644 --- a/pkgs/development/compilers/ghc/7.0.3.nix +++ b/pkgs/development/compilers/ghc/7.0.3.nix @@ -37,6 +37,7 @@ stdenv.mkDerivation rec { stdenv.lib.maintainers.andres ]; inherit (ghc.meta) license platforms; + broken = true; }; }