We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33b297a commit 0fed1a5Copy full SHA for 0fed1a5
src/archive.rs
@@ -204,12 +204,16 @@ impl<'a> ArchiveBuilder<'a> for ArArchiveBuilder<'a> {
204
any_members
205
}
206
207
- fn inject_dll_import_lib(
208
- &mut self,
+ fn sess(&self) -> &Session {
+ self.sess
209
+ }
210
+
211
+ fn create_dll_import_lib(
212
+ _sess: &Session,
213
_lib_name: &str,
214
_dll_imports: &[rustc_session::cstore::DllImport],
- _tmpdir: &rustc_data_structures::temp_dir::MaybeTempDir,
- ) {
- bug!("injecting dll imports is not supported");
215
+ _tmpdir: &Path,
216
+ ) -> PathBuf {
217
+ bug!("creating dll imports is not supported");
218
219
0 commit comments