shrub/nix/nixcrpkgs/macos/default.nix
benjamin-tlon ade1e59ce1
Get cross-compilation ready for release. (#1263)
* Add cross-compilation for `lmdb`.
* Got built caching working in CI with `cachix`.
* Cache cross compilation dependencies and toolchains.
* Do release builds in CI.
* Upload release builds to `bootstrap.urbit.org` on successful build.
* Lots of optimization work for CI.
* Boot from a solid pill in CI and load arvo with `-A`.
* Increase `vere` HTTP timeout to 15m.
2019-05-02 13:13:48 -07:00

193 lines
5.2 KiB
Nix

# Note: To reduce clutter here, it might be nice to move clang to
# `native`, and also make `native` provide a function for building
# binutils. So clang and binutils recipes could be shared by the
# different platforms we targets.
{ osx_sdk, native }:
let
nixpkgs = native.nixpkgs;
arch = "x86_64";
# was darwin15, changed to darwin so that lld guesses flavor=Darwin correctly
darwin_name = "darwin15";
macos_version_min = "10.11";
host = "${arch}-apple-${darwin_name}";
os = "macos";
compiler = "clang";
exe_suffix = "";
clang = native.make_derivation rec {
name = "clang";
version = "5.0.0";
src = nixpkgs.fetchurl {
url = "https://llvm.org/releases/${version}/cfe-${version}.src.tar.xz";
sha256 = "0w09s8fn3lkn6i04nj0cisgp821r815fk5b5fjn97xrd371277q1";
};
llvm_src = nixpkgs.fetchurl {
url = "https://llvm.org/releases/${version}/llvm-${version}.src.tar.xz";
sha256 = "1nin64vz21hyng6jr19knxipvggaqlkl2l9jpd5czbc4c2pcnpg3";
};
# Note: We aren't actually using lld for anything yet.
lld_src = nixpkgs.fetchurl {
url = "http://releases.llvm.org/${version}/lld-${version}.src.tar.xz";
sha256 = "15rqsmfw0jlsri7hszbs8l0j7v1030cy9xvvdb245397llh7k6ir";
};
patches = [ ./clang_megapatch.patch ];
builder = ./clang_builder.sh;
native_inputs = [ nixpkgs.python2 ];
cmake_flags =
"-DCMAKE_BUILD_TYPE=Release " +
# "-DCMAKE_BUILD_TYPE=Debug " +
"-DLLVM_TARGETS_TO_BUILD=X86\;ARM " +
"-DLLVM_ENABLE_RTTI=ON " + # ld64 uses dynamic_cast, requiring rtti
"-DLLVM_ENABLE_ASSERTIONS=OFF";
};
# Note: There is an alternative version we could use, but it
# has a copy of LLVM in it: https://github.com/tpoechtrager/apple-libtapi
tapi = native.make_derivation rec {
name = "tapi";
version = "${version0}.${version1}.${version2}";
version0 = "2";
version1 = "0";
version2 = "0";
src = nixpkgs.fetchurl {
url = "https://github.com/DavidEGrayson/tapi/archive/f98d0c3.tar.gz";
sha256 = "0jibz0fsyh47q8y3w6f0qspjh6fhs164rkhjg7x6k7qhlawcdy6g";
};
builder = ./tapi_builder.sh;
native_inputs = [ clang ];
inherit clang;
};
cctools_commit = "c1cc758";
cctools_apple_version = "274.2"; # from README.md
cctools_port_src = nixpkgs.fetchurl {
url = "https://github.com/tpoechtrager/cctools-port/archive/${cctools_commit}.tar.gz";
sha256= "11bfcndzbdmjp2piabyqs34da617fh5fhirqvb9w87anfan15ffa";
};
ld = native.make_derivation rec {
name = "cctools-ld64";
apple_version = cctools_apple_version;
src = cctools_port_src;
patches = [
./cctools-format.patch
./cctools-ld64-registers.patch
];
builder = ./ld_builder.sh;
native_inputs = [ tapi ];
inherit host;
};
ranlib = native.make_derivation rec {
name = "cctools-ranlib";
apple_version = cctools_apple_version;
src = ld.src;
builder = ./ranlib_builder.sh;
patches = [
./cctools-format.patch
./cctools-bytesex.patch
];
inherit host;
};
ar = native.make_derivation rec {
name = "cctools-ar";
apple_version = cctools_apple_version;
src = cctools_port_src;
builder = ./ar_builder.sh;
patches = [
./cctools-format.patch
./cctools-libstuff-no-error.patch
];
inherit host ranlib;
};
strip = native.make_derivation rec {
name = "cctools-strip";
apple_version = cctools_apple_version;
src = cctools_port_src;
builder = ./strip_builder.sh;
patches = [
./cctools-format.patch
];
inherit host;
};
# TODO: add instructions for building the SDK tarball, probably want a copy of
# the script from osxcross.
sdk = native.make_derivation rec {
name = "macos-sdk";
builder = ./sdk_builder.sh;
src = osx_sdk;
};
toolchain = native.make_derivation rec {
name = "macos-toolchain";
builder = ./toolchain_builder.sh;
src_file = ./wrapper.cpp;
inherit host clang ld ranlib ar strip sdk;
CXXFLAGS =
"-std=c++11 " +
"-Wall " +
"-I. " +
"-O2 -g " +
"-DWRAPPER_OS_VERSION_MIN=\\\"${macos_version_min}\\\" " +
"-DWRAPPER_HOST=\\\"${host}\\\" " +
"-DWRAPPER_ARCH=\\\"${arch}\\\" " +
"-DWRAPPER_SDK_PATH=\\\"${sdk}\\\" " +
"-DWRAPPER_LINKER_VERSION=\\\"${ld.apple_version}\\\"";
};
cmake_toolchain = import ../cmake_toolchain {
cmake_system_name = "Darwin";
inherit nixpkgs host;
};
crossenv = {
is_cross = true;
# Build tools available on the PATH for every derivation.
default_native_inputs = native.default_native_inputs
++ [ clang toolchain native.wrappers ];
# Target info environment variables.
inherit host arch os compiler exe_suffix macos_version_min;
# CMake toolchain file.
inherit cmake_toolchain;
# A wide variety of programs and build tools.
inherit nixpkgs;
# Some native build tools made by nixcrpkgs.
inherit native;
# License information that should be shipped with any software
# compiled by this environment.
global_license_set = { };
# Make it easy to build or refer to the build tools.
inherit clang tapi ld ranlib ar sdk toolchain strip;
make_derivation = import ../make_derivation.nix crossenv;
};
in
crossenv