-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathbuild.rs
486 lines (440 loc) · 18.7 KB
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
/* -- Lots of reuse from: https://github.com/alexcrichton/git2-rs/blob/master/libgit2-sys/build.rs */
extern crate rustc_serialize;
extern crate rustc_version;
use std::env;
use std::fs;
use rustc_serialize::json;
use std::fs::OpenOptions;
use std::io::{ErrorKind, Read};
use std::path::PathBuf;
use std::process::Command;
use std::convert::AsRef;
// Windows specific library file names
static WIN_CUDA_LIB_NAME: &'static str = "afcuda";
static WIN_OCL_LIB_NAME: &'static str = "afopencl";
static WIN_UNI_LIB_NAME: &'static str = "af";
// Linux & OSX specific library file names
static UNIX_CUDA_LIB_NAME: &'static str = "libafcuda";
static UNIX_OCL_LIB_NAME: &'static str = "libafopencl";
static UNIX_UNI_LIB_NAME: &'static str = "libaf";
#[allow(dead_code)]
#[derive(RustcDecodable)]
struct Config {
// Use the existing lib if it exists
use_lib: bool,
// Build related
build_type: String,
build_threads: String,
build_examples: String,
build_test: String,
build_graphics: String,
// backend upstream library options
glew_static: String,
freeimage_type: String,
cpu_fft_type: String,
cpu_blas_type: String,
cpu_lapack_type: String,
// backend upstream library install paths
freeimage_dir: String,
fftw_dir: String,
acml_dir: String,
mkl_dir: String,
lapacke_dir: String,
glew_dir: String,
glfw_dir: String,
boost_dir: String,
// GPU backends
cuda_sdk: String,
opencl_sdk: String,
}
macro_rules! t {
($e:expr) => (match $e {
Ok(n) => n,
Err(e) => fail(&format!("\n{} failed with {}\n", stringify!($e), e)),
})
}
fn fail(s: &str) -> ! {
panic!("\n{}\n\nbuild script failed, must exit now", s)
}
fn dir_exists(location: &str) -> bool {
match fs::metadata(location) {
Ok(f) => f.is_dir(),
Err(_) => false,
}
}
fn file_exists(location: &str) -> bool {
match fs::metadata(location) {
Ok(f) => f.is_file(),
Err(_) => false,
}
}
fn run(cmd: &mut Command, program: &str) {
println!("running: {:?}", cmd);
let status = match cmd.status() {
Ok(status) => status,
Err(ref e) if e.kind() == ErrorKind::NotFound => {
fail(&format!("failed to run cmd: {}\nis `{}` not installed?", e, program));
}
Err(e) => fail(&format!("failed to execute command: {}", e)),
};
if !status.success() {
fail(&format!("command did not execute successfully, got: {}", status));
}
}
fn read_file(file_name: &std::path::PathBuf) -> String {
let file_path = file_name.to_str().unwrap();
let options = OpenOptions::new()
.read(true)
.write(false)
.create(false)
.open(&file_path);
let mut file = match options {
Ok(file)=> file,
Err(..) => panic!("error reading file"),
};
let mut s = String::new();
match file.read_to_string(&mut s) {
Ok(_) => s,
Err(..) => panic!("Error reading file to a string"),
}
}
fn read_conf(conf_file: &std::path::PathBuf) -> Config {
let raw_conf = read_file(conf_file);
let decoded: Config = json::decode(&raw_conf).unwrap();
decoded
}
#[cfg(windows)]
fn run_cmake_command(conf: &Config, build_dir: &std::path::PathBuf) {
// create build directories
let _ = fs::create_dir(&build_dir);
// Run our cmake operations
let mut fft_options = vec![];
let mut blas_options = vec![];
let mut lapack_options = vec![];
let mut glew_lib = vec![];
let mut graphics_options= vec![];
let mut freeimage_options=vec![];
match conf.cpu_fft_type.as_ref() {
"FFTW" => {
fft_options.push(format!("-DFFTW_ROOT:STRING={0}", conf.fftw_dir));
fft_options.push(format!("-DFFTW_LIB:STRING={0}\\libfftw3-3.lib", conf.fftw_dir));
fft_options.push(format!("-DFFTWF_LIB:STRING={0}\\libfftw3f-3.lib", conf.fftw_dir));
fft_options.push(format!("-DFFTWL_LIB:STRING={0}\\libfftw3l-3.lib", conf.fftw_dir));
},
"ACML" => {
fft_options.push(format!("-DFFTW_ROOT:STRING={0}", conf.acml_dir));
fft_options.push(format!("-DFFTW_LIBRARIES:STRING={0}\\lib\\acml_fftw.lib",
conf.acml_dir));
},
"MKL" => {
fft_options.push(format!("-DFFTW_ROOT:STRING={0}", conf.mkl_dir));
fft_options.push(format!("-DFFTW_LIBRARIES:STRING={0}\\lib\\mkl_rt.lib",
conf.mkl_dir));
},
_ => fail("Invalid FFT upstream option set"),
};
match conf.cpu_blas_type.as_ref() {
"LAPACKE" => {
blas_options.push(format!("-DUSE_CPU_F77_BLAS:BOOL={}", "ON"));
blas_options.push(format!("-DCBLAS_INCLUDE_DIR:STRING={0}\\include",
conf.lapacke_dir));
blas_options.push(format!("-DCBLAS_cblas_LIBRARY:STRING={0}\\lib\\libblas.lib",
conf.lapacke_dir));
},
"MKL" => {
blas_options.push(format!("-DUSE_CPU_MKL:BOOL={}", "ON"));
blas_options.push(format!("-DCBLAS_INCLUDE_DIR:STRING={0}\\include", conf.mkl_dir));
blas_options.push(format!("-DCBLAS_cblas_LIBRARY:STRING={0}\\lib\\mkl_rt.lib",
conf.mkl_dir));
},
_ => fail("Invalid BLAS upstream option set"),
};
match conf.cpu_lapack_type.as_ref() {
"LAPACKE" => {
lapack_options.push(format!("-DLAPACKE_ROOT:STRING={0}",
conf.lapacke_dir));
lapack_options.push(format!("-DLAPACK_INCLUDE_DIR:STRING={0}\\include",
conf.lapacke_dir));
lapack_options.push(format!("-DLAPACKE_LIB:STRING={0}\\lib\\liblapacke.lib",
conf.lapacke_dir));
lapack_options.push(format!("-DLAPACK_LIB:STRING={0}\\lib\\liblapack.lib",
conf.lapacke_dir));
},
"MKL" => {
lapack_options.push(format!("-DUSE_CPU_MKL:BOOL={0}", "ON"));
lapack_options.push(format!("-DUSE_OPENCL_MKL:BOOL={0}", "ON"));
lapack_options.push(format!("-DLAPACKE_INCLUDES:STRING={0}\\include", conf.mkl_dir));
lapack_options.push(format!("-DLAPACKE_LIB:STRING={0}\\lib\\mkl_rt.lib", conf.mkl_dir));
lapack_options.push(format!("-DLAPACK_LIB:STRING={0}\\lib\\mkl_rt.lib", conf.mkl_dir));
},
_ => fail("Invalid LAPACK upstream option set"),
};
match conf.glew_static.as_ref() {
"OFF" => {
glew_lib.push(format!("-DGLEW_LIBRARY:STRING={0}\\lib\\Release\\x64\\glew32.lib",
conf.glew_dir));
glew_lib.push(format!("-DGLEWmxd_LIBRARY:STRING={0}\\lib\\Release MX\\x64\\glew32mx.lib",
conf.glew_dir));
},
"ON" => {
glew_lib.push(format!("-DGLEW_LIBRARY:STRING={0}\\lib\\Release\\x64\\glew32s.lib",
conf.glew_dir));
glew_lib.push(format!("-DGLEWmxs_LIBRARY:STRING={0}\\lib\\Release MX\\x64\\glew32mxs.lib",
conf.glew_dir));
},
_ => fail("Invalid GLEW STATIC library option option set"),
};
match conf.build_graphics.as_ref() {
"OFF" => {
graphics_options.push(format!("-DBUILD_GRAPHICS:BOOL={0}", "OFF"));
},
"ON" => {
graphics_options.push(format!("-DBUILD_GRAPHICS:BOOL={0}", "ON"));
graphics_options.push(format!("-DGLEW_ROOT_DIR={0}", conf.glew_dir));
graphics_options.push(format!("-DUSE_GLEWmx_STATIC:BOOL={0}", conf.glew_static));
graphics_options.push(format!("-DGLEW_INCLUDE_DIR:STRING={0}\\include", conf.glew_dir));
graphics_options.push(format!("-DGLFW_INCLUDE_DIR:STRING={0}\\include", conf.glfw_dir));
graphics_options.push(format!("-DGLFW_LIBRARY:STRING={0}\\lib-msvc120\\glfw3.dll",
conf.glfw_dir));
for glew_curr_lib in glew_lib {
graphics_options.push(glew_curr_lib);
}
},
_ => fail("Invalid graphics build option set"),
};
match conf.freeimage_type.as_ref() {
"OFF" => {
freeimage_options.push(format!("-DFREEIMAGE_FOUND:STRING={}", conf.freeimage_type));
},
"STATIC" => {
freeimage_options.push(format!("-DFREEIMAGE_FOUND:STRING={}", "ON"));
freeimage_options.push(format!("-DUSE_FREEIMAGE_STATIC:BOOL={}", "ON"));
freeimage_options.push(format!("-DFREEIMAGE_INCLUDE_PATH:STRING={0}",
conf.freeimage_dir));
freeimage_options.push(format!("-DFREEIMAGE_STATIC_LIBRARY:STRING={0}\\FreeImageLib.lib",
conf.freeimage_dir));
},
"DYNAMIC" => {
freeimage_options.push(format!("-DFREEIMAGE_FOUND:STRING={}", "ON"));
freeimage_options.push(format!("-DUSE_FREEIMAGE_STATIC:BOOL={}", "OFF"));
freeimage_options.push(format!("-DFREEIMAGE_INCLUDE_PATH:STRING={0}",
conf.freeimage_dir));
freeimage_options.push(format!("-DFREEIMAGE_DYNAMIC_LIBRARY:STRING={0}\\FreeImage.lib",
conf.freeimage_dir));
},
_ => fail("Invalid freeimage build option set"),
};
let mut cmake_cmd = Command::new("cmake");
cmake_cmd.current_dir(&build_dir);
run(cmake_cmd.arg("..").arg("-G").arg("Visual Studio 12 2013 Win64")
.args(&[format!("-DCMAKE_BUILD_TYPE:STRING={}", conf.build_type),
format!("-DBUILD_EXAMPLES:BOOL={}", conf.build_examples),
format!("-DBUILD_TEST:BOOL={}", conf.build_test),
format!("-DBOOST_ROOT={}", conf.boost_dir),
format!("-DCMAKE_INSTALL_PREFIX={}", "package")])
.args(&freeimage_options)
.args(&fft_options)
.args(&blas_options)
.args(&lapack_options)
.args(&graphics_options)
, "cmake");
let mut make_cmd= Command::new("C:\\Program Files (x86)\\MSBuild\\12.0\\Bin\\MSBuild.exe");
make_cmd.current_dir(&build_dir);
run(make_cmd
.arg(format!("/m:{}", conf.build_threads))
.arg(format!("/p:Configuration={}", conf.build_type))
.arg(format!("ArrayFire.sln")),
"MSBuild");
let mut install_cmd= Command::new("C:\\Program Files (x86)\\MSBuild\\12.0\\Bin\\MSBuild.exe");
install_cmd.current_dir(&build_dir);
run(install_cmd
.arg(format!("/p:Configuration={}", conf.build_type))
.arg(format!("INSTALL.vcxproj")),
"Install");
}
#[cfg(not(windows))]
fn run_cmake_command(conf: &Config, build_dir: &std::path::PathBuf) {
// create build directories
let _ = fs::create_dir(&build_dir);
// Run our cmake operations
let mut blas_options = vec![];
let mut lapack_options = vec![];
let mut graphics_options= vec![];
let mut freeimage_options=vec![];
match conf.cpu_fft_type.as_ref() {
"FFTW" => println!("Using FFTW upstream for fft functions on cpu backend"),
"ACML" => println!("Using ACML upstream for fft functions on cpu backend"),
"MKL" => println!("Using MKL upstream for fft functions on cpu backend"),
_ => fail("Invalid FFT upstream option set"),
};
match conf.cpu_blas_type.as_ref() {
"LAPACKE" => { blas_options.push(format!("-DUSE_CPU_F77_BLAS:BOOL={}", "OFF")); },
"MKL" => { blas_options.push(format!("-DUSE_CPU_MKL:BOOL={}", "ON")); },
_ => fail("Invalid BLAS upstream option set"),
};
match conf.cpu_lapack_type.as_ref() {
"LAPACKE" => {},
"MKL" => {
lapack_options.push(format!("-DUSE_CPU_MKL:BOOL={0}", "ON"));
lapack_options.push(format!("-DUSE_OPENCL_MKL:BOOL={0}", "ON"));
},
_ => fail("Invalid LAPACK upstream option set"),
};
match conf.build_graphics.as_ref() {
"OFF" => {
graphics_options.push(format!("-DBUILD_GRAPHICS:BOOL={0}", "OFF"));
},
"ON" => {
graphics_options.push(format!("-DBUILD_GRAPHICS:BOOL={0}", "ON"));
graphics_options.push(format!("-DUSE_GLEWmx_STATIC:BOOL={0}", conf.glew_static));
},
_ => fail("Invalid graphics build option set"),
};
match conf.freeimage_type.as_ref() {
"OFF" => { println!("Using Freeimage upstream for image io functions"); },
"STATIC" => { freeimage_options.push(format!("-DUSE_FREEIMAGE_STATIC:BOOL={}", "ON")); },
"DYNAMIC" => { freeimage_options.push(format!("-DUSE_FREEIMAGE_STATIC:BOOL={}", "OFF")); },
_ => fail("Invalid freeimage build option set"),
};
let mut cmake_cmd = Command::new("cmake");
cmake_cmd.current_dir(&build_dir);
run(cmake_cmd.arg("..")
.args(&[format!("-DCMAKE_BUILD_TYPE:STRING={}", conf.build_type),
format!("-DBUILD_EXAMPLES:BOOL={}", conf.build_examples),
format!("-DBUILD_TEST:BOOL={}", conf.build_test),
format!("-DCMAKE_INSTALL_PREFIX:STRING={}", "package")])
.args(&freeimage_options)
.args(&blas_options)
.args(&lapack_options)
.args(&graphics_options)
, "cmake");
// run make
let mut make_cmd= Command::new("make");
make_cmd.current_dir(&build_dir);
run(make_cmd
.arg(format!("-j{}", conf.build_threads))
.arg(format!("install")), "make");
}
fn backend_exists(name: &str) -> bool{
let win_backend = name.to_string() + ".dll";
let osx_backend = name.to_string() + ".dylib";
let linux_backend = name.to_string() + ".so";
return file_exists(&win_backend)
|| file_exists(&osx_backend)
|| file_exists(&linux_backend)
}
fn blob_backends(conf: &Config, build_dir: &std::path::PathBuf) -> (Vec<String>, Vec<String>) {
let mut backend_dirs :Vec<String>= Vec::new();
let mut backends :Vec<String> = Vec::new();
if conf.use_lib {
let afpath = match env::var("AF_PATH") {
Ok(af_path) => PathBuf::from(&af_path),
Err(_) => {
println!("WARNING! USE_LIB IS DEFINED, BUT AF_PATH IS NOT FOUND,");
println!(" TRYING TO FIND LIBRARIES FROM KNOWN DEFAULT LOCATIONS");
if cfg!(target_os = "windows") {
PathBuf::from("C:/Program Files/ArrayFire/v3/")
} else {
PathBuf::from("/usr/local/")
}
},
};
let libpath = afpath.join("lib");
backend_dirs.push(libpath.to_str().to_owned().unwrap().to_string());
if !cfg!(target_os = "windows") {
backend_dirs.push(String::from("/opt/arrayfire-3/lib"));
backend_dirs.push(String::from("/usr/lib"));
}
} else {
backend_dirs.push(build_dir.join("package/lib").to_str().to_owned().unwrap().to_string());
}
let mut uni_lib_exists = false;
let mut cud_lib_exists = false;
let mut ocl_lib_exists = false;
for backend_dir in backend_dirs.iter() {
let lib_dir = PathBuf::from(backend_dir);
let cud_lib_file_to_check = if cfg!(windows) {WIN_CUDA_LIB_NAME} else {UNIX_CUDA_LIB_NAME};
cud_lib_exists = cud_lib_exists || backend_exists(&lib_dir.join(cud_lib_file_to_check).to_string_lossy());
let ocl_lib_file_to_check = if cfg!(windows) {WIN_OCL_LIB_NAME} else {UNIX_OCL_LIB_NAME};
ocl_lib_exists = ocl_lib_exists || backend_exists(&lib_dir.join(ocl_lib_file_to_check).to_string_lossy());
let uni_lib_file_to_check = if cfg!(windows) {WIN_UNI_LIB_NAME} else {UNIX_UNI_LIB_NAME};
uni_lib_exists = uni_lib_exists || backend_exists(&lib_dir.join(uni_lib_file_to_check).to_string_lossy());
}
if ! conf.use_lib {
// blob in cuda deps
if cud_lib_exists {
if cfg!(windows) {
backend_dirs.push(format!("{}\\lib\\x64", conf.cuda_sdk));
backend_dirs.push(format!("{}\\nvvm\\lib\\x64", conf.cuda_sdk));
} else {
let sdk_dir = format!("{}/{}", conf.cuda_sdk, "lib64");
match dir_exists(&sdk_dir){
true => {
backend_dirs.push(sdk_dir);
backend_dirs.push(format!("{}/nvvm/{}", conf.cuda_sdk, "lib64"));
},
false => {
backend_dirs.push(format!("{}/{}", conf.cuda_sdk, "lib"));
backend_dirs.push(format!("{}/nvvm/{}", conf.cuda_sdk, "lib"));
},
};
}
}
//blob in opencl deps
if ocl_lib_exists {
if ! cfg!(target_os = "macos"){
backends.push("OpenCL".to_string());
}
if cfg!(windows) {
let sdk_dir = format!("{}\\lib\\x64", conf.opencl_sdk);
if dir_exists(&sdk_dir){
backend_dirs.push(sdk_dir);
}else {
backend_dirs.push(format!("{}\\lib\\x86_64", conf.opencl_sdk));
}
} else {
let sdk_dir = format!("{}/{}", conf.opencl_sdk, "lib64");
if dir_exists(&sdk_dir){
backend_dirs.push(sdk_dir);
}else {
backend_dirs.push(format!("{}/{}", conf.opencl_sdk, "lib"));
}
}
}
if conf.build_graphics=="ON" {
if !conf.use_lib {
backend_dirs.push(build_dir.join("third_party/forge/lib").to_str().to_owned().unwrap().to_string());
}
}
}
if uni_lib_exists {
backends.push("af".to_string());
if !conf.use_lib && conf.build_graphics=="ON" {
backends.push("forge".to_string());
}
}
return (backends, backend_dirs);
}
fn main() {
// Setup pathing
let src = PathBuf::from(&env::var("CARGO_MANIFEST_DIR").unwrap());
let conf_file = src.join("build.conf");
let conf = read_conf(&conf_file);
let arrayfire_dir = src.join("arrayfire");
let build_dir = arrayfire_dir.join("build");
if !conf.use_lib {
run_cmake_command(&conf, &build_dir);
}
// build correct backend
let (backends, backend_dirs) = blob_backends(&conf, &build_dir);
for backend in backends.iter() {
println!("cargo:rustc-link-lib=dylib={}", backend);
}
for backend_dir in backend_dirs.iter() {
println!("cargo:rustc-link-search=native={}", backend_dir);
}
// Directly check a semver version requirment
if rustc_version::version_matches(">= 1.8.0") {
println!("cargo:rustc-cfg=op_assign");
}
}