u-reproducible-build
authorDebian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
Sun, 5 Aug 2018 09:18:10 +0000 (10:18 +0100)
committerXimin Luo <infinity0@debian.org>
Sun, 5 Aug 2018 09:18:10 +0000 (10:18 +0100)
Gbp-Pq: Name u-reproducible-build.patch

src/librustc_llvm/build.rs

index 1619637b827dfe99a1bad79271fa3a6f6c318fa2..23629b928eae3ad97fcd140232a1a3ecb59e9805 100644 (file)
@@ -133,6 +133,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;