Fixing the gcc47 build in stdenv
gcc 4.7 wants an explicit reference to the system include directory, and that's guessed through 'stdenv ? glibc'.
This commit is contained in:
parent
601b69a218
commit
8067f14699
1 changed files with 3 additions and 0 deletions
|
@ -214,6 +214,9 @@ rec {
|
|||
cloog = pkgs.cloog.override { stdenv = pkgs.makeStaticLibraries pkgs.stdenv; };
|
||||
ppl = pkgs.ppl.override { stdenv = pkgs.makeStaticLibraries pkgs.stdenv; };
|
||||
};
|
||||
extraAttrs = {
|
||||
glibc = stdenvLinuxGlibc; # Required by gcc47 build
|
||||
};
|
||||
inherit fetchurl;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue