2016-12-16 13:22:02 +00:00
|
|
|
# This file chooses a sane default stdenv given the system, platform, etc.
|
2004-02-19 16:33:10 +00:00
|
|
|
#
|
2016-12-16 13:22:02 +00:00
|
|
|
# Rather than returning a stdenv, this returns a list of functions---one per
|
|
|
|
# each bootstrapping stage. See `./booter.nix` for exactly what this list should
|
|
|
|
# contain.
|
2004-02-19 16:33:10 +00:00
|
|
|
|
2016-11-27 20:37:45 +00:00
|
|
|
{ # Args just for stdenvs' usage
|
2016-12-16 13:22:02 +00:00
|
|
|
lib
|
|
|
|
# Args to pass on to the pkgset builder, too
|
2018-12-05 03:06:46 +00:00
|
|
|
, localSystem, crossSystem, config, overlays, crossOverlays ? []
|
2016-11-30 23:51:13 +00:00
|
|
|
} @ args:
|
2006-02-08 17:37:45 +00:00
|
|
|
|
2016-11-13 18:38:41 +00:00
|
|
|
let
|
2004-02-19 16:33:10 +00:00
|
|
|
# The native (i.e., impure) build environment. This one uses the
|
|
|
|
# tools installed on the system outside of the Nix environment,
|
|
|
|
# i.e., the stuff in /bin, /usr/bin, etc. This environment should
|
|
|
|
# be used with care, since many Nix packages will not build properly
|
|
|
|
# with it (e.g., because they require GNU Make).
|
2016-12-16 13:22:02 +00:00
|
|
|
stagesNative = import ./native args;
|
2004-02-19 16:33:10 +00:00
|
|
|
|
|
|
|
# The Nix build environment.
|
2016-12-16 13:22:02 +00:00
|
|
|
stagesNix = import ./nix (args // { bootStages = stagesNative; });
|
2004-03-29 18:23:01 +01:00
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
stagesFreeBSD = import ./freebsd args;
|
2015-11-26 02:35:12 +00:00
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
# On Linux systems, the standard build environment consists of Nix-built
|
|
|
|
# instances glibc and the `standard' Unix tools, i.e., the Posix utilities,
|
|
|
|
# the GNU C compiler, and so on.
|
2016-12-24 15:38:56 +00:00
|
|
|
stagesLinux = import ./linux args;
|
2004-05-18 11:59:18 +01:00
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
inherit (import ./darwin args) stagesDarwin;
|
2016-11-07 05:27:38 +00:00
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
stagesCross = import ./cross args;
|
2015-06-18 18:03:32 +01:00
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
stagesCustom = import ./custom args;
|
2016-04-27 17:09:27 +01:00
|
|
|
|
2016-12-16 13:22:02 +00:00
|
|
|
# Select the appropriate stages for the platform `system'.
|
2016-11-13 18:38:41 +00:00
|
|
|
in
|
2018-12-05 03:06:46 +00:00
|
|
|
if crossSystem != localSystem || crossOverlays != [] then stagesCross
|
2016-12-16 13:22:02 +00:00
|
|
|
else if config ? replaceStdenv then stagesCustom
|
|
|
|
else { # switch
|
2019-08-13 22:52:01 +01:00
|
|
|
i686-linux = stagesLinux;
|
|
|
|
x86_64-linux = stagesLinux;
|
|
|
|
armv5tel-linux = stagesLinux;
|
|
|
|
armv6l-linux = stagesLinux;
|
|
|
|
armv6m-linux = stagesLinux;
|
|
|
|
armv7a-linux = stagesLinux;
|
|
|
|
armv7l-linux = stagesLinux;
|
|
|
|
armv7r-linux = stagesLinux;
|
|
|
|
armv7m-linux = stagesLinux;
|
|
|
|
armv8a-linux = stagesLinux;
|
|
|
|
armv8r-linux = stagesLinux;
|
|
|
|
armv8m-linux = stagesLinux;
|
|
|
|
aarch64-linux = stagesLinux;
|
|
|
|
mipsel-linux = stagesLinux;
|
|
|
|
powerpc-linux = /* stagesLinux */ stagesNative;
|
|
|
|
powerpc64le-linux = stagesLinux;
|
|
|
|
x86_64-darwin = stagesDarwin;
|
|
|
|
x86_64-solaris = stagesNix;
|
|
|
|
i686-cygwin = stagesNative;
|
|
|
|
x86_64-cygwin = stagesNative;
|
|
|
|
x86_64-freebsd = stagesFreeBSD;
|
2016-12-24 18:55:11 +00:00
|
|
|
}.${localSystem.system} or stagesNative
|