3
0
Fork 0
forked from mirrors/nixpkgs

Disabling ppl and cloog on gcc for raspberrypi. Shorter stdenv builds.

This commit is contained in:
root 2012-12-07 15:13:39 +00:00 committed by Lluís Batlle i Rossell
parent 1b29d29c76
commit a30086c8d5

View file

@ -239,7 +239,8 @@ rec {
inherit (stdenvLinuxBoot3Pkgs) binutils;
coreutils = bootstrapTools;
libc = stdenvLinuxGlibc;
gcc = stdenvLinuxBoot3Pkgs.gcc.gcc;
gcc = stdenvLinuxBoot3Pkgs.gcc.gcc.override (if platform.name == "raspberrypi" then
{ ppl = null; cloog = null; } else {});
name = "";
};
extraPath = [ stdenvLinuxBoot3Pkgs.xz ];
@ -278,7 +279,7 @@ rec {
inherit (stdenvLinuxBoot3Pkgs) binutils;
inherit (stdenvLinuxBoot4Pkgs) coreutils;
libc = stdenvLinuxGlibc;
gcc = stdenvLinuxBoot3Pkgs.gcc.gcc;
gcc = stdenvLinuxBoot4.gcc.gcc;
shell = stdenvLinuxBoot4Pkgs.bash + "/bin/bash";
name = "";
};