2017-10-18 19:05:39 +01:00
|
|
|
{ stdenv, targetPackages
|
2018-03-27 00:42:46 +01:00
|
|
|
, fetchurl, fetchgit, fetchzip, file, python2, tzdata, ps
|
2017-10-18 19:05:39 +01:00
|
|
|
, llvm, jemalloc, ncurses, darwin, rustPlatform, git, cmake, curl
|
2017-05-30 14:48:06 +01:00
|
|
|
, which, libffi, gdb
|
|
|
|
, version
|
2015-10-17 17:39:50 +01:00
|
|
|
, forceBundledLLVM ? false
|
2017-05-30 14:48:06 +01:00
|
|
|
, src
|
2015-10-03 15:23:00 +01:00
|
|
|
, configureFlags ? []
|
|
|
|
, patches
|
2016-06-07 19:53:25 +01:00
|
|
|
, targets
|
2016-06-14 11:49:48 +01:00
|
|
|
, targetPatches
|
2016-06-07 19:53:25 +01:00
|
|
|
, targetToolchains
|
2018-06-04 21:08:41 +01:00
|
|
|
, doCheck ? true
|
2017-09-28 22:16:18 +01:00
|
|
|
, broken ? false
|
2017-04-26 05:06:11 +01:00
|
|
|
, buildPlatform, hostPlatform
|
2016-02-23 20:59:36 +00:00
|
|
|
} @ args:
|
2015-10-03 15:23:00 +01:00
|
|
|
|
2016-05-31 20:16:18 +01:00
|
|
|
let
|
2016-08-07 22:43:54 +01:00
|
|
|
inherit (stdenv.lib) optional optionalString;
|
2017-12-28 19:42:23 +00:00
|
|
|
inherit (darwin.apple_sdk.frameworks) Security;
|
2015-10-03 15:23:00 +01:00
|
|
|
|
2016-08-07 22:43:54 +01:00
|
|
|
llvmShared = llvm.override { enableSharedLibraries = true; };
|
2015-10-03 15:23:00 +01:00
|
|
|
|
2016-08-07 22:43:54 +01:00
|
|
|
target = builtins.replaceStrings [" "] [","] (builtins.toString targets);
|
2015-10-03 15:23:00 +01:00
|
|
|
in
|
|
|
|
|
2016-05-31 20:16:18 +01:00
|
|
|
stdenv.mkDerivation {
|
2017-01-12 13:25:20 +00:00
|
|
|
name = "rustc-${version}";
|
2015-10-03 15:23:00 +01:00
|
|
|
inherit version;
|
|
|
|
|
2017-05-30 14:48:06 +01:00
|
|
|
inherit src;
|
|
|
|
|
2017-10-31 06:37:15 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
2015-10-03 15:23:00 +01:00
|
|
|
|
2017-12-02 12:46:33 +00:00
|
|
|
# The build will fail at the very end on AArch64 without this.
|
|
|
|
dontUpdateAutotoolsGnuConfigScripts = if stdenv.isAarch64 then true else null;
|
|
|
|
|
2018-01-24 11:34:03 +00: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 22:43:54 +01:00
|
|
|
NIX_LDFLAGS = optionalString stdenv.isDarwin "-rpath ${llvmShared}/lib";
|
2015-11-30 20:54:04 +00:00
|
|
|
|
2016-11-28 10:21:12 +00: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 13:25:20 +00:00
|
|
|
# Increase codegen units to introduce parallelism within the compiler.
|
|
|
|
RUSTFLAGS = "-Ccodegen-units=10";
|
|
|
|
|
2016-05-31 20:16:18 +01:00
|
|
|
# We need rust to build rust. If we don't provide it, configure will try to download it.
|
2018-04-12 21:16:09 +01:00
|
|
|
# Reference: https://github.com/rust-lang/rust/blob/master/src/bootstrap/configure.py
|
2015-10-03 15:23:00 +01:00
|
|
|
configureFlags = configureFlags
|
2016-06-14 11:49:48 +01:00
|
|
|
++ [ "--enable-local-rust" "--local-rust-root=${rustPlatform.rust.rustc}" "--enable-rpath" ]
|
2018-02-20 09:59:26 +00:00
|
|
|
++ [ "--enable-vendor" ]
|
2015-10-17 17:39:50 +01:00
|
|
|
# ++ [ "--jemalloc-root=${jemalloc}/lib"
|
2018-02-20 09:59:26 +00:00
|
|
|
++ [ "--default-linker=${targetPackages.stdenv.cc}/bin/cc" ]
|
2017-10-06 23:12:22 +01:00
|
|
|
++ optional (!forceBundledLLVM) [ "--enable-llvm-link-shared" ]
|
2016-08-07 22:43:54 +01:00
|
|
|
++ optional (targets != []) "--target=${target}"
|
|
|
|
++ optional (!forceBundledLLVM) "--llvm-root=${llvmShared}";
|
2015-10-03 15:23:00 +01:00
|
|
|
|
2018-04-12 21:16:09 +01: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 11:49:48 +01:00
|
|
|
patches = patches ++ targetPatches;
|
2016-08-10 20:13:22 +01:00
|
|
|
|
2017-10-06 23:12:22 +01:00
|
|
|
# the rust build system complains that nix alters the checksums
|
|
|
|
dontFixLibtool = true;
|
|
|
|
|
2016-06-07 19:53:25 +01:00
|
|
|
passthru.target = target;
|
2015-10-03 15:23:00 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
2018-02-20 09:59:26 +00:00
|
|
|
patchShebangs src/etc
|
|
|
|
|
2015-10-03 15:23:00 +01:00
|
|
|
# Fix dynamic linking against llvm
|
2017-05-30 14:48:06 +01:00
|
|
|
#${optionalString (!forceBundledLLVM) ''sed -i 's/, kind = \\"static\\"//g' src/etc/mklldeps.py''}
|
2015-10-03 15:23:00 +01:00
|
|
|
|
|
|
|
# Fix the configure script to not require curl as we won't use it
|
|
|
|
sed -i configure \
|
2016-08-24 10:56:02 +01:00
|
|
|
-e '/probe_need CFG_CURL curl/d'
|
2015-10-03 15:23:00 +01: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 22:06:10 +00:00
|
|
|
# Disable fragile tests.
|
2016-11-28 10:16:13 +00:00
|
|
|
rm -vr src/test/run-make/linker-output-non-utf8 || true
|
2018-02-11 23:10:29 +00:00
|
|
|
rm -vr src/test/run-make/issue-26092 || true
|
2016-08-10 20:13:22 +01:00
|
|
|
|
2016-10-11 02:59:26 +01:00
|
|
|
# Remove test targeted at LLVM 3.9 - https://github.com/rust-lang/rust/issues/36835
|
2016-11-28 10:16:13 +00:00
|
|
|
rm -vr src/test/run-pass/issue-36023.rs || true
|
2016-10-11 02:59:26 +01:00
|
|
|
|
2016-11-20 14:38:14 +00:00
|
|
|
# Disable test getting stuck on hydra - possible fix:
|
|
|
|
# https://reviews.llvm.org/rL281650
|
2016-11-28 10:16:13 +00:00
|
|
|
rm -vr src/test/run-pass/issue-36474.rs || true
|
2016-11-20 14:38:14 +00:00
|
|
|
|
2017-10-31 18:39:07 +00: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 15:23:00 +01:00
|
|
|
# Useful debugging parameter
|
2016-08-24 10:56:02 +01:00
|
|
|
# export VERBOSE=1
|
2018-04-09 20:01:50 +01:00
|
|
|
'' + optionalString stdenv.isDarwin ''
|
2017-06-11 07:51:47 +01: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 22:13:10 +00: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-31 06:37:15 +00: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 15:23:00 +01:00
|
|
|
'';
|
|
|
|
|
2016-08-24 10:56:02 +01: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 09:25:35 +01:00
|
|
|
|
2015-11-30 20:54:04 +00:00
|
|
|
# ps is needed for one of the test cases
|
2017-08-06 18:00:58 +01:00
|
|
|
nativeBuildInputs =
|
2018-03-27 00:42:46 +01:00
|
|
|
[ file python2 ps rustPlatform.rust.rustc git cmake
|
2017-08-06 18:00:58 +01:00
|
|
|
which libffi
|
|
|
|
]
|
|
|
|
# Only needed for the debuginfo tests
|
|
|
|
++ optional (!stdenv.isDarwin) gdb;
|
2016-07-19 09:25:35 +01:00
|
|
|
|
2016-06-07 19:42:51 +01:00
|
|
|
buildInputs = [ ncurses ] ++ targetToolchains
|
2017-12-28 19:42:23 +00:00
|
|
|
++ optional stdenv.isDarwin Security
|
2016-08-07 22:43:54 +01:00
|
|
|
++ optional (!forceBundledLLVM) llvmShared;
|
2015-10-03 15:23:00 +01:00
|
|
|
|
2017-07-11 10:14:14 +01:00
|
|
|
outputs = [ "out" "man" "doc" ];
|
2016-04-08 14:56:26 +01:00
|
|
|
setOutputFlags = false;
|
2015-10-03 15:23:00 +01:00
|
|
|
|
2018-05-11 15:37:29 +01:00
|
|
|
# Disable codegen units and hardening for the tests.
|
2016-08-07 22:43:54 +01:00
|
|
|
preCheck = ''
|
2017-01-12 13:25:20 +00:00
|
|
|
export RUSTFLAGS=
|
2016-08-07 22:43:54 +01:00
|
|
|
export TZDIR=${tzdata}/share/zoneinfo
|
2018-05-11 15:37:29 +01:00
|
|
|
export hardeningDisable=all
|
2016-10-02 21:01:07 +01: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 22:43:54 +01:00
|
|
|
'';
|
2015-10-03 15:23:00 +01:00
|
|
|
|
2017-05-30 14:48:06 +01:00
|
|
|
inherit doCheck;
|
|
|
|
|
2017-06-23 22:45:27 +01:00
|
|
|
configurePlatforms = [];
|
2017-01-12 13:25:20 +00:00
|
|
|
|
2017-01-14 16:38:46 +00:00
|
|
|
# https://github.com/NixOS/nixpkgs/pull/21742#issuecomment-272305764
|
|
|
|
# https://github.com/rust-lang/rust/issues/30181
|
|
|
|
# enableParallelBuilding = false;
|
2017-01-12 13:25:20 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 19:42:46 +00:00
|
|
|
homepage = https://www.rust-lang.org/;
|
2017-01-12 13:25:20 +00:00
|
|
|
description = "A safe, concurrent, practical language";
|
2017-05-30 14:48:06 +01:00
|
|
|
maintainers = with maintainers; [ madjar cstrahan wizeman globin havvy wkennington ];
|
2017-01-12 13:25:20 +00:00
|
|
|
license = [ licenses.mit licenses.asl20 ];
|
2017-04-24 19:23:56 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2017-09-28 22:16:18 +01:00
|
|
|
broken = broken;
|
2017-01-12 13:25:20 +00:00
|
|
|
};
|
2015-10-03 15:23:00 +01:00
|
|
|
}
|