2018-11-21 01:47:45 +00:00
|
|
|
{ stdenv, removeReferencesTo, pkgsBuildBuild, pkgsBuildHost, pkgsBuildTarget
|
2019-12-15 12:52:53 +00:00
|
|
|
, fetchurl, file, python3
|
2020-07-22 17:03:31 +01:00
|
|
|
, llvm_10, darwin, cmake, rust, rustPlatform
|
2019-09-26 13:51:12 +01:00
|
|
|
, pkgconfig, openssl
|
2019-09-30 10:00:33 +01:00
|
|
|
, which, libffi
|
2018-10-30 13:56:23 +00:00
|
|
|
, withBundledLLVM ? false
|
2020-01-18 09:57:13 +00:00
|
|
|
, enableRustcDev ? true
|
2019-11-08 12:04:53 +00:00
|
|
|
, version
|
|
|
|
, sha256
|
2020-02-22 23:34:05 +00:00
|
|
|
, patches ? []
|
2018-07-20 20:54:05 +01:00
|
|
|
}:
|
2015-10-03 15:23:00 +01:00
|
|
|
|
2016-05-31 20:16:18 +01:00
|
|
|
let
|
2019-11-13 13:17:33 +00:00
|
|
|
inherit (stdenv.lib) optionals optional optionalString;
|
2017-12-28 19:42:23 +00:00
|
|
|
inherit (darwin.apple_sdk.frameworks) Security;
|
2015-10-03 15:23:00 +01:00
|
|
|
|
2020-07-22 17:03:31 +01:00
|
|
|
llvmSharedForBuild = pkgsBuildBuild.llvm_10.override { enableSharedLibraries = true; };
|
|
|
|
llvmSharedForHost = pkgsBuildHost.llvm_10.override { enableSharedLibraries = true; };
|
|
|
|
llvmSharedForTarget = pkgsBuildTarget.llvm_10.override { enableSharedLibraries = true; };
|
2015-10-03 15:23:00 +01:00
|
|
|
|
2018-11-21 01:47:45 +00:00
|
|
|
# For use at runtime
|
2020-07-22 17:03:31 +01:00
|
|
|
llvmShared = llvm_10.override { enableSharedLibraries = true; };
|
2019-09-26 13:50:07 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
2018-11-21 01:47:45 +00:00
|
|
|
pname = "rustc";
|
2019-11-08 12:04:53 +00:00
|
|
|
inherit version;
|
2015-10-03 15:23:00 +01:00
|
|
|
|
2018-11-21 01:47:45 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz";
|
2019-11-08 12:04:53 +00:00
|
|
|
inherit sha256;
|
2018-11-21 01:47:45 +00:00
|
|
|
};
|
2017-05-30 14:48:06 +01:00
|
|
|
|
2017-10-31 06:37:15 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
2015-10-03 15:23:00 +01:00
|
|
|
|
2018-08-14 08:40:47 +01:00
|
|
|
# rustc complains about modified source files otherwise
|
|
|
|
dontUpdateAutotoolsGnuConfigScripts = true;
|
2017-12-02 12:46:33 +00:00
|
|
|
|
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
|
2019-03-13 16:52:01 +00:00
|
|
|
#
|
|
|
|
# Running `strip -S` when cross compiling can harm the cross rlibs.
|
|
|
|
# See: https://github.com/NixOS/nixpkgs/pull/56540#issuecomment-471624656
|
|
|
|
stripDebugList = [ "bin" ];
|
2018-01-24 11:34:03 +00:00
|
|
|
|
2019-10-30 00:12:09 +00:00
|
|
|
NIX_LDFLAGS = toString (
|
2018-10-30 13:56:23 +00:00
|
|
|
# when linking stage1 libstd: cc: undefined reference to `__cxa_begin_catch'
|
|
|
|
optional (stdenv.isLinux && !withBundledLLVM) "--push-state --as-needed -lstdc++ --pop-state"
|
2018-11-08 11:58:56 +00:00
|
|
|
++ optional (stdenv.isDarwin && !withBundledLLVM) "-lc++"
|
2019-10-30 00:12:09 +00:00
|
|
|
++ optional stdenv.isDarwin "-rpath ${llvmSharedForHost}/lib");
|
2015-11-30 20:54:04 +00:00
|
|
|
|
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
|
2018-11-21 01:47:45 +00:00
|
|
|
configureFlags = let
|
2018-12-21 00:28:09 +00:00
|
|
|
setBuild = "--set=target.${rust.toRustTarget stdenv.buildPlatform}";
|
|
|
|
setHost = "--set=target.${rust.toRustTarget stdenv.hostPlatform}";
|
|
|
|
setTarget = "--set=target.${rust.toRustTarget stdenv.targetPlatform}";
|
2018-11-21 01:47:45 +00:00
|
|
|
ccForBuild = "${pkgsBuildBuild.targetPackages.stdenv.cc}/bin/${pkgsBuildBuild.targetPackages.stdenv.cc.targetPrefix}cc";
|
|
|
|
cxxForBuild = "${pkgsBuildBuild.targetPackages.stdenv.cc}/bin/${pkgsBuildBuild.targetPackages.stdenv.cc.targetPrefix}c++";
|
|
|
|
ccForHost = "${pkgsBuildHost.targetPackages.stdenv.cc}/bin/${pkgsBuildHost.targetPackages.stdenv.cc.targetPrefix}cc";
|
|
|
|
cxxForHost = "${pkgsBuildHost.targetPackages.stdenv.cc}/bin/${pkgsBuildHost.targetPackages.stdenv.cc.targetPrefix}c++";
|
|
|
|
ccForTarget = "${pkgsBuildTarget.targetPackages.stdenv.cc}/bin/${pkgsBuildTarget.targetPackages.stdenv.cc.targetPrefix}cc";
|
|
|
|
cxxForTarget = "${pkgsBuildTarget.targetPackages.stdenv.cc}/bin/${pkgsBuildTarget.targetPackages.stdenv.cc.targetPrefix}c++";
|
|
|
|
in [
|
|
|
|
"--release-channel=stable"
|
|
|
|
"--set=build.rustc=${rustPlatform.rust.rustc}/bin/rustc"
|
|
|
|
"--set=build.cargo=${rustPlatform.rust.cargo}/bin/cargo"
|
|
|
|
"--enable-rpath"
|
|
|
|
"--enable-vendor"
|
2018-12-21 00:28:09 +00:00
|
|
|
"--build=${rust.toRustTarget stdenv.buildPlatform}"
|
|
|
|
"--host=${rust.toRustTarget stdenv.hostPlatform}"
|
|
|
|
"--target=${rust.toRustTarget stdenv.targetPlatform}"
|
2018-11-21 01:47:45 +00:00
|
|
|
|
|
|
|
"${setBuild}.cc=${ccForBuild}"
|
|
|
|
"${setHost}.cc=${ccForHost}"
|
|
|
|
"${setTarget}.cc=${ccForTarget}"
|
|
|
|
|
|
|
|
"${setBuild}.linker=${ccForBuild}"
|
|
|
|
"${setHost}.linker=${ccForHost}"
|
|
|
|
"${setTarget}.linker=${ccForTarget}"
|
|
|
|
|
|
|
|
"${setBuild}.cxx=${cxxForBuild}"
|
|
|
|
"${setHost}.cxx=${cxxForHost}"
|
|
|
|
"${setTarget}.cxx=${cxxForTarget}"
|
2019-11-13 13:17:33 +00:00
|
|
|
] ++ optionals (!withBundledLLVM) [
|
2018-11-21 01:47:45 +00:00
|
|
|
"--enable-llvm-link-shared"
|
|
|
|
"${setBuild}.llvm-config=${llvmSharedForBuild}/bin/llvm-config"
|
|
|
|
"${setHost}.llvm-config=${llvmSharedForHost}/bin/llvm-config"
|
|
|
|
"${setTarget}.llvm-config=${llvmSharedForTarget}/bin/llvm-config"
|
2020-07-21 21:11:36 +01:00
|
|
|
] ++ optionals (stdenv.isLinux && !stdenv.targetPlatform.isRedox) [
|
2019-07-31 16:55:33 +01:00
|
|
|
"--enable-profiler" # build libprofiler_builtins
|
2018-11-21 01:47:45 +00:00
|
|
|
];
|
2015-10-03 15:23:00 +01:00
|
|
|
|
2018-07-09 11:35:01 +01:00
|
|
|
# The bootstrap.py will generated a Makefile that then executes the build.
|
2018-04-12 21:16:09 +01:00
|
|
|
# The BOOTSTRAP_ARGS used by this Makefile must include all flags to pass
|
|
|
|
# to the bootstrap builder.
|
|
|
|
postConfigure = ''
|
2018-11-21 01:47:45 +00:00
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace 'BOOTSTRAP_ARGS :=' 'BOOTSTRAP_ARGS := --jobs $(NIX_BUILD_CORES)'
|
2018-04-12 21:16:09 +01:00
|
|
|
'';
|
|
|
|
|
2017-10-06 23:12:22 +01:00
|
|
|
# the rust build system complains that nix alters the checksums
|
|
|
|
dontFixLibtool = true;
|
|
|
|
|
2020-02-22 23:34:05 +00:00
|
|
|
inherit patches;
|
|
|
|
|
2015-10-03 15:23:00 +01:00
|
|
|
postPatch = ''
|
2018-02-20 09:59:26 +00:00
|
|
|
patchShebangs src/etc
|
|
|
|
|
2018-10-30 13:56:23 +00:00
|
|
|
${optionalString (!withBundledLLVM) ''rm -rf src/llvm''}
|
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
|
|
|
|
|
|
|
# Useful debugging parameter
|
2016-08-24 10:56:02 +01:00
|
|
|
# export VERBOSE=1
|
2015-10-03 15:23:00 +01:00
|
|
|
'';
|
|
|
|
|
2019-02-27 03:24:42 +00:00
|
|
|
# rustc unfortunately needs cmake to compile llvm-rt but doesn't
|
2016-08-24 10:56:02 +01:00
|
|
|
# use it for the normal build. This disables cmake in Nix.
|
|
|
|
dontUseCmakeConfigure = true;
|
2016-07-19 09:25:35 +01:00
|
|
|
|
2018-11-21 01:47:45 +00:00
|
|
|
nativeBuildInputs = [
|
2020-03-29 04:49:56 +01:00
|
|
|
file python3 rustPlatform.rust.rustc cmake
|
2019-09-30 10:00:33 +01:00
|
|
|
which libffi removeReferencesTo pkgconfig
|
|
|
|
];
|
2016-07-19 09:25:35 +01:00
|
|
|
|
2019-09-26 13:51:12 +01:00
|
|
|
buildInputs = [ openssl ]
|
|
|
|
++ optional stdenv.isDarwin Security
|
2018-10-30 13:56:23 +00:00
|
|
|
++ optional (!withBundledLLVM) 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
|
|
|
|
2020-01-18 09:57:13 +00:00
|
|
|
postInstall = stdenv.lib.optionalString enableRustcDev ''
|
2020-01-11 12:00:00 +00:00
|
|
|
# install rustc-dev components. Necessary to build rls, clippy...
|
|
|
|
python x.py dist rustc-dev
|
|
|
|
tar xf build/dist/rustc-dev*tar.gz
|
|
|
|
cp -r rustc-dev*/rustc-dev*/lib/* $out/lib/
|
|
|
|
|
2020-01-18 09:57:13 +00:00
|
|
|
'' + ''
|
2020-01-11 12:00:00 +00:00
|
|
|
# remove references to llvm-config in lib/rustlib/x86_64-unknown-linux-gnu/codegen-backends/librustc_codegen_llvm-llvm.so
|
|
|
|
# and thus a transitive dependency on ncurses
|
2018-10-30 13:56:23 +00:00
|
|
|
find $out/lib -name "*.so" -type f -exec remove-references-to -t ${llvmShared} '{}' '+'
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
|
2019-07-07 13:44:04 +01:00
|
|
|
setupHooks = ./setup-hook.sh;
|
|
|
|
|
2019-01-24 17:30:35 +00:00
|
|
|
requiredSystemFeatures = [ "big-parallel" ];
|
|
|
|
|
2020-02-18 01:58:48 +00:00
|
|
|
passthru.llvm = llvmShared;
|
|
|
|
|
2017-01-12 13:25:20 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-02-18 01:58:48 +00:00
|
|
|
homepage = "https://www.rust-lang.org/";
|
2017-01-12 13:25:20 +00:00
|
|
|
description = "A safe, concurrent, practical language";
|
2019-10-08 18:52:47 +01:00
|
|
|
maintainers = with maintainers; [ madjar cstrahan globin havvy ];
|
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-01-12 13:25:20 +00:00
|
|
|
};
|
2015-10-03 15:23:00 +01:00
|
|
|
}
|