* On powerpc-linux, use gcc-3.4 to compile dietlibc.
svn path=/nixpkgs/trunk/; revision=6856
This commit is contained in:
parent
eb4584c0cb
commit
dcebef7f8e
|
@ -2017,7 +2017,9 @@ rec {
|
|||
#};
|
||||
|
||||
dietlibc = import ../os-specific/linux/dietlibc {
|
||||
inherit fetchurl stdenv glibc;
|
||||
inherit fetchurl glibc;
|
||||
# Dietlibc 0.30 doesn't compile on PPC with GCC 4.1, bus GCC 3.4 works.
|
||||
stdenv = if stdenv.system == "powerpc-linux" then overrideGCC stdenv gcc34 else stdenv;
|
||||
};
|
||||
|
||||
#dietlibcArm = import ../os-specific/linux/dietlibc-cross {
|
||||
|
|
Loading…
Reference in New Issue