···11# Use the static tools for i686-linux. They work on x86_64-linux
22# machines as well.
33-(import ../i686) //
33+(import ./i686.nix) //
4455{
66 bootstrapTools = {
+6-6
pkgs/stdenv/linux/default.nix
···1414 lib = import ../../../lib;
15151616 bootstrapFiles =
1717- if system == "i686-linux" then import ./bootstrap/i686
1818- else if system == "x86_64-linux" then import ./bootstrap/x86_64
1919- else if system == "armv5tel-linux" then import ./bootstrap/armv5tel
2020- else if system == "armv6l-linux" then import ./bootstrap/armv6l
2121- else if system == "armv7l-linux" then import ./bootstrap/armv6l
2222- else if system == "mips64el-linux" then import ./bootstrap/loongson2f
1717+ if system == "i686-linux" then import ./bootstrap/i686.nix
1818+ else if system == "x86_64-linux" then import ./bootstrap/x86_64.nix
1919+ else if system == "armv5tel-linux" then import ./bootstrap/armv5tel.nix
2020+ else if system == "armv6l-linux" then import ./bootstrap/armv6l.nix
2121+ else if system == "armv7l-linux" then import ./bootstrap/armv6l.nix
2222+ else if system == "mips64el-linux" then import ./bootstrap/loongson2f.nix
2323 else abort "unsupported platform for the pure Linux stdenv";
24242525