Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 72c69a8

Browse files
committed
Merge branch 'sync_from_rust'
2 parents d3a2366 + a6260ec commit 72c69a8

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

src/archive.rs

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -221,12 +221,16 @@ impl<'a> ArchiveBuilder<'a> for ArArchiveBuilder<'a> {
221221
any_members
222222
}
223223

224-
fn inject_dll_import_lib(
225-
&mut self,
224+
fn sess(&self) -> &Session {
225+
self.sess
226+
}
227+
228+
fn create_dll_import_lib(
229+
_sess: &Session,
226230
_lib_name: &str,
227231
_dll_imports: &[rustc_session::cstore::DllImport],
228-
_tmpdir: &rustc_data_structures::temp_dir::MaybeTempDir,
229-
) {
230-
bug!("injecting dll imports is not supported");
232+
_tmpdir: &Path,
233+
) -> PathBuf {
234+
bug!("creating dll imports is not supported");
231235
}
232236
}

0 commit comments

Comments
 (0)