Lines Matching refs:out_dir
268 let out_dir = env::var("OUT_DIR").unwrap(); in ring_build_rs_main() localVariable
269 let out_dir = PathBuf::from(out_dir); in ring_build_rs_main() localVariable
296 build_c_code(&target, pregenerated, &out_dir); in ring_build_rs_main()
342 fn build_c_code(target: &Target, pregenerated: PathBuf, out_dir: &Path) { in build_c_code()
383 out_dir in build_c_code()
435 &out_dir, in build_c_code()
446 out_dir.to_str().expect("Invalid path") in build_c_code()
452 out_dir: &Path, in build_library()
464 .map(|f| compile(f, target, warnings_are_errors, out_dir, includes_modified)) in build_library()
468 let lib_path = PathBuf::from(out_dir).join(format!("lib{}.a", lib_name)); in build_library()
513 out_dir: &Path, in compile()
520 let mut out_path = out_dir.join(p.file_name().unwrap()); in compile()
535 fn obj_path(out_dir: &Path, src: &Path, obj_ext: &str) -> PathBuf { in obj_path()
536 let mut out_path = out_dir.join(src.file_name().unwrap()); in obj_path()
546 out_dir: &Path, in cc()
634 out_dir.to_str().expect("Invalid path") in cc()
686 out_dir: &Path, in perlasm_src_dsts()
695 .map(|src| (src.clone(), asm_path(out_dir, src, os, perlasm_format))) in perlasm_src_dsts()
708 asm_path(out_dir, &synthesized_path, os, perlasm_format), in perlasm_src_dsts()
730 fn asm_path(out_dir: &Path, src: &Path, os: Option<&str>, perlasm_format: &str) -> PathBuf { in asm_path()
736 out_dir.join(dst_filename) in asm_path()