Revert "rustc: 1.31.0 -> 1.32.0" (#55379)
This reverts commit 56dba36eb5
.
This commit is contained in:
parent
724d7d0d5d
commit
882131e7db
|
@ -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.31.0";
|
version = "1.30.1";
|
||||||
|
|
||||||
# fetch hashes by running `print-hashes.sh 1.31.0`
|
# fetch hashes by running `print-hashes.sh 1.30.0`
|
||||||
hashes = {
|
hashes = {
|
||||||
i686-unknown-linux-gnu = "46333e8feec55bc1f99fd03028370f6163ef1e33e483da0389a9c424ec9634ed";
|
i686-unknown-linux-gnu = "c61655977fb16decf0ceb76043b9ae2190927aa9cc24f013d444384dcab99bbf";
|
||||||
x86_64-unknown-linux-gnu = "c8a2016109ffdc12a488660edc5f30c1643729efc15abe311ebb187437e506bf";
|
x86_64-unknown-linux-gnu = "a01a493ed8946fc1c15f63e74fc53299b26ebf705938b4d04a388a746dfdbf9e";
|
||||||
armv7-unknown-linux-gnueabihf = "60bb75649b457ad971e94dd14c666b59deeee2176b14ae0f98e2fa435c172c1e";
|
armv7-unknown-linux-gnueabihf = "9b3b6df02a2a92757e4993a7357fdd02e07b60101a748b4618e6ae1b90bc1b6b";
|
||||||
aarch64-unknown-linux-gnu = "4e68c70aba58004d9e86c2b4463e88466affee51242349a038b456cf6f4be5c9";
|
aarch64-unknown-linux-gnu = "6d87d81561285abd6c1987e07b60b2d723936f037c4b46eedcc12e8566fd3874";
|
||||||
i686-apple-darwin = "ec8d08eeea97d78d37430e9b32511e87854aad502f4e3e77e806788246b36e6f";
|
i686-apple-darwin = "a7c14b18e96406d9f43d69d0f984b2fa6f92cc7b7b37e2bb7b70b6f44b02b083";
|
||||||
x86_64-apple-darwin = "5d4035e3cecb7df13e728bcff125b52b43b126e91f8311c66b143f353362606f";
|
x86_64-apple-darwin = "3ba1704a7defe3d9a6f0c1f68792c084da83bcba85e936d597bac0c019914b94";
|
||||||
};
|
};
|
||||||
|
|
||||||
platform =
|
platform =
|
||||||
|
|
|
@ -10,8 +10,8 @@ rustPlatform.buildRustPackage rec {
|
||||||
inherit version src patches;
|
inherit version src patches;
|
||||||
|
|
||||||
# the rust source tarball already has all the dependencies vendored, no need to fetch them again
|
# the rust source tarball already has all the dependencies vendored, no need to fetch them again
|
||||||
cargoVendorDir = "vendor";
|
cargoVendorDir = "src/vendor";
|
||||||
preBuild = "pushd src/tools/cargo";
|
preBuild = "cd src; pushd tools/cargo";
|
||||||
postBuild = "popd";
|
postBuild = "popd";
|
||||||
|
|
||||||
passthru.rustc = rustc;
|
passthru.rustc = rustc;
|
||||||
|
@ -23,10 +23,10 @@ rustPlatform.buildRustPackage rec {
|
||||||
buildInputs = [ cacert file curl python openssl cmake zlib makeWrapper libgit2 ]
|
buildInputs = [ cacert file curl python openssl cmake zlib makeWrapper libgit2 ]
|
||||||
++ stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation Security libiconv ];
|
++ stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation Security libiconv ];
|
||||||
|
|
||||||
LIBGIT2_SYS_USE_PKG_CONFIG = 1;
|
LIBGIT2_SYS_USE_PKG_CONFIG=1;
|
||||||
|
|
||||||
# fixes: the cargo feature `edition` requires a nightly version of Cargo, but this is the `stable` channel
|
# fixes: the cargo feature `edition` requires a nightly version of Cargo, but this is the `stable` channel
|
||||||
RUSTC_BOOTSTRAP = 1;
|
RUSTC_BOOTSTRAP=1;
|
||||||
|
|
||||||
# FIXME: Use impure version of CoreFoundation because of missing symbols.
|
# FIXME: Use impure version of CoreFoundation because of missing symbols.
|
||||||
# CFURLSetResourcePropertyForKey is defined in the headers but there's no
|
# CFURLSetResourcePropertyForKey is defined in the headers but there's no
|
||||||
|
|
|
@ -7,11 +7,11 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {}));
|
rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {}));
|
||||||
version = "1.32.0";
|
version = "1.31.0";
|
||||||
cargoVersion = "1.32.0";
|
cargoVersion = "1.31.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 = "0ji2l9xv53y27xy72qagggvq47gayr5lcv2jwvmfirx029vlqnac";
|
sha256 = "01pg2619bwjnhjbphryrbkwaz0lw8cfffm4xlz35znzipb04vmcs";
|
||||||
};
|
};
|
||||||
in rec {
|
in rec {
|
||||||
rustc = callPackage ./rustc.nix {
|
rustc = callPackage ./rustc.nix {
|
||||||
|
@ -22,6 +22,11 @@ in rec {
|
||||||
|
|
||||||
# Re-evaluate if this we need to disable this one
|
# Re-evaluate if this we need to disable this one
|
||||||
#./patches/stdsimd-disable-doctest.patch
|
#./patches/stdsimd-disable-doctest.patch
|
||||||
|
|
||||||
|
# Fails on hydra - not locally; the exact reason is unknown.
|
||||||
|
# Comments in the test suggest that some non-reproducible environment
|
||||||
|
# variables such $RANDOM can make it fail.
|
||||||
|
./patches/disable-test-inherit-env.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
withBundledLLVM = false;
|
withBundledLLVM = false;
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
--- rustc-1.26.2-src.org/src/libstd/process.rs 2018-06-01 21:40:11.000000000 +0100
|
||||||
|
+++ rustc-1.26.2-src/src/libstd/process.rs 2018-06-08 07:50:23.023828658 +0100
|
||||||
|
@@ -1745,6 +1745,7 @@
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
+ #[ignore]
|
||||||
|
fn test_inherit_env() {
|
||||||
|
use env;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, targetPackages, removeReferencesTo
|
{ stdenv, targetPackages, removeReferencesTo
|
||||||
, fetchurl, fetchgit, fetchzip, file, python2, tzdata, ps
|
, fetchurl, fetchgit, fetchzip, file, python2, tzdata, ps
|
||||||
, llvm, ncurses, darwin, rustPlatform, git, cmake, curl
|
, llvm, jemalloc, ncurses, darwin, rustPlatform, git, cmake, curl
|
||||||
, which, libffi, gdb
|
, which, libffi, gdb
|
||||||
, version
|
, version
|
||||||
, withBundledLLVM ? false
|
, withBundledLLVM ? false
|
||||||
|
@ -20,6 +20,8 @@ let
|
||||||
|
|
||||||
llvmShared = llvm.override { enableSharedLibraries = true; };
|
llvmShared = llvm.override { enableSharedLibraries = true; };
|
||||||
|
|
||||||
|
prefixedJemalloc = jemalloc.override { stripPrefix = false; };
|
||||||
|
|
||||||
target = builtins.replaceStrings [" "] [","] (builtins.toString targets);
|
target = builtins.replaceStrings [" "] [","] (builtins.toString targets);
|
||||||
in
|
in
|
||||||
|
|
||||||
|
@ -60,6 +62,7 @@ stdenv.mkDerivation {
|
||||||
configureFlags = configureFlags
|
configureFlags = configureFlags
|
||||||
++ [ "--enable-local-rust" "--local-rust-root=${rustPlatform.rust.rustc}" "--enable-rpath"
|
++ [ "--enable-local-rust" "--local-rust-root=${rustPlatform.rust.rustc}" "--enable-rpath"
|
||||||
"--enable-vendor"
|
"--enable-vendor"
|
||||||
|
"--jemalloc-root=${prefixedJemalloc}/lib"
|
||||||
"--default-linker=${targetPackages.stdenv.cc}/bin/cc" ]
|
"--default-linker=${targetPackages.stdenv.cc}/bin/cc" ]
|
||||||
++ optional (!withBundledLLVM) [ "--enable-llvm-link-shared" "--llvm-root=${llvmShared}" ]
|
++ optional (!withBundledLLVM) [ "--enable-llvm-link-shared" "--llvm-root=${llvmShared}" ]
|
||||||
++ optional (targets != []) "--target=${target}";
|
++ optional (targets != []) "--target=${target}";
|
||||||
|
@ -82,6 +85,7 @@ stdenv.mkDerivation {
|
||||||
patchShebangs src/etc
|
patchShebangs src/etc
|
||||||
|
|
||||||
${optionalString (!withBundledLLVM) ''rm -rf src/llvm''}
|
${optionalString (!withBundledLLVM) ''rm -rf src/llvm''}
|
||||||
|
rm -rf src/jemalloc
|
||||||
|
|
||||||
# Fix the configure script to not require curl as we won't use it
|
# Fix the configure script to not require curl as we won't use it
|
||||||
sed -i configure \
|
sed -i configure \
|
||||||
|
@ -93,7 +97,7 @@ stdenv.mkDerivation {
|
||||||
# https://github.com/rust-lang/rust/issues/39522
|
# https://github.com/rust-lang/rust/issues/39522
|
||||||
echo removing gdb-version-sensitive tests...
|
echo removing gdb-version-sensitive tests...
|
||||||
find src/test/debuginfo -type f -execdir grep -q ignore-gdb-version '{}' \; -print -delete
|
find src/test/debuginfo -type f -execdir grep -q ignore-gdb-version '{}' \; -print -delete
|
||||||
rm src/test/debuginfo/{borrowed-c-style-enum.rs,c-style-enum-in-composite.rs,generic-enum-with-different-disr-sizes.rs}
|
rm src/test/debuginfo/{borrowed-c-style-enum.rs,c-style-enum-in-composite.rs,gdb-pretty-struct-and-enums-pre-gdb-7-7.rs,generic-enum-with-different-disr-sizes.rs}
|
||||||
|
|
||||||
# Useful debugging parameter
|
# Useful debugging parameter
|
||||||
# export VERBOSE=1
|
# export VERBOSE=1
|
||||||
|
|
Loading…
Reference in New Issue