summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/ios-cross/default.nix
blob: e5375ef60915f5ed4d012c818542a978989aa099 (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
{ runCommand
, lib
, llvm
, clang
, binutils
, stdenv
, coreutils
, gnugrep
, targetPlatform
}:

/* As of this writing, known-good prefix/arch/simulator triples:
 * aarch64-apple-darwin14 | arm64  | false
 * arm-apple-darwin10     | armv7  | false
 * i386-apple-darwin11    | i386   | true
 * x86_64-apple-darwin14  | x86_64 | true
 */

let

  prefix = targetPlatform.config;
  inherit (targetPlatform) arch;
  simulator = targetPlatform.isiPhoneSimulator or false;

  sdkType = if simulator then "Simulator" else "OS";

  sdkVer = "10.2";

  sdk = "/Applications/Xcode.app/Contents/Developer/Platforms/iPhone${sdkType}.platform/Developer/SDKs/iPhone${sdkType}${sdkVer}.sdk";

  /* TODO: Properly integrate with gcc-cross-wrapper */
  wrapper = import ../../../build-support/cc-wrapper {
    inherit stdenv coreutils gnugrep;
    nativeTools = false;
    nativeLibc = false;
    inherit binutils;
    libc = runCommand "empty-libc" {} "mkdir -p $out/{lib,include}";
    cc = clang;
    extraBuildCommands = ''
      if ! [ -d ${sdk} ]; then
          echo "You must have ${sdkVer} of the iPhone${sdkType} sdk installed at ${sdk}" >&2
          exit 1
      fi
      # ugh
      tr '\n' ' ' < $out/nix-support/cc-cflags > cc-cflags.tmp
      mv cc-cflags.tmp $out/nix-support/cc-cflags
      echo "-target ${prefix} -arch ${arch} -idirafter ${sdk}/usr/include ${if simulator then "-mios-simulator-version-min=7.0" else "-miphoneos-version-min=7.0"}" >> $out/nix-support/cc-cflags

      # Purposefully overwrite libc-ldflags-before, cctools ld doesn't know dynamic-linker and cc-wrapper doesn't do cross-compilation well enough to adjust
      echo "-arch ${arch} -L${sdk}/usr/lib ${lib.optionalString simulator "-L${sdk}/usr/lib/system "}-i${if simulator then "os_simulator" else "phoneos"}_version_min 7.0.0" > $out/nix-support/libc-ldflags-before
    '';
  };
in {
  cc = runCommand "${prefix}-cc" { passthru = { inherit sdkType sdkVer sdk; }; } ''
    mkdir -p $out/bin
    ln -sv ${wrapper}/bin/clang $out/bin/${prefix}-cc
    mkdir -p $out/nix-support
    echo ${llvm} > $out/nix-support/propagated-native-build-inputs
    cat > $out/nix-support/setup-hook <<EOF
    if test "\$dontSetConfigureCross" != "1"; then
        configureFlags="\$configureFlags --host=${prefix}"
    fi
    EOF
    fixupPhase
  '';

  binutils = runCommand "${prefix}-binutils" {} ''
    mkdir -p $out/bin
    ln -sv ${wrapper}/bin/ld $out/bin/${prefix}-ld
    for prog in ar nm ranlib; do
      ln -s ${binutils}/bin/$prog $out/bin/${prefix}-$prog
    done
    fixupPhase
  '';
}