From 6807eab800c43e04c232b3232701731cfdaab2e5 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 16 Apr 2014 17:29:08 -0700 Subject: [PATCH] rustc: Fix omission of bytecode in staticlibs The name of the file changed awhile back and this spot wasn't updated to continue ignoring the bytecode from rlibs when copying into staticlibs. --- src/librustc/back/archive.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc/back/archive.rs b/src/librustc/back/archive.rs index 9b795e6957cf3..27211c4779f8e 100644 --- a/src/librustc/back/archive.rs +++ b/src/librustc/back/archive.rs @@ -104,7 +104,7 @@ impl<'a> Archive<'a> { pub fn add_rlib(&mut self, rlib: &Path, name: &str, lto: bool) -> io::IoResult<()> { let object = format!("{}.o", name); - let bytecode = format!("{}.bc", name); + let bytecode = format!("{}.bc.deflate", name); let mut ignore = vec!(METADATA_FILENAME, bytecode.as_slice()); if lto { ignore.push(object.as_slice());