Skip to content

Commit 746e5c5

Browse files
committed
Remove some debug println's
1 parent f096ad1 commit 746e5c5

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/archive.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ impl<'a> ArchiveBuilder<'a> for ArArchiveBuilder<'a> {
3636
dst: output.to_path_buf(),
3737
src: input.map(|p| p.to_path_buf()),
3838
lib_search_paths: archive_search_paths(sess),
39-
is_like_osx: sess.target.target.options.is_like_osx,
39+
is_like_osx: sess.target.target.options.is_like_osx, // FIXME should probably check for linux
4040
};
4141

4242
let (src_archives, entries) = if let Some(src) = &config.src {
@@ -122,9 +122,6 @@ impl<'a> ArchiveBuilder<'a> for ArArchiveBuilder<'a> {
122122
}
123123

124124
fn build(mut self) {
125-
println!("{:?}", self.src_archives.len());
126-
println!("{:?}", self.entries);
127-
128125
enum BuilderKind {
129126
Bsd(ar::Builder<File>),
130127
Gnu(ar::GnuBuilder<File>),

0 commit comments

Comments
 (0)