Merge pull request #66686 from edolstra/rustc-1.37.0

rustc: 1.36.0 -> 1.37.0
This commit is contained in:
Eelco Dolstra 2019-08-17 16:22:42 +02:00 committed by GitHub
commit 1f3c2bcefe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 18 deletions

View File

@ -60,6 +60,8 @@ rec {
# are very hard to track down. For details, see # are very hard to track down. For details, see
# https://github.com/rust-lang/rust/issues/34722#issuecomment-232164943 # https://github.com/rust-lang/rust/issues/34722#issuecomment-232164943
''; '';
setupHooks = ./setup-hook.sh;
}; };
cargo = stdenv.mkDerivation rec { cargo = stdenv.mkDerivation rec {

View File

@ -3,16 +3,16 @@
let let
# Note: the version MUST be one version prior to the version we're # Note: the version MUST be one version prior to the version we're
# building # building
version = "1.35.0"; version = "1.36.0";
# fetch hashes by running `print-hashes.sh 1.34.2` # fetch hashes by running `print-hashes.sh 1.36.0`
hashes = { hashes = {
i686-unknown-linux-gnu = "05337776b3645e4b8c8c7ced0bcd1615cf9ad1b9c8b3d0f333620e5401e31aee"; i686-unknown-linux-gnu = "9f95c3e96622a792858c8a1c9274fa63e6992370493b27c1ac7299a3bec5156d";
x86_64-unknown-linux-gnu = "cf600e2273644d8629ed57559c70ca8db4023fd0156346facca9ab3ad3e8f86c"; x86_64-unknown-linux-gnu = "15e592ec52f14a0586dcebc87a957e472c4544e07359314f6354e2b8bd284c55";
armv7-unknown-linux-gnueabihf = "8f0f32d8ddc6fb7bcb8f50ec5e694078799d93facbf135eec5bd9a8c94d0c11e"; armv7-unknown-linux-gnueabihf = "798181a728017068f9eddfa665771805d97846cd87bddcd67e0fe27c8d082ceb";
aarch64-unknown-linux-gnu = "31e6da56e67838fd2874211ae896a433badf67c13a7b68481f1d5f7dedcc5952"; aarch64-unknown-linux-gnu = "db78c24d93756f9fe232f081dbc4a46d38f8eec98353a9e78b9b164f9628042d";
i686-apple-darwin = "6a45ae8db094c5f6c57c5594a00f1a92b08c444a7347a657b4033186d4f08b19"; i686-apple-darwin = "3dbc34fdea8bc030badf9c8b2572c09fd3f5369b59ac099fc521064b390b9e60";
x86_64-apple-darwin = "ac14b1c7dc330dcb53d8641d74ebf9b32aa8b03b9d650bcb9258030d8b10dbd6"; x86_64-apple-darwin = "91f151ec7e24f5b0645948d439fc25172ec4012f0584dd16c3fb1acb709aa325";
}; };
platform = platform =
@ -35,7 +35,7 @@ let
sha256 = hashes."${platform}"; sha256 = hashes."${platform}";
}; };
in callPackage ./binaryBuild.nix in callPackage ./binary.nix
{ inherit version src platform; { inherit version src platform;
versionType = "bootstrap"; versionType = "bootstrap";
} }

View File

@ -1,6 +1,6 @@
{ stdenv, removeReferencesTo, pkgsBuildBuild, pkgsBuildHost, pkgsBuildTarget { stdenv, removeReferencesTo, pkgsBuildBuild, pkgsBuildHost, pkgsBuildTarget
, fetchurl, file, python2, tzdata, ps , fetchurl, file, python2, tzdata, ps
, llvm_7, darwin, git, cmake, rustPlatform , llvmPackages_7, darwin, git, cmake, rustPlatform
, which, libffi, gdb , which, libffi, gdb
, withBundledLLVM ? false , withBundledLLVM ? false
}: }:
@ -9,21 +9,31 @@ let
inherit (stdenv.lib) optional optionalString; inherit (stdenv.lib) optional optionalString;
inherit (darwin.apple_sdk.frameworks) Security; inherit (darwin.apple_sdk.frameworks) Security;
llvmSharedForBuild = pkgsBuildBuild.llvm_7.override { enableSharedLibraries = true; }; llvmPackages = llvmPackages_7;
llvmSharedForHost = pkgsBuildHost.llvm_7.override { enableSharedLibraries = true; };
llvmSharedForTarget = pkgsBuildTarget.llvm_7.override { enableSharedLibraries = true; }; llvmSharedForBuild = pkgsBuildBuild.llvmPackages.llvm.override { enableSharedLibraries = true; };
llvmSharedForHost = pkgsBuildHost.llvmPackages.llvm.override { enableSharedLibraries = true; };
llvmSharedForTarget = pkgsBuildTarget.llvmPackages.llvm.override { enableSharedLibraries = true; };
# For use at runtime # For use at runtime
llvmShared = llvm_7.override { enableSharedLibraries = true; }; llvmShared = llvmPackages.llvm.override { enableSharedLibraries = true; };
in stdenv.mkDerivation rec { in
stdenv.mkDerivation rec {
pname = "rustc"; pname = "rustc";
version = "1.36.0"; version = "1.37.0";
src = fetchurl { src = fetchurl {
url = "https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz"; url = "https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz";
sha256 = "06xv2p6zq03lidr0yaf029ii8wnjjqa894nkmrm6s0rx47by9i04"; sha256 = "1hrqprybhkhs6d9b5pjskfnc5z9v2l2gync7nb39qjb5s0h703hj";
}; };
# Provide the compiler-rt sources needed for profiling.
preConfigure = ''
mkdir src/llvm-project/compiler-rt
tar xf ${llvmPackages.compiler-rt.src} -C src/llvm-project/compiler-rt --strip-components=1
'';
__darwinAllowLocalNetworking = true; __darwinAllowLocalNetworking = true;
# rustc complains about modified source files otherwise # rustc complains about modified source files otherwise
@ -38,7 +48,6 @@ in stdenv.mkDerivation rec {
# See: https://github.com/NixOS/nixpkgs/pull/56540#issuecomment-471624656 # See: https://github.com/NixOS/nixpkgs/pull/56540#issuecomment-471624656
stripDebugList = [ "bin" ]; stripDebugList = [ "bin" ];
NIX_LDFLAGS = NIX_LDFLAGS =
# when linking stage1 libstd: cc: undefined reference to `__cxa_begin_catch' # when linking stage1 libstd: cc: undefined reference to `__cxa_begin_catch'
optional (stdenv.isLinux && !withBundledLLVM) "--push-state --as-needed -lstdc++ --pop-state" optional (stdenv.isLinux && !withBundledLLVM) "--push-state --as-needed -lstdc++ --pop-state"