Skip to content

Commit

Permalink
Merge pull request #63 from aleon1138/bugfix/fix_static_compilation_l…
Browse files Browse the repository at this point in the history
…inux

Added path for libiomp5 static libraries under /opt/intel
  • Loading branch information
termoshtt authored Jul 30, 2022
2 parents 30bb6e5 + 9b79818 commit 4de9568
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions intel-mkl-tool/src/entry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,11 @@ impl Entry {
}
}

// /opt/intel/mkl
let opt_mkl = PathBuf::from("/opt/intel/mkl");
// /opt/intel
let opt_mkl = PathBuf::from("/opt/intel");
if opt_mkl.exists() {
targets.seek(opt_mkl.join("lib/intel64"));
targets.seek(opt_mkl.join("mkl/lib/intel64"));
}

// Default setting for Windows installer
Expand Down

0 comments on commit 4de9568

Please sign in to comment.