@@ -16,6 +16,7 @@ pub use package_id::PkgId;
16
16
pub use target:: { OutputType , Main , Lib , Test , Bench , Target , Build , Install } ;
17
17
pub use version:: { Version , NoVersion , split_version_general, try_parsing_version} ;
18
18
pub use rustc:: metadata:: filesearch:: rust_path;
19
+ use rustc:: metadata:: filesearch:: libdir;
19
20
use rustc:: driver:: driver:: host_triple;
20
21
21
22
use std:: libc;
@@ -113,7 +114,7 @@ pub fn target_build_dir(workspace: &Path) -> Path {
113
114
/// Return the target-specific lib subdirectory, pushed onto `base`;
114
115
/// doesn't check that it exists or create it
115
116
fn target_lib_dir ( workspace : & Path ) -> Path {
116
- let mut dir = workspace. join ( "lib" ) ;
117
+ let mut dir = workspace. join ( libdir ( ) ) ;
117
118
dir. push ( host_triple ( ) ) ;
118
119
dir
119
120
}
@@ -184,7 +185,7 @@ pub fn installed_library_in_workspace(pkg_path: &Path, workspace: &Path) -> Opti
184
185
short_name,
185
186
Install ,
186
187
workspace,
187
- "lib" ,
188
+ libdir ( ) ,
188
189
& NoVersion )
189
190
}
190
191
}
@@ -212,7 +213,7 @@ pub fn library_in_workspace(path: &Path, short_name: &str, where: Target,
212
213
213
214
// rustc doesn't use target-specific subdirectories
214
215
pub fn system_library ( sysroot : & Path , lib_name : & str ) -> Option < Path > {
215
- library_in ( lib_name, & NoVersion , & sysroot. join ( "lib" ) )
216
+ library_in ( lib_name, & NoVersion , & sysroot. join ( libdir ( ) ) )
216
217
}
217
218
218
219
fn library_in ( short_name : & str , version : & Version , dir_to_search : & Path ) -> Option < Path > {
0 commit comments