* Spidermonkey doesn't compile with gcc 4.1.1 (ICE), so use 3.4

instead.

svn path=/nixpkgs/trunk/; revision=5495
This commit is contained in:
Eelco Dolstra 2006-06-23 11:06:39 +00:00
parent 423af3206e
commit c1103ad849
2 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl}:
{stdenv, fetchurl, gcc}:
stdenv.mkDerivation {
name = "spidermonkey-1.5";
@ -8,4 +8,6 @@ stdenv.mkDerivation {
};
builder = ./builder.sh;
NIX_GCC = gcc; # remove when the "internal compiler error" in gcc 4.1.x is fixed
}

View File

@ -885,6 +885,7 @@ rec {
spidermonkey = (import ../development/interpreters/spidermonkey) {
inherit fetchurl stdenv;
gcc = gcc34;
};
lua4 = (import ../development/interpreters/lua-4) {