gccgo46: removing it. I set gccgo = gcc47

gccgo46 did not build for me, and maybe never built at all.
The same recipe, though, worked fine for gcc47. So let's go with gcc47.
This commit is contained in:
Lluís Batlle i Rossell
2012-08-03 19:52:19 +02:00
parent a375ffa53f
commit 592b980931
2 changed files with 6 additions and 9 deletions
@@ -43,6 +43,9 @@ assert libelf != null -> zlib != null;
# Make sure we get GNU sed. # Make sure we get GNU sed.
assert stdenv.isDarwin -> gnused != null; assert stdenv.isDarwin -> gnused != null;
# The go frontend is written in c++
assert langGo -> langCC;
with stdenv.lib; with stdenv.lib;
with builtins; with builtins;
+3 -9
View File
@@ -2206,18 +2206,12 @@ let
inherit fetchurl stdenv; inherit fetchurl stdenv;
}); });
gccgo = gccgo46; # gccgo46 does not work. I set 4.7 then.
gccgo = gccgo47;
gccgo46 = wrapGCC (gcc46_real.gcc.override {
name = "gccgo";
langCC = true; #required for go
langC = true;
langGo = true;
});
gccgo47 = wrapGCC (gcc47_real.gcc.override { gccgo47 = wrapGCC (gcc47_real.gcc.override {
name = "gccgo"; name = "gccgo";
langCC = true; #required for go langCC = true; #required for go.
langC = true; langC = true;
langGo = true; langGo = true;
}); });