@@ -20,7 +20,7 @@ use std::collections::{HashMap, HashSet};
20
20
21
21
use CargoResult ;
22
22
use core:: dependency:: Kind as DepKind ;
23
- use core:: profiles:: ProfileFor ;
23
+ use core:: profiles:: UnitFor ;
24
24
use core:: { Package , Target , PackageId } ;
25
25
use core:: package:: Downloads ;
26
26
use super :: { BuildContext , CompileMode , Kind , Unit } ;
@@ -59,12 +59,19 @@ pub fn build_unit_dependencies<'a, 'cfg>(
59
59
// cleared, and avoid building the lib thrice (once with `panic`, once
60
60
// without, once for --test). In particular, the lib included for
61
61
// doctests and examples are `Build` mode here.
62
- let profile_for = if unit. mode . is_any_test ( ) || bcx. build_config . test ( ) {
63
- ProfileFor :: TestDependency
62
+ let unit_for = if unit. mode . is_any_test ( ) || bcx. build_config . test ( ) {
63
+ UnitFor :: new_test ( )
64
+ } else if unit. target . is_custom_build ( ) {
65
+ // This normally doesn't happen, except `clean` aggressively
66
+ // generates all units.
67
+ UnitFor :: new_build ( )
68
+ } else if unit. target . for_host ( ) {
69
+ // proc-macro/plugin should never have panic set.
70
+ UnitFor :: new_compiler ( )
64
71
} else {
65
- ProfileFor :: Any
72
+ UnitFor :: new_normal ( )
66
73
} ;
67
- deps_of ( unit, & mut state, profile_for ) ?;
74
+ deps_of ( unit, & mut state, unit_for ) ?;
68
75
}
69
76
70
77
if state. waiting_on_download . len ( ) > 0 {
@@ -84,34 +91,34 @@ pub fn build_unit_dependencies<'a, 'cfg>(
84
91
fn deps_of < ' a , ' cfg , ' tmp > (
85
92
unit : & Unit < ' a > ,
86
93
state : & mut State < ' a , ' cfg , ' tmp > ,
87
- profile_for : ProfileFor ,
94
+ unit_for : UnitFor ,
88
95
) -> CargoResult < ( ) > {
89
- // Currently the `deps` map does not include `profile_for `. This should
96
+ // Currently the `deps` map does not include `unit_for `. This should
90
97
// be safe for now. `TestDependency` only exists to clear the `panic`
91
98
// flag, and you'll never ask for a `unit` with `panic` set as a
92
99
// `TestDependency`. `CustomBuild` should also be fine since if the
93
100
// requested unit's settings are the same as `Any`, `CustomBuild` can't
94
101
// affect anything else in the hierarchy.
95
102
if !state. deps . contains_key ( unit) {
96
- let unit_deps = compute_deps ( unit, state, profile_for ) ?;
103
+ let unit_deps = compute_deps ( unit, state, unit_for ) ?;
97
104
let to_insert: Vec < _ > = unit_deps. iter ( ) . map ( |& ( unit, _) | unit) . collect ( ) ;
98
105
state. deps . insert ( * unit, to_insert) ;
99
- for ( unit, profile_for ) in unit_deps {
100
- deps_of ( & unit, state, profile_for ) ?;
106
+ for ( unit, unit_for ) in unit_deps {
107
+ deps_of ( & unit, state, unit_for ) ?;
101
108
}
102
109
}
103
110
Ok ( ( ) )
104
111
}
105
112
106
113
/// For a package, return all targets which are registered as dependencies
107
114
/// for that package.
108
- /// This returns a vec of `(Unit, ProfileFor )` pairs. The `ProfileFor `
115
+ /// This returns a vec of `(Unit, UnitFor )` pairs. The `UnitFor `
109
116
/// is the profile type that should be used for dependencies of the unit.
110
117
fn compute_deps < ' a , ' cfg , ' tmp > (
111
118
unit : & Unit < ' a > ,
112
119
state : & mut State < ' a , ' cfg , ' tmp > ,
113
- profile_for : ProfileFor ,
114
- ) -> CargoResult < Vec < ( Unit < ' a > , ProfileFor ) > > {
120
+ unit_for : UnitFor ,
121
+ ) -> CargoResult < Vec < ( Unit < ' a > , UnitFor ) > > {
115
122
if unit. mode . is_run_custom_build ( ) {
116
123
return compute_deps_custom_build ( unit, state. bcx ) ;
117
124
} else if unit. mode . is_doc ( ) && !unit. mode . is_any_test ( ) {
@@ -173,15 +180,16 @@ fn compute_deps<'a, 'cfg, 'tmp>(
173
180
None => continue ,
174
181
} ;
175
182
let mode = check_or_build_mode ( unit. mode , lib) ;
183
+ let dep_unit_for = unit_for. with_for_host ( lib. for_host ( ) ) ;
176
184
let unit = new_unit (
177
185
bcx,
178
186
pkg,
179
187
lib,
180
- profile_for ,
188
+ dep_unit_for ,
181
189
unit. kind . for_target ( lib) ,
182
190
mode,
183
191
) ;
184
- ret. push ( ( unit, profile_for ) ) ;
192
+ ret. push ( ( unit, dep_unit_for ) ) ;
185
193
}
186
194
187
195
// If this target is a build script, then what we've collected so far is
@@ -199,7 +207,7 @@ fn compute_deps<'a, 'cfg, 'tmp>(
199
207
if unit. target . is_lib ( ) && unit. mode != CompileMode :: Doctest {
200
208
return Ok ( ret) ;
201
209
}
202
- ret. extend ( maybe_lib ( unit, bcx, profile_for ) ) ;
210
+ ret. extend ( maybe_lib ( unit, bcx, unit_for ) ) ;
203
211
204
212
// If any integration tests/benches are being run, make sure that
205
213
// binaries are built as well.
@@ -225,11 +233,11 @@ fn compute_deps<'a, 'cfg, 'tmp>(
225
233
bcx,
226
234
unit. pkg ,
227
235
t,
228
- ProfileFor :: Any ,
236
+ UnitFor :: new_normal ( ) ,
229
237
unit. kind . for_target ( t) ,
230
238
CompileMode :: Build ,
231
239
) ,
232
- ProfileFor :: Any ,
240
+ UnitFor :: new_normal ( ) ,
233
241
)
234
242
} ) ,
235
243
) ;
@@ -245,7 +253,7 @@ fn compute_deps<'a, 'cfg, 'tmp>(
245
253
fn compute_deps_custom_build < ' a , ' cfg > (
246
254
unit : & Unit < ' a > ,
247
255
bcx : & BuildContext < ' a , ' cfg > ,
248
- ) -> CargoResult < Vec < ( Unit < ' a > , ProfileFor ) > > {
256
+ ) -> CargoResult < Vec < ( Unit < ' a > , UnitFor ) > > {
249
257
// When not overridden, then the dependencies to run a build script are:
250
258
//
251
259
// 1. Compiling the build script itself
@@ -259,20 +267,20 @@ fn compute_deps_custom_build<'a, 'cfg>(
259
267
bcx,
260
268
unit. pkg ,
261
269
unit. target ,
262
- ProfileFor :: CustomBuild ,
270
+ UnitFor :: new_build ( ) ,
263
271
Kind :: Host , // build scripts always compiled for the host
264
272
CompileMode :: Build ,
265
273
) ;
266
274
// All dependencies of this unit should use profiles for custom
267
275
// builds.
268
- Ok ( vec ! [ ( unit, ProfileFor :: CustomBuild ) ] )
276
+ Ok ( vec ! [ ( unit, UnitFor :: new_build ( ) ) ] )
269
277
}
270
278
271
279
/// Returns the dependencies necessary to document a package
272
280
fn compute_deps_doc < ' a , ' cfg , ' tmp > (
273
281
unit : & Unit < ' a > ,
274
282
state : & mut State < ' a , ' cfg , ' tmp > ,
275
- ) -> CargoResult < Vec < ( Unit < ' a > , ProfileFor ) > > {
283
+ ) -> CargoResult < Vec < ( Unit < ' a > , UnitFor ) > > {
276
284
let bcx = state. bcx ;
277
285
let deps = bcx. resolve
278
286
. deps ( unit. pkg . package_id ( ) )
@@ -299,26 +307,27 @@ fn compute_deps_doc<'a, 'cfg, 'tmp>(
299
307
// rustdoc only needs rmeta files for regular dependencies.
300
308
// However, for plugins/proc-macros, deps should be built like normal.
301
309
let mode = check_or_build_mode ( unit. mode , lib) ;
310
+ let dep_unit_for = UnitFor :: new_normal ( ) . with_for_host ( lib. for_host ( ) ) ;
302
311
let lib_unit = new_unit (
303
312
bcx,
304
313
dep,
305
314
lib,
306
- ProfileFor :: Any ,
315
+ dep_unit_for ,
307
316
unit. kind . for_target ( lib) ,
308
317
mode,
309
318
) ;
310
- ret. push ( ( lib_unit, ProfileFor :: Any ) ) ;
319
+ ret. push ( ( lib_unit, dep_unit_for ) ) ;
311
320
if let CompileMode :: Doc { deps : true } = unit. mode {
312
321
// Document this lib as well.
313
322
let doc_unit = new_unit (
314
323
bcx,
315
324
dep,
316
325
lib,
317
- ProfileFor :: Any ,
326
+ dep_unit_for ,
318
327
unit. kind . for_target ( lib) ,
319
328
unit. mode ,
320
329
) ;
321
- ret. push ( ( doc_unit, ProfileFor :: Any ) ) ;
330
+ ret. push ( ( doc_unit, dep_unit_for ) ) ;
322
331
}
323
332
}
324
333
@@ -327,27 +336,27 @@ fn compute_deps_doc<'a, 'cfg, 'tmp>(
327
336
328
337
// If we document a binary, we need the library available
329
338
if unit. target . is_bin ( ) {
330
- ret. extend ( maybe_lib ( unit, bcx, ProfileFor :: Any ) ) ;
339
+ ret. extend ( maybe_lib ( unit, bcx, UnitFor :: new_normal ( ) ) ) ;
331
340
}
332
341
Ok ( ret)
333
342
}
334
343
335
344
fn maybe_lib < ' a > (
336
345
unit : & Unit < ' a > ,
337
346
bcx : & BuildContext ,
338
- profile_for : ProfileFor ,
339
- ) -> Option < ( Unit < ' a > , ProfileFor ) > {
347
+ unit_for : UnitFor ,
348
+ ) -> Option < ( Unit < ' a > , UnitFor ) > {
340
349
unit. pkg . targets ( ) . iter ( ) . find ( |t| t. linkable ( ) ) . map ( |t| {
341
350
let mode = check_or_build_mode ( unit. mode , t) ;
342
351
let unit = new_unit (
343
352
bcx,
344
353
unit. pkg ,
345
354
t,
346
- profile_for ,
355
+ unit_for ,
347
356
unit. kind . for_target ( t) ,
348
357
mode,
349
358
) ;
350
- ( unit, profile_for )
359
+ ( unit, unit_for )
351
360
} )
352
361
}
353
362
@@ -358,7 +367,7 @@ fn maybe_lib<'a>(
358
367
/// script itself doesn't have any dependencies, so even in that case a unit
359
368
/// of work is still returned. `None` is only returned if the package has no
360
369
/// build script.
361
- fn dep_build_script < ' a > ( unit : & Unit < ' a > , bcx : & BuildContext ) -> Option < ( Unit < ' a > , ProfileFor ) > {
370
+ fn dep_build_script < ' a > ( unit : & Unit < ' a > , bcx : & BuildContext ) -> Option < ( Unit < ' a > , UnitFor ) > {
362
371
unit. pkg
363
372
. targets ( )
364
373
. iter ( )
@@ -374,7 +383,7 @@ fn dep_build_script<'a>(unit: &Unit<'a>, bcx: &BuildContext) -> Option<(Unit<'a>
374
383
kind : unit. kind ,
375
384
mode : CompileMode :: RunCustomBuild ,
376
385
} ,
377
- ProfileFor :: CustomBuild ,
386
+ UnitFor :: new_build ( ) ,
378
387
)
379
388
} )
380
389
}
@@ -401,14 +410,14 @@ fn new_unit<'a>(
401
410
bcx : & BuildContext ,
402
411
pkg : & ' a Package ,
403
412
target : & ' a Target ,
404
- profile_for : ProfileFor ,
413
+ unit_for : UnitFor ,
405
414
kind : Kind ,
406
415
mode : CompileMode ,
407
416
) -> Unit < ' a > {
408
417
let profile = bcx. profiles . get_profile (
409
418
& pkg. package_id ( ) ,
410
419
bcx. ws . is_member ( pkg) ,
411
- profile_for ,
420
+ unit_for ,
412
421
mode,
413
422
bcx. build_config . release ,
414
423
) ;
0 commit comments