2017-07-29 00:05:35 +00:00
|
|
|
{ lib }:
|
|
|
|
let inherit (lib.attrsets) mapAttrs; in
|
2017-05-21 17:39:23 +00:00
|
|
|
|
2017-02-09 02:27:22 +00:00
|
|
|
rec {
|
2017-07-29 00:05:35 +00:00
|
|
|
doubles = import ./doubles.nix { inherit lib; };
|
lib, stdenv: Check `meta.platforms` against host platform and be open world
First, we need check against the host platform, not the build platform.
That's simple enough.
Second, we move away from exahustive finite case analysis (i.e.
exhaustively listing all platforms the package builds on). That only
work in a closed-world setting, where we know all platforms we might
build one. But with cross compilation, we may be building for arbitrary
platforms, So we need fancier filters. This is the closed world to open
world change.
The solution is instead of having a list of systems (strings in the form
"foo-bar"), we have a list of of systems or "patterns", i.e. attributes
that partially match the output of the parsers in `lib.systems.parse`.
The "check meta" logic treats the systems strings as an exact whitelist
just as before, but treats the patterns as a fuzzy whitelist,
intersecting the actual `hostPlatform` with the pattern and then
checking for equality. (This is done using `matchAttrs`).
The default convenience lists for `meta.platforms` are now changed to be
lists of patterns (usually a single pattern) in
`lib/systems/for-meta.nix` for maximum flexibility under this new
system.
Fixes #30902
2018-01-31 05:11:03 +00:00
|
|
|
forMeta = import ./for-meta.nix { inherit lib; };
|
2017-07-29 00:05:35 +00:00
|
|
|
parse = import ./parse.nix { inherit lib; };
|
|
|
|
inspect = import ./inspect.nix { inherit lib; };
|
|
|
|
platforms = import ./platforms.nix { inherit lib; };
|
|
|
|
examples = import ./examples.nix { inherit lib; };
|
2017-03-24 00:49:28 +00:00
|
|
|
|
|
|
|
# Elaborate a `localSystem` or `crossSystem` so that it contains everything
|
|
|
|
# necessary.
|
|
|
|
#
|
|
|
|
# `parsed` is inferred from args, both because there are two options with one
|
|
|
|
# clearly prefered, and to prevent cycles. A simpler fixed point where the RHS
|
|
|
|
# always just used `final.*` would fail on both counts.
|
|
|
|
elaborate = args: let
|
|
|
|
final = {
|
|
|
|
# Prefer to parse `config` as it is strictly more informative.
|
|
|
|
parsed = parse.mkSystemFromString (if args ? config then args.config else args.system);
|
|
|
|
# Either of these can be losslessly-extracted from `parsed` iff parsing succeeds.
|
|
|
|
system = parse.doubleFromSystem final.parsed;
|
|
|
|
config = parse.tripleFromSystem final.parsed;
|
|
|
|
# Just a guess, based on `system`
|
|
|
|
platform = platforms.selectBySystem final.system;
|
2017-02-17 05:36:10 +00:00
|
|
|
# Derived meta-data
|
2017-05-21 18:02:19 +00:00
|
|
|
libc =
|
2017-02-17 05:36:10 +00:00
|
|
|
/**/ if final.isDarwin then "libSystem"
|
|
|
|
else if final.isMinGW then "msvcrt"
|
|
|
|
else if final.isMusl then "musl"
|
2018-05-10 03:33:31 +00:00
|
|
|
else if final.isUClibc then "uclibc"
|
2017-02-17 05:36:10 +00:00
|
|
|
else if final.isAndroid then "bionic"
|
|
|
|
else if final.isLinux /* default */ then "glibc"
|
2018-10-15 01:41:33 +00:00
|
|
|
else if final.isAvr then "avrlibc"
|
2017-05-21 18:02:19 +00:00
|
|
|
# TODO(@Ericson2314) think more about other operating systems
|
2017-02-17 05:36:10 +00:00
|
|
|
else "native/impure";
|
2017-09-12 19:24:03 +00:00
|
|
|
extensions = {
|
|
|
|
sharedLibrary =
|
|
|
|
/**/ if final.isDarwin then ".dylib"
|
|
|
|
else if final.isWindows then ".dll"
|
|
|
|
else ".so";
|
|
|
|
executable =
|
|
|
|
/**/ if final.isWindows then ".exe"
|
|
|
|
else "";
|
|
|
|
};
|
2017-02-17 05:36:10 +00:00
|
|
|
# Misc boolean options
|
|
|
|
useAndroidPrebuilt = false;
|
2018-04-15 23:21:45 +00:00
|
|
|
useiOSPrebuilt = false;
|
2018-10-17 02:48:43 +00:00
|
|
|
|
|
|
|
# Output from uname
|
|
|
|
uname = {
|
|
|
|
# uname -s
|
2018-10-17 19:43:49 +00:00
|
|
|
system = {
|
|
|
|
"linux" = "Linux";
|
|
|
|
"windows" = "Windows";
|
|
|
|
"darwin" = "Darwin";
|
|
|
|
"netbsd" = "NetBSD";
|
|
|
|
"freebsd" = "FreeBSD";
|
|
|
|
"openbsd" = "OpenBSD";
|
|
|
|
}.${final.parsed.kernel.name} or null;
|
2018-10-17 02:48:43 +00:00
|
|
|
|
|
|
|
# uname -p
|
|
|
|
processor = final.parsed.cpu.name;
|
|
|
|
|
|
|
|
# uname -r
|
|
|
|
release = null;
|
|
|
|
};
|
2018-11-13 22:54:08 +00:00
|
|
|
|
|
|
|
qemuArch =
|
|
|
|
if final.isArm then "arm"
|
|
|
|
else if final.isx86_64 then "x86_64"
|
|
|
|
else if final.isx86 then "i386"
|
|
|
|
else {
|
|
|
|
"powerpc" = "ppc";
|
|
|
|
"powerpc64" = "ppc64";
|
|
|
|
"powerpc64le" = "ppc64";
|
|
|
|
"mips64" = "mips";
|
|
|
|
"mipsel64" = "mipsel";
|
|
|
|
}.${final.parsed.cpu.name} or final.parsed.cpu.name;
|
|
|
|
|
|
|
|
emulator = pkgs: let
|
|
|
|
qemu-user = pkgs.qemu.override {
|
|
|
|
smartcardSupport = false;
|
|
|
|
spiceSupport = false;
|
|
|
|
openGLSupport = false;
|
|
|
|
virglSupport = false;
|
|
|
|
vncSupport = false;
|
|
|
|
gtkSupport = false;
|
|
|
|
sdlSupport = false;
|
|
|
|
pulseSupport = false;
|
|
|
|
smbdSupport = false;
|
|
|
|
seccompSupport = false;
|
|
|
|
hostCpuTargets = ["${final.qemuArch}-linux-user"];
|
|
|
|
};
|
|
|
|
wine-name = "wine${toString final.parsed.cpu.bits}";
|
|
|
|
wine = (pkgs.winePackagesFor wine-name).minimal;
|
|
|
|
in
|
|
|
|
if final.parsed.kernel.name == pkgs.stdenv.hostPlatform.parsed.kernel.name &&
|
|
|
|
(final.parsed.cpu.name == pkgs.stdenv.hostPlatform.parsed.cpu.name ||
|
|
|
|
(final.platform.isi686 && pkgs.stdenv.hostPlatform.isx86_64))
|
|
|
|
then pkgs.runtimeShell
|
|
|
|
else if final.isWindows
|
|
|
|
then "${wine}/bin/${wine-name}"
|
|
|
|
else if final.isLinux && pkgs.stdenv.hostPlatform.isLinux
|
|
|
|
then "${qemu-user}/bin/qemu-${final.qemuArch}"
|
|
|
|
else throw "Don't know how to run ${final.config} executables.";
|
|
|
|
|
2017-05-21 17:39:23 +00:00
|
|
|
} // mapAttrs (n: v: v final.parsed) inspect.predicates
|
|
|
|
// args;
|
2017-02-17 05:36:10 +00:00
|
|
|
in assert final.useAndroidPrebuilt -> final.isAndroid;
|
2018-05-09 22:50:51 +00:00
|
|
|
assert lib.foldl
|
|
|
|
(pass: { assertion, message }:
|
|
|
|
if assertion final
|
|
|
|
then pass
|
|
|
|
else throw message)
|
|
|
|
true
|
|
|
|
(final.parsed.abi.assertions or []);
|
2017-02-17 05:36:10 +00:00
|
|
|
final;
|
2017-02-09 02:27:22 +00:00
|
|
|
}
|