File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ failure = "0.1"
20
20
reqwest = " 0.9"
21
21
xz2 = " 0.1"
22
22
tar = " 0.4"
23
- glob = " 0.3"
24
23
25
24
[dev-dependencies ]
26
25
libc = " 0.2"
Original file line number Diff line number Diff line change 21
21
// SOFTWARE.
22
22
23
23
extern crate failure;
24
- extern crate glob;
25
24
extern crate pkg_config;
26
25
extern crate reqwest;
27
26
extern crate tar;
28
27
extern crate xz2;
29
28
30
29
use failure:: * ;
31
- use glob:: glob;
32
30
use std:: { env, fs, io, path:: * } ;
33
31
34
32
const S3_ADDR : & ' static str = "https://s3-ap-northeast-1.amazonaws.com/rust-intel-mkl" ;
@@ -90,8 +88,7 @@ fn main() -> Fallible<()> {
90
88
91
89
println ! ( "cargo:rustc-link-search={}" , out_dir. display( ) ) ;
92
90
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 " ) ;
94
92
println ! ( "cargo:rustc-link-lib=mkl_core" ) ;
95
- println ! ( "cargo:rustc-link-lib=iomp5" ) ;
96
93
Ok ( ( ) )
97
94
}
You can’t perform that action at this time.
0 commit comments