Skip to content

Commit 86004da

Browse files
committed
Use sequential instead of iomp
1 parent e23353e commit 86004da

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ failure = "0.1"
2020
reqwest = "0.9"
2121
xz2 = "0.1"
2222
tar = "0.4"
23-
glob = "0.3"
2423

2524
[dev-dependencies]
2625
libc = "0.2"

build.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,12 @@
2121
// SOFTWARE.
2222

2323
extern crate failure;
24-
extern crate glob;
2524
extern crate pkg_config;
2625
extern crate reqwest;
2726
extern crate tar;
2827
extern crate xz2;
2928

3029
use failure::*;
31-
use glob::glob;
3230
use std::{env, fs, io, path::*};
3331

3432
const S3_ADDR: &'static str = "https://s3-ap-northeast-1.amazonaws.com/rust-intel-mkl";
@@ -90,8 +88,7 @@ fn main() -> Fallible<()> {
9088

9189
println!("cargo:rustc-link-search={}", out_dir.display());
9290
println!("cargo:rustc-link-lib=mkl_intel_lp64");
93-
println!("cargo:rustc-link-lib=mkl_intel_thread");
91+
println!("cargo:rustc-link-lib=mkl_sequential");
9492
println!("cargo:rustc-link-lib=mkl_core");
95-
println!("cargo:rustc-link-lib=iomp5");
9693
Ok(())
9794
}

0 commit comments

Comments
 (0)