Skip to content

Commit

Permalink
Enable raw-dylib for binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaoliello committed Jul 22, 2022
1 parent 33b297a commit 0fed1a5
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/archive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,12 +204,16 @@ impl<'a> ArchiveBuilder<'a> for ArArchiveBuilder<'a> {
any_members
}

fn inject_dll_import_lib(
&mut self,
fn sess(&self) -> &Session {
self.sess
}

fn create_dll_import_lib(
_sess: &Session,
_lib_name: &str,
_dll_imports: &[rustc_session::cstore::DllImport],
_tmpdir: &rustc_data_structures::temp_dir::MaybeTempDir,
) {
bug!("injecting dll imports is not supported");
_tmpdir: &Path,
) -> PathBuf {
bug!("creating dll imports is not supported");
}
}

0 comments on commit 0fed1a5

Please sign in to comment.