···1# Use the static tools for i686-linux. They work on x86_64-linux
2# machines as well.
3-(import ../i686) //
45{
6 bootstrapTools = {
···1# Use the static tools for i686-linux. They work on x86_64-linux
2# machines as well.
3+(import ./i686.nix) //
45{
6 bootstrapTools = {
+6-6
pkgs/stdenv/linux/default.nix
···14 lib = import ../../../lib;
1516 bootstrapFiles =
17- if system == "i686-linux" then import ./bootstrap/i686
18- else if system == "x86_64-linux" then import ./bootstrap/x86_64
19- else if system == "armv5tel-linux" then import ./bootstrap/armv5tel
20- else if system == "armv6l-linux" then import ./bootstrap/armv6l
21- else if system == "armv7l-linux" then import ./bootstrap/armv6l
22- else if system == "mips64el-linux" then import ./bootstrap/loongson2f
23 else abort "unsupported platform for the pure Linux stdenv";
2425
···14 lib = import ../../../lib;
1516 bootstrapFiles =
17+ if system == "i686-linux" then import ./bootstrap/i686.nix
18+ else if system == "x86_64-linux" then import ./bootstrap/x86_64.nix
19+ else if system == "armv5tel-linux" then import ./bootstrap/armv5tel.nix
20+ else if system == "armv6l-linux" then import ./bootstrap/armv6l.nix
21+ else if system == "armv7l-linux" then import ./bootstrap/armv6l.nix
22+ else if system == "mips64el-linux" then import ./bootstrap/loongson2f.nix
23 else abort "unsupported platform for the pure Linux stdenv";
2425