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.
This commit is contained in:
parent
12391df5b7
commit
6807eab800
1 changed files with 1 additions and 1 deletions
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue