Files
nixpkgs/pkgs/development/compilers/rust/rustc.nix
T

156 lines
5.4 KiB
Nix
Raw Normal View History

2015-10-03 16:23:00 +02:00
{ stdenv, fetchurl, fetchgit, fetchzip, file, python2, tzdata, procps
, llvm, jemalloc, ncurses, darwin, binutils, rustPlatform, git, cmake, curl
2017-05-30 20:48:06 +07:00
, which, libffi, gdb
, version
2015-10-17 18:39:50 +02:00
, forceBundledLLVM ? false
2017-05-30 20:48:06 +07:00
, src
2015-10-03 16:23:00 +02:00
, configureFlags ? []
, patches
2016-06-07 20:53:25 +02:00
, targets
, targetPatches
2016-06-07 20:53:25 +02:00
, targetToolchains
2017-05-30 20:48:06 +07:00
, doCheck ? true
, buildPlatform, hostPlatform
2016-02-23 12:59:36 -08:00
} @ args:
2015-10-03 16:23:00 +02:00
2016-05-31 21:16:18 +02:00
let
2016-08-07 23:43:54 +02:00
inherit (stdenv.lib) optional optionalString;
2015-10-03 16:23:00 +02:00
2016-08-07 23:43:54 +02:00
procps = if stdenv.isDarwin then darwin.ps else args.procps;
2015-11-30 12:54:04 -08:00
2016-08-07 23:43:54 +02:00
llvmShared = llvm.override { enableSharedLibraries = true; };
2015-10-03 16:23:00 +02:00
2016-08-07 23:43:54 +02:00
target = builtins.replaceStrings [" "] [","] (builtins.toString targets);
2015-10-03 16:23:00 +02:00
in
2016-05-31 21:16:18 +02:00
stdenv.mkDerivation {
name = "rustc-${version}";
2015-10-03 16:23:00 +02:00
inherit version;
2017-05-30 20:48:06 +07:00
inherit src;
2015-10-03 16:23:00 +02:00
__impureHostDeps = [ "/usr/lib/libedit.3.dylib" ];
2016-08-07 23:43:54 +02:00
NIX_LDFLAGS = optionalString stdenv.isDarwin "-rpath ${llvmShared}/lib";
2015-11-30 12:54:04 -08:00
2016-11-28 11:21:12 +01: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";
# Increase codegen units to introduce parallelism within the compiler.
RUSTFLAGS = "-Ccodegen-units=10";
2016-05-31 21:16:18 +02:00
# We need rust to build rust. If we don't provide it, configure will try to download it.
2015-10-03 16:23:00 +02:00
configureFlags = configureFlags
++ [ "--enable-local-rust" "--local-rust-root=${rustPlatform.rust.rustc}" "--enable-rpath" ]
2017-05-30 20:48:06 +07:00
++ [ "--enable-vendor" "--disable-locked-deps" ]
++ [ "--enable-llvm-link-shared" ]
2015-10-17 18:39:50 +02:00
# ++ [ "--jemalloc-root=${jemalloc}/lib"
++ [ "--default-linker=${stdenv.cc}/bin/cc" "--default-ar=${binutils.out}/bin/ar" ]
2016-08-07 23:43:54 +02:00
++ optional (stdenv.cc.cc ? isClang) "--enable-clang"
++ optional (targets != []) "--target=${target}"
++ optional (!forceBundledLLVM) "--llvm-root=${llvmShared}";
2015-10-03 16:23:00 +02:00
patches = patches ++ targetPatches;
2016-06-07 20:53:25 +02:00
passthru.target = target;
2015-10-03 16:23:00 +02:00
postPatch = ''
# Fix dynamic linking against llvm
2017-05-30 20:48:06 +07:00
#${optionalString (!forceBundledLLVM) ''sed -i 's/, kind = \\"static\\"//g' src/etc/mklldeps.py''}
2015-10-03 16:23:00 +02:00
# Fix the configure script to not require curl as we won't use it
sed -i configure \
-e '/probe_need CFG_CURL curl/d'
2015-10-03 16:23:00 +02: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+
# Disable fragile linker-output-non-utf8 test
rm -vr src/test/run-make/linker-output-non-utf8 || true
# Remove test targeted at LLVM 3.9 - https://github.com/rust-lang/rust/issues/36835
rm -vr src/test/run-pass/issue-36023.rs || true
2016-11-20 15:38:14 +01:00
# Disable test getting stuck on hydra - possible fix:
# https://reviews.llvm.org/rL281650
rm -vr src/test/run-pass/issue-36474.rs || true
2016-11-20 15:38:14 +01:00
2017-05-30 20:48:06 +07:00
# Disable some failing gdb tests. Try re-enabling these when gdb
# is updated past version 7.12.
rm src/test/debuginfo/basic-types-globals.rs
rm src/test/debuginfo/basic-types-mut-globals.rs
rm src/test/debuginfo/c-style-enum.rs
rm src/test/debuginfo/lexical-scopes-in-block-expression.rs
rm src/test/debuginfo/limited-debuginfo.rs
rm src/test/debuginfo/simple-struct.rs
rm src/test/debuginfo/simple-tuple.rs
2017-06-11 15:11:46 +02:00
rm src/test/debuginfo/union-smoke.rs
2017-05-30 20:48:06 +07:00
rm src/test/debuginfo/vec-slices.rs
rm src/test/debuginfo/vec.rs
2015-10-03 16:23:00 +02:00
# Useful debugging parameter
# export VERBOSE=1
2017-06-11 08:51:47 +02:00
''
+ optionalString stdenv.isDarwin ''
# Disable all lldb tests.
# error: Can't run LLDB test because LLDB's python path is not set
rm -vr src/test/debuginfo/*
2015-10-03 16:23:00 +02:00
'';
preConfigure = ''
# Needed flags as the upstream configure script has a broken prefix substitution
configureFlagsArray+=("--datadir=$out/share")
configureFlagsArray+=("--infodir=$out/share/info")
'';
# rustc unfortunately need cmake for compiling llvm-rt but doesn't
# use it for the normal build. This disables cmake in Nix.
dontUseCmakeConfigure = true;
2015-11-30 12:54:04 -08:00
# ps is needed for one of the test cases
2017-05-30 20:48:06 +07:00
nativeBuildInputs = [ file python2 procps rustPlatform.rust.rustc git cmake
which libffi gdb ];
buildInputs = [ ncurses ] ++ targetToolchains
2016-08-07 23:43:54 +02:00
++ optional (!forceBundledLLVM) llvmShared;
2015-10-03 16:23:00 +02:00
outputs = [ "out" "doc" ];
2016-04-08 15:56:26 +02:00
setOutputFlags = false;
2015-10-03 16:23:00 +02:00
# Disable codegen units for the tests.
2016-08-07 23:43:54 +02:00
preCheck = ''
export RUSTFLAGS=
2016-08-07 23:43:54 +02:00
export TZDIR=${tzdata}/share/zoneinfo
2016-10-02 16:01:07 -04: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 23:43:54 +02:00
'';
2015-10-03 16:23:00 +02:00
2017-05-30 20:48:06 +07:00
inherit doCheck;
${if buildPlatform == hostPlatform then "dontSetConfigureCross" else null} = true;
${if buildPlatform != hostPlatform then "configurePlatforms" else null} = [];
# https://github.com/NixOS/nixpkgs/pull/21742#issuecomment-272305764
# https://github.com/rust-lang/rust/issues/30181
# enableParallelBuilding = false;
meta = with stdenv.lib; {
homepage = http://www.rust-lang.org/;
description = "A safe, concurrent, practical language";
2017-05-30 20:48:06 +07:00
maintainers = with maintainers; [ madjar cstrahan wizeman globin havvy wkennington ];
license = [ licenses.mit licenses.asl20 ];
2017-04-24 21:23:56 +03:00
platforms = platforms.linux ++ platforms.darwin;
};
2015-10-03 16:23:00 +02:00
}