@@ -30,8 +30,8 @@ pub use cc::{cc, extra_c_flags, extra_cxx_flags, Cc};
30
30
pub use clang:: { clang, Clang } ;
31
31
pub use diff:: { diff, Diff } ;
32
32
pub use llvm:: {
33
- llvm_filecheck, llvm_objdump, llvm_profdata, llvm_readobj, LlvmFilecheck , LlvmObjdump ,
34
- LlvmProfdata , LlvmReadobj ,
33
+ llvm_ar , llvm_filecheck, llvm_objdump, llvm_profdata, llvm_readobj, LlvmAr , LlvmFilecheck ,
34
+ LlvmObjdump , LlvmProfdata , LlvmReadobj ,
35
35
} ;
36
36
pub use run:: { cmd, run, run_fail, run_with_args} ;
37
37
pub use rustc:: { aux_build, bare_rustc, rustc, Rustc } ;
@@ -61,19 +61,6 @@ pub fn target() -> String {
61
61
env_var ( "TARGET" )
62
62
}
63
63
64
- /// `AR`
65
- #[ track_caller]
66
- pub fn ar ( inputs : & [ impl AsRef < Path > ] , output_path : impl AsRef < Path > ) {
67
- let output = fs:: File :: create ( & output_path) . expect ( & format ! (
68
- "the file in path \" {}\" could not be created" ,
69
- output_path. as_ref( ) . display( )
70
- ) ) ;
71
- let mut builder = ar:: Builder :: new ( output) ;
72
- for input in inputs {
73
- builder. append_path ( input) . unwrap ( ) ;
74
- }
75
- }
76
-
77
64
/// Check if target is windows-like.
78
65
#[ must_use]
79
66
pub fn is_windows ( ) -> bool {
@@ -305,12 +292,12 @@ pub fn build_native_static_lib(lib_name: &str) -> PathBuf {
305
292
} else {
306
293
cc ( ) . arg ( "-v" ) . arg ( "-c" ) . out_exe ( & obj_file) . input ( src) . run ( ) ;
307
294
} ;
308
- let mut obj_file = PathBuf :: from ( format ! ( "{lib_name}.o" ) ) ;
309
- if is_msvc ( ) {
310
- obj_file . set_extension ( "" ) ;
311
- obj_file . set_extension ( "obj" ) ;
312
- }
313
- ar ( & [ obj_file ] , & lib_path ) ;
295
+ let obj_file = if is_msvc ( ) {
296
+ PathBuf :: from ( format ! ( "{lib_name}.obj" ) )
297
+ } else {
298
+ PathBuf :: from ( format ! ( "{lib_name}.o" ) )
299
+ } ;
300
+ llvm_ar ( ) . obj_to_ar ( ) . output_input ( & lib_path , & obj_file ) . run ( ) ;
314
301
path ( lib_path)
315
302
}
316
303
0 commit comments