Remove support for the obsolete powerpc-darwin and i686-darwin platforms

This commit is contained in:
Eelco Dolstra
2012-11-29 14:10:49 +01:00
parent 4b48d05c58
commit 72684fb42f
20 changed files with 68 additions and 466 deletions
+2 -3
View File
@@ -43,13 +43,13 @@ rec {
# Linux standard environment.
stdenvLinux = (import ./linux {inherit system allPackages platform;}).stdenvLinux;
# MinGW/MSYS standard environment.
stdenvMinGW = import ./mingw {
inherit system;
};
# Select the appropriate stdenv for the platform `system'.
stdenv =
if stdenvType == "i686-linux" then stdenvLinux else
@@ -59,7 +59,6 @@ rec {
if stdenvType == "mips64el-linux" then stdenvLinux else
if stdenvType == "powerpc-linux" then /* stdenvLinux */ stdenvNative else
if stdenvType == "i686-mingw" then stdenvMinGW else
if stdenvType == "i686-darwin" then stdenvNix else
if stdenvType == "x86_64-darwin" then stdenvNix else
stdenvNative;
}