mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
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:
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.
|
||||
assert stdenv.isDarwin -> gnused != null;
|
||||
|
||||
# The go frontend is written in c++
|
||||
assert langGo -> langCC;
|
||||
|
||||
with stdenv.lib;
|
||||
with builtins;
|
||||
|
||||
|
|
|
@ -2206,18 +2206,12 @@ let
|
|||
inherit fetchurl stdenv;
|
||||
});
|
||||
|
||||
gccgo = gccgo46;
|
||||
|
||||
gccgo46 = wrapGCC (gcc46_real.gcc.override {
|
||||
name = "gccgo";
|
||||
langCC = true; #required for go
|
||||
langC = true;
|
||||
langGo = true;
|
||||
});
|
||||
# gccgo46 does not work. I set 4.7 then.
|
||||
gccgo = gccgo47;
|
||||
|
||||
gccgo47 = wrapGCC (gcc47_real.gcc.override {
|
||||
name = "gccgo";
|
||||
langCC = true; #required for go
|
||||
langCC = true; #required for go.
|
||||
langC = true;
|
||||
langGo = true;
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue