@@ -12,11 +12,10 @@ use serde_json;
12
12
use core:: { Feature , PackageId , Profile , Target } ;
13
13
use core:: manifest:: Lto ;
14
14
use core:: shell:: ColorChoice ;
15
- use util:: { self , machine_message, Config , ProcessBuilder } ;
15
+ use util:: { self , machine_message, Config , Freshness , ProcessBuilder , Rustc } ;
16
16
use util:: { internal, join_paths, profile} ;
17
17
use util:: paths;
18
18
use util:: errors:: { CargoResult , CargoResultExt , Internal } ;
19
- use util:: Freshness ;
20
19
21
20
use self :: job:: { Job , Work } ;
22
21
use self :: job_queue:: JobQueue ;
@@ -48,15 +47,8 @@ pub enum Kind {
48
47
}
49
48
50
49
/// Configuration information for a rustc build.
51
- #[ derive( Default , Clone ) ]
52
50
pub struct BuildConfig {
53
- /// The host arch triple
54
- ///
55
- /// e.g. x86_64-unknown-linux-gnu, would be
56
- /// - machine: x86_64
57
- /// - hardware-platform: unknown
58
- /// - operating system: linux-gnu
59
- pub host_triple : String ,
51
+ pub rustc : Rustc ,
60
52
/// Build information for the host arch
61
53
pub host : TargetConfig ,
62
54
/// The target arch triple, defaults to host arch
@@ -88,6 +80,7 @@ impl BuildConfig {
88
80
config : & Config ,
89
81
jobs : Option < u32 > ,
90
82
requested_target : & Option < String > ,
83
+ rustc_info_cache : Option < PathBuf > ,
91
84
) -> CargoResult < BuildConfig > {
92
85
if let & Some ( ref s) = requested_target {
93
86
if s. trim ( ) . is_empty ( ) {
@@ -125,27 +118,40 @@ impl BuildConfig {
125
118
None => None ,
126
119
} ;
127
120
let jobs = jobs. or ( cfg_jobs) . unwrap_or ( :: num_cpus:: get ( ) as u32 ) ;
128
-
129
- let host_triple = config. rustc ( ) ?. host . clone ( ) ;
130
- let host_config = TargetConfig :: new ( config, & host_triple) ?;
121
+ let rustc = config. rustc ( rustc_info_cache) ?;
122
+ let host_config = TargetConfig :: new ( config, & rustc. host ) ?;
131
123
let target_config = match target. as_ref ( ) {
132
124
Some ( triple) => TargetConfig :: new ( config, triple) ?,
133
125
None => host_config. clone ( ) ,
134
126
} ;
135
127
Ok ( BuildConfig {
136
- host_triple ,
128
+ rustc ,
137
129
requested_target : target,
138
130
jobs,
139
131
host : host_config,
140
132
target : target_config,
141
- ..Default :: default ( )
133
+ release : false ,
134
+ test : false ,
135
+ doc_all : false ,
136
+ json_messages : false ,
142
137
} )
143
138
}
144
139
140
+ /// The host arch triple
141
+ ///
142
+ /// e.g. x86_64-unknown-linux-gnu, would be
143
+ /// - machine: x86_64
144
+ /// - hardware-platform: unknown
145
+ /// - operating system: linux-gnu
146
+ pub fn host_triple ( & self ) -> & str {
147
+ & self . rustc . host
148
+ }
149
+
145
150
pub fn target_triple ( & self ) -> & str {
146
151
self . requested_target
147
152
. as_ref ( )
148
- . unwrap_or_else ( || & self . host_triple )
153
+ . map ( |s| s. as_str ( ) )
154
+ . unwrap_or ( self . host_triple ( ) )
149
155
}
150
156
}
151
157
0 commit comments