From c29d7c1ba10d6debd11f9d8aad5d069a6491e60e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 19 Jun 2024 11:26:01 +0200 Subject: Adding debian version 1.76.0+dfsg1-1. Signed-off-by: Daniel Baumann --- debian/patches/u-reproducible-build.patch | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 debian/patches/u-reproducible-build.patch (limited to 'debian/patches/u-reproducible-build.patch') diff --git a/debian/patches/u-reproducible-build.patch b/debian/patches/u-reproducible-build.patch deleted file mode 100644 index f0823703e..000000000 --- a/debian/patches/u-reproducible-build.patch +++ /dev/null @@ -1,25 +0,0 @@ -From: Ximin Luo -Date: Thu, 14 Jul 2022 13:17:37 +0200 -Subject: Don't split dwarf debug for a fully-reproducible build - -Bug: https://github.com/rust-lang/rust/issues/34902 ---- - compiler/rustc_llvm/build.rs | 5 +++++ - 1 file changed, 5 insertions(+) - -Index: rust/compiler/rustc_llvm/build.rs -=================================================================== ---- rust.orig/compiler/rustc_llvm/build.rs -+++ rust/compiler/rustc_llvm/build.rs -@@ -180,6 +180,11 @@ fn main() { - let mut cfg = cc::Build::new(); - cfg.warnings(false); - for flag in cxxflags.split_whitespace() { -+ // Split-dwarf gives unreproducible DW_AT_GNU_dwo_id so don't do it -+ if flag == "-gsplit-dwarf" { -+ continue; -+ } -+ - // Ignore flags like `-m64` when we're doing a cross build - if is_crossed && flag.starts_with("-m") { - continue; -- cgit v1.2.3