about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorDaniel Paoliello <danpao@microsoft.com>2024-09-19 15:00:30 -0700
committerDaniel Paoliello <danpao@microsoft.com>2024-09-24 10:10:31 -0700
commit83052d16d41f6b24f315befa79a310cecdce2adb (patch)
treedd1c7a7b89163d0b92e3ecf7533532dbedab320a /src
parent9ed19dcef5b558584fd8ce3ebea207300c8f4b8e (diff)
downloadrust-83052d16d41f6b24f315befa79a310cecdce2adb.tar.gz
rust-83052d16d41f6b24f315befa79a310cecdce2adb.zip
Test fixing raw-dylib
Diffstat (limited to 'src')
-rw-r--r--src/archive.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/archive.rs b/src/archive.rs
index 0cee05f1cea..82e98370b37 100644
--- a/src/archive.rs
+++ b/src/archive.rs
@@ -2,6 +2,7 @@ use std::path::Path;
 
 use rustc_codegen_ssa::back::archive::{
     ArArchiveBuilder, ArchiveBuilder, ArchiveBuilderBuilder, DEFAULT_OBJECT_READER,
+    ImportLibraryItem,
 };
 use rustc_session::Session;
 
@@ -16,7 +17,7 @@ impl ArchiveBuilderBuilder for ArArchiveBuilderBuilder {
         &self,
         _sess: &Session,
         _lib_name: &str,
-        _import_name_and_ordinal_vector: Vec<(String, Option<u16>)>,
+        _items: Vec<ImportLibraryItem>,
         _output_path: &Path,
     ) {
         unimplemented!("creating dll imports is not yet supported");