Skip to content

Commit 4de9568

Browse files
authored
Merge pull request #63 from aleon1138/bugfix/fix_static_compilation_linux
Added path for libiomp5 static libraries under /opt/intel
2 parents 30bb6e5 + 9b79818 commit 4de9568

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

intel-mkl-tool/src/entry.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,11 @@ impl Entry {
108108
}
109109
}
110110

111-
// /opt/intel/mkl
112-
let opt_mkl = PathBuf::from("/opt/intel/mkl");
111+
// /opt/intel
112+
let opt_mkl = PathBuf::from("/opt/intel");
113113
if opt_mkl.exists() {
114114
targets.seek(opt_mkl.join("lib/intel64"));
115+
targets.seek(opt_mkl.join("mkl/lib/intel64"));
115116
}
116117

117118
// Default setting for Windows installer

0 commit comments

Comments
 (0)