2017-10-18 11:05:39 -07:00
|
|
|
{ stdenv, targetPackages
|
2018-03-26 16:42:46 -07:00
|
|
|
, fetchurl, fetchgit, fetchzip, file, python2, tzdata, ps
|
2017-10-18 11:05:39 -07:00
|
|
|
, llvm, jemalloc, ncurses, darwin, rustPlatform, git, cmake, curl
|
2017-05-30 06:48:06 -07:00
|
|
|
, which, libffi, gdb
|
|
|
|
, version
|
2015-10-17 09:39:50 -07:00
|
|
|
, forceBundledLLVM ? false
|
2017-05-30 06:48:06 -07:00
|
|
|
, src
|
2015-10-03 07:23:00 -07:00
|
|
|
, configureFlags ? []
|
|
|
|
, patches
|
2016-06-07 11:53:25 -07:00
|
|
|
, targets
|
2016-06-14 03:49:48 -07:00
|
|
|
, targetPatches
|
2016-06-07 11:53:25 -07:00
|
|
|
, targetToolchains
|
2018-06-04 13:08:41 -07:00
|
|
|
, doCheck ? true
|
2017-09-28 14:16:18 -07:00
|
|
|
, broken ? false
|
2017-04-25 21:06:11 -07:00
|
|
|
, buildPlatform, hostPlatform
|
2016-02-23 12:59:36 -08:00
|
|
|
} @ args:
|
2015-10-03 07:23:00 -07:00
|
|
|
|
2016-05-31 12:16:18 -07:00
|
|
|
let
|
2016-08-07 14:43:54 -07:00
|
|
|
inherit (stdenv.lib) optional optionalString;
|
2017-12-28 11:42:23 -08:00
|
|
|
inherit (darwin.apple_sdk.frameworks) Security;
|
2015-10-03 07:23:00 -07:00
|
|
|
|
2016-08-07 14:43:54 -07:00
|
|
|
llvmShared = llvm.override { enableSharedLibraries = true; };
|
2015-10-03 07:23:00 -07:00
|
|
|
|
2016-08-07 14:43:54 -07:00
|
|
|
target = builtins.replaceStrings [" "] [","] (builtins.toString targets);
|
2015-10-03 07:23:00 -07:00
|
|
|
in
|
|
|
|
|
2016-05-31 12:16:18 -07:00
|
|
|
stdenv.mkDerivation {
|
2017-01-12 05:25:20 -08:00
|
|
|
name = "rustc-${version}";
|
2015-10-03 07:23:00 -07:00
|
|
|
inherit version;
|
|
|
|
|
2017-05-30 06:48:06 -07:00
|
|
|
inherit src;
|
|
|
|
|
2017-10-30 23:37:15 -07:00
|
|
|
__darwinAllowLocalNetworking = true;
|
2015-10-03 07:23:00 -07:00
|
|
|
|
2017-12-02 04:46:33 -08:00
|
|
|
# The build will fail at the very end on AArch64 without this.
|
|
|
|
dontUpdateAutotoolsGnuConfigScripts = if stdenv.isAarch64 then true else null;
|
|
|
|
|
2018-01-24 03:34:03 -08:00
|
|
|
# Running the default `strip -S` command on Darwin corrupts the
|
|
|
|
# .rlib files in "lib/".
|
|
|
|
#
|
|
|
|
# See https://github.com/NixOS/nixpkgs/pull/34227
|
|
|
|
stripDebugList = if stdenv.isDarwin then [ "bin" ] else null;
|
|
|
|
|
2016-08-07 14:43:54 -07:00
|
|
|
NIX_LDFLAGS = optionalString stdenv.isDarwin "-rpath ${llvmShared}/lib";
|
2015-11-30 12:54:04 -08:00
|
|
|
|
2016-11-28 02:21:12 -08:00
|
|
|
# Enable nightly features in stable compiles (used for
|
|
|
|
# bootstrapping, see https://github.com/rust-lang/rust/pull/37265).
|
|
|
|
# This loosens the hard restrictions on bootstrapping-compiler
|
|
|
|
# versions.
|
|
|
|
RUSTC_BOOTSTRAP = "1";
|
|
|
|
|
2017-01-12 05:25:20 -08:00
|
|
|
# Increase codegen units to introduce parallelism within the compiler.
|
|
|
|
RUSTFLAGS = "-Ccodegen-units=10";
|
|
|
|
|
2016-05-31 12:16:18 -07:00
|
|
|
# We need rust to build rust. If we don't provide it, configure will try to download it.
|
2018-04-12 13:16:09 -07:00
|
|
|
# Reference: https://github.com/rust-lang/rust/blob/master/src/bootstrap/configure.py
|
2015-10-03 07:23:00 -07:00
|
|
|
configureFlags = configureFlags
|
2016-06-14 03:49:48 -07:00
|
|
|
++ [ "--enable-local-rust" "--local-rust-root=${rustPlatform.rust.rustc}" "--enable-rpath" ]
|
2018-02-20 01:59:26 -08:00
|
|
|
++ [ "--enable-vendor" ]
|
2015-10-17 09:39:50 -07:00
|
|
|
# ++ [ "--jemalloc-root=${jemalloc}/lib"
|
2018-02-20 01:59:26 -08:00
|
|
|
++ [ "--default-linker=${targetPackages.stdenv.cc}/bin/cc" ]
|
2017-10-06 15:12:22 -07:00
|
|
|
++ optional (!forceBundledLLVM) [ "--enable-llvm-link-shared" ]
|
2016-08-07 14:43:54 -07:00
|
|
|
++ optional (targets != []) "--target=${target}"
|
|
|
|
++ optional (!forceBundledLLVM) "--llvm-root=${llvmShared}";
|
2015-10-03 07:23:00 -07:00
|
|
|
|
2018-04-12 13:16:09 -07:00
|
|
|
# The boostrap.py will generated a Makefile that then executes the build.
|
|
|
|
# The BOOTSTRAP_ARGS used by this Makefile must include all flags to pass
|
|
|
|
# to the bootstrap builder.
|
|
|
|
postConfigure = ''
|
|
|
|
substituteInPlace Makefile --replace 'BOOTSTRAP_ARGS :=' 'BOOTSTRAP_ARGS := --jobs $(NIX_BUILD_CORES)'
|
|
|
|
'';
|
|
|
|
|
2016-06-14 03:49:48 -07:00
|
|
|
patches = patches ++ targetPatches;
|
2016-08-10 12:13:22 -07:00
|
|
|
|
2017-10-06 15:12:22 -07:00
|
|
|
# the rust build system complains that nix alters the checksums
|
|
|
|
dontFixLibtool = true;
|
|
|
|
|
2016-06-07 11:53:25 -07:00
|
|
|
passthru.target = target;
|
2015-10-03 07:23:00 -07:00
|
|
|
|
|
|
|
postPatch = ''
|
2018-02-20 01:59:26 -08:00
|
|
|
patchShebangs src/etc
|
|
|
|
|
2015-10-03 07:23:00 -07:00
|
|
|
# Fix dynamic linking against llvm
|
2017-05-30 06:48:06 -07:00
|
|
|
#${optionalString (!forceBundledLLVM) ''sed -i 's/, kind = \\"static\\"//g' src/etc/mklldeps.py''}
|
2015-10-03 07:23:00 -07:00
|
|
|
|
|
|
|
# Fix the configure script to not require curl as we won't use it
|
|
|
|
sed -i configure \
|
2016-08-24 02:56:02 -07:00
|
|
|
-e '/probe_need CFG_CURL curl/d'
|
2015-10-03 07:23:00 -07:00
|
|
|
|
|
|
|
# Fix the use of jemalloc prefixes which our jemalloc doesn't have
|
|
|
|
# TODO: reenable if we can figure out how to get our jemalloc to work
|
|
|
|
#[ -f src/liballoc_jemalloc/lib.rs ] && sed -i 's,je_,,g' src/liballoc_jemalloc/lib.rs
|
|
|
|
#[ -f src/liballoc/heap.rs ] && sed -i 's,je_,,g' src/liballoc/heap.rs # Remove for 1.4.0+
|
|
|
|
|
2018-01-24 14:06:10 -08:00
|
|
|
# Disable fragile tests.
|
2016-11-28 02:16:13 -08:00
|
|
|
rm -vr src/test/run-make/linker-output-non-utf8 || true
|
2018-02-11 15:10:29 -08:00
|
|
|
rm -vr src/test/run-make/issue-26092 || true
|
2016-08-10 12:13:22 -07:00
|
|
|
|
2016-10-10 18:59:26 -07:00
|
|
|
# Remove test targeted at LLVM 3.9 - https://github.com/rust-lang/rust/issues/36835
|
2016-11-28 02:16:13 -08:00
|
|
|
rm -vr src/test/run-pass/issue-36023.rs || true
|
2016-10-10 18:59:26 -07:00
|
|
|
|
2016-11-20 06:38:14 -08:00
|
|
|
# Disable test getting stuck on hydra - possible fix:
|
|
|
|
# https://reviews.llvm.org/rL281650
|
2016-11-28 02:16:13 -08:00
|
|
|
rm -vr src/test/run-pass/issue-36474.rs || true
|
2016-11-20 06:38:14 -08:00
|
|
|
|
2017-10-31 11:39:07 -07:00
|
|
|
# On Hydra: `TcpListener::bind(&addr)`: Address already in use (os error 98)'
|
|
|
|
sed '/^ *fn fast_rebind()/i#[ignore]' -i src/libstd/net/tcp.rs
|
|
|
|
|
2015-10-03 07:23:00 -07:00
|
|
|
# Useful debugging parameter
|
2016-08-24 02:56:02 -07:00
|
|
|
# export VERBOSE=1
|
2018-04-09 12:01:50 -07:00
|
|
|
'' + optionalString stdenv.isDarwin ''
|
2017-06-10 23:51:47 -07:00
|
|
|
# Disable all lldb tests.
|
|
|
|
# error: Can't run LLDB test because LLDB's python path is not set
|
|
|
|
rm -vr src/test/debuginfo/*
|
2018-01-08 14:13:10 -08:00
|
|
|
rm -v src/test/run-pass/backtrace-debuginfo.rs
|
|
|
|
|
|
|
|
# error: No such file or directory
|
|
|
|
rm -v src/test/run-pass/issue-45731.rs
|
2017-10-30 23:37:15 -07:00
|
|
|
|
|
|
|
# Disable tests that fail when sandboxing is enabled.
|
|
|
|
substituteInPlace src/libstd/sys/unix/ext/net.rs \
|
|
|
|
--replace '#[test]' '#[test] #[ignore]'
|
|
|
|
substituteInPlace src/test/run-pass/env-home-dir.rs \
|
|
|
|
--replace 'home_dir().is_some()' true
|
|
|
|
rm -v src/test/run-pass/fds-are-cloexec.rs # FIXME: pipes?
|
|
|
|
rm -v src/test/run-pass/sync-send-in-std.rs # FIXME: ???
|
2015-10-03 07:23:00 -07:00
|
|
|
'';
|
|
|
|
|
2016-08-24 02:56:02 -07:00
|
|
|
# rustc unfortunately need cmake for compiling llvm-rt but doesn't
|
|
|
|
# use it for the normal build. This disables cmake in Nix.
|
|
|
|
dontUseCmakeConfigure = true;
|
2016-07-19 01:25:35 -07:00
|
|
|
|
2015-11-30 12:54:04 -08:00
|
|
|
# ps is needed for one of the test cases
|
2017-08-06 10:00:58 -07:00
|
|
|
nativeBuildInputs =
|
2018-03-26 16:42:46 -07:00
|
|
|
[ file python2 ps rustPlatform.rust.rustc git cmake
|
2017-08-06 10:00:58 -07:00
|
|
|
which libffi
|
|
|
|
]
|
|
|
|
# Only needed for the debuginfo tests
|
|
|
|
++ optional (!stdenv.isDarwin) gdb;
|
2016-07-19 01:25:35 -07:00
|
|
|
|
2016-06-07 11:42:51 -07:00
|
|
|
buildInputs = [ ncurses ] ++ targetToolchains
|
2017-12-28 11:42:23 -08:00
|
|
|
++ optional stdenv.isDarwin Security
|
2016-08-07 14:43:54 -07:00
|
|
|
++ optional (!forceBundledLLVM) llvmShared;
|
2015-10-03 07:23:00 -07:00
|
|
|
|
2017-07-11 02:14:14 -07:00
|
|
|
outputs = [ "out" "man" "doc" ];
|
2016-04-08 06:56:26 -07:00
|
|
|
setOutputFlags = false;
|
2015-10-03 07:23:00 -07:00
|
|
|
|
2018-05-11 07:37:29 -07:00
|
|
|
# Disable codegen units and hardening for the tests.
|
2016-08-07 14:43:54 -07:00
|
|
|
preCheck = ''
|
2017-01-12 05:25:20 -08:00
|
|
|
export RUSTFLAGS=
|
2016-08-07 14:43:54 -07:00
|
|
|
export TZDIR=${tzdata}/share/zoneinfo
|
2018-05-11 07:37:29 -07:00
|
|
|
export hardeningDisable=all
|
2016-10-02 13:01:07 -07:00
|
|
|
'' +
|
|
|
|
# Ensure TMPDIR is set, and disable a test that removing the HOME
|
|
|
|
# variable from the environment falls back to another home
|
|
|
|
# directory.
|
|
|
|
optionalString stdenv.isDarwin ''
|
|
|
|
export TMPDIR=/tmp
|
|
|
|
sed -i '28s/home_dir().is_some()/true/' ./src/test/run-pass/env-home-dir.rs
|
2016-08-07 14:43:54 -07:00
|
|
|
'';
|
2015-10-03 07:23:00 -07:00
|
|
|
|
2017-05-30 06:48:06 -07:00
|
|
|
inherit doCheck;
|
|
|
|
|
2017-06-23 14:45:27 -07:00
|
|
|
configurePlatforms = [];
|
2017-01-12 05:25:20 -08:00
|
|
|
|
2017-01-14 08:38:46 -08:00
|
|
|
# https://github.com/NixOS/nixpkgs/pull/21742#issuecomment-272305764
|
|
|
|
# https://github.com/rust-lang/rust/issues/30181
|
|
|
|
# enableParallelBuilding = false;
|
2017-01-12 05:25:20 -08:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 11:42:46 -08:00
|
|
|
homepage = https://www.rust-lang.org/;
|
2017-01-12 05:25:20 -08:00
|
|
|
description = "A safe, concurrent, practical language";
|
2017-05-30 06:48:06 -07:00
|
|
|
maintainers = with maintainers; [ madjar cstrahan wizeman globin havvy wkennington ];
|
2017-01-12 05:25:20 -08:00
|
|
|
license = [ licenses.mit licenses.asl20 ];
|
2017-04-24 11:23:56 -07:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2017-09-28 14:16:18 -07:00
|
|
|
broken = broken;
|
2017-01-12 05:25:20 -08:00
|
|
|
};
|
2015-10-03 07:23:00 -07:00
|
|
|
}
|