about summary refs log tree commit diff
path: root/pkgs/stdenv/cross/default.nix
blob: 1cbbfeb6d20257c2946a7c188cc475412673ea91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{ lib
, localSystem, crossSystem, config, overlays, crossOverlays ? []
}:

let
  bootStages = import ../. {
    inherit lib localSystem overlays;

    crossSystem = localSystem;
    crossOverlays = [];

    # Ignore custom stdenvs when cross compiling for compatibility
    # Use replaceCrossStdenv instead.
    config = builtins.removeAttrs config [ "replaceStdenv" ];
  };

in lib.init bootStages ++ [

  # Regular native packages
  (somePrevStage: lib.last bootStages somePrevStage // {
    # It's OK to change the built-time dependencies
    allowCustomOverrides = true;
  })

  # Build tool Packages
  (vanillaPackages: {
    inherit config overlays;
    selfBuild = false;
    stdenv =
      assert vanillaPackages.stdenv.buildPlatform == localSystem;
      assert vanillaPackages.stdenv.hostPlatform == localSystem;
      assert vanillaPackages.stdenv.targetPlatform == localSystem;
      vanillaPackages.stdenv.override { targetPlatform = crossSystem; };
    # It's OK to change the built-time dependencies
    allowCustomOverrides = true;
  })

  # Run Packages
  (buildPackages: let
    adaptStdenv =
      if crossSystem.isStatic
      then buildPackages.stdenvAdapters.makeStatic
      else lib.id;
  in {
    inherit config;
    overlays = overlays ++ crossOverlays;
    selfBuild = false;
    stdenv = let
      baseStdenv = adaptStdenv (buildPackages.stdenv.override (old: rec {
        buildPlatform = localSystem;
        hostPlatform = crossSystem;
        targetPlatform = crossSystem;

        # Prior overrides are surely not valid as packages built with this run on
        # a different platform, and so are disabled.
        overrides = _: _: {};
        extraBuildInputs = [ ] # Old ones run on wrong platform
           ++ lib.optionals hostPlatform.isDarwin [ buildPackages.targetPackages.darwin.apple_sdk.frameworks.CoreFoundation ]
           ;
        allowedRequisites = null;

        hasCC = !targetPlatform.isGhcjs;

        cc = if crossSystem.useiOSPrebuilt or false
               then buildPackages.darwin.iosSdkPkgs.clang
             else if crossSystem.useAndroidPrebuilt or false
               then buildPackages."androidndkPkgs_${crossSystem.ndkVer}".clang
             else if targetPlatform.isGhcjs
               # Need to use `throw` so tryEval for splicing works, ugh.  Using
               # `null` or skipping the attribute would cause an eval failure
               # `tryEval` wouldn't catch, wrecking accessing previous stages
               # when there is a C compiler and everything should be fine.
               then throw "no C compiler provided for this platform"
             else if crossSystem.isDarwin
               then buildPackages.llvmPackages.libcxxClang
             else if crossSystem.useLLVM or false
               then buildPackages.llvmPackages.clang
             else buildPackages.gcc;

        extraNativeBuildInputs = old.extraNativeBuildInputs
          ++ lib.optionals
               (hostPlatform.isLinux && !buildPlatform.isLinux)
               [ buildPackages.patchelf ]
          ++ lib.optional
               (let f = p: !p.isx86 || builtins.elem p.libc [ "musl" "wasilibc" "relibc" ] || p.isiOS || p.isGenode;
                 in f hostPlatform && !(f buildPlatform) )
               buildPackages.updateAutotoolsGnuConfigScriptsHook
          ;
      }));
    in if config ? replaceCrossStdenv then config.replaceCrossStdenv { inherit buildPackages baseStdenv; } else baseStdenv;
  })

]