Skip to content

Commit a611b1e

Browse files
committed
Add "lib" prefix in iomp5md
1 parent 809db28 commit a611b1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

intel-mkl-tool/src/entry.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ pub fn openmp_runtime_file_name(link: LinkType) -> String {
8585
if cfg!(target_os = "windows") {
8686
match link {
8787
LinkType::Static => {
88-
format!("{}.lib", name)
88+
format!("lib{}.lib", name)
8989
}
9090
LinkType::Dynamic => {
91-
format!("{}.dll", name)
91+
format!("lib{}.dll", name)
9292
}
9393
}
9494
} else {

0 commit comments

Comments
 (0)