From 2de10f821002d972dc0291a5cd794a30f917b617 Mon Sep 17 00:00:00 2001 From: Mark Rousskov Date: Tue, 6 Oct 2020 19:03:57 -0400 Subject: [PATCH 1/2] Disable ThinLTO for x86_64-unknown-linux-gnu Temporarily addresses #76980. --- src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile b/src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile index 1f0978c0082c5..7681eaef60f60 100644 --- a/src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile +++ b/src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile @@ -95,7 +95,7 @@ ENV RUST_CONFIGURE_ARGS \ --set target.x86_64-unknown-linux-gnu.linker=clang \ --set target.x86_64-unknown-linux-gnu.ar=/rustroot/bin/llvm-ar \ --set target.x86_64-unknown-linux-gnu.ranlib=/rustroot/bin/llvm-ranlib \ - --set llvm.thin-lto=true \ + --set llvm.thin-lto=false \ --set rust.jemalloc ENV SCRIPT python2.7 ../x.py dist --host $HOSTS --target $HOSTS ENV CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=clang From b4c560a7aaf0977b3f5376fe102d8672388d9b91 Mon Sep 17 00:00:00 2001 From: Pietro Albini Date: Wed, 7 Oct 2020 09:44:11 +0200 Subject: [PATCH 2/2] relnotes: remove compat note about linux hanging --- RELEASES.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index be11f64412358..10c4994f2da3f 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -84,8 +84,6 @@ Compatibility Notes `Delimiter::None`. - [Moved support for the CloudABI target to tier 3.][75568] - [`linux-gnu` targets now require minimum kernel 2.6.32 and glibc 2.11.][74163] -- [We have reports of some proc macros encountering as yet undiagnosed problems in linked C++ - code, but the root cause is as yet undiagnosed.][76980] Internal Only --------