Skip to content

Commit fce639c

Browse files
committed
Solve issues in rust port.
1 parent a1eb88f commit fce639c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/ports/rs_port/build.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ fn platform_install_paths() -> Result<InstallPath, Box<dyn std::error::Error>> {
6868
paths: vec![PathBuf::from(local_app_data)
6969
.join("MetaCall")
7070
.join("metacall")],
71-
names: vec!["metacall.dll"],
71+
names: vec!["metacall.lib"],
7272
})
7373
} else if cfg!(target_os = "macos") {
7474
Ok(InstallPath {
@@ -100,8 +100,8 @@ fn get_search_config() -> Result<InstallPath, Box<dyn std::error::Error>> {
100100
"libmetacalld.so",
101101
"libmetacall.dylib",
102102
"libmetacalld.dylib",
103-
"metacall.dll",
104-
"metacalld.dll",
103+
"metacall.lib",
104+
"metacalld.lib",
105105
],
106106
});
107107
}

0 commit comments

Comments
 (0)