@@ -9,6 +9,7 @@ use std::{env, fs, iter};
9
9
10
10
use clap_complete:: shells;
11
11
12
+ use crate :: core:: build_steps:: compile:: run_cargo;
12
13
use crate :: core:: build_steps:: doc:: DocumentationFormat ;
13
14
use crate :: core:: build_steps:: synthetic_targets:: MirOptPanicAbortSyntheticTarget ;
14
15
use crate :: core:: build_steps:: tool:: { self , SourceType , Tool } ;
@@ -2168,9 +2169,11 @@ NOTE: if you're sure you want to do this, please open an issue as to why. In the
2168
2169
#[ derive( Debug , Clone , PartialEq , Eq , Hash ) ]
2169
2170
struct BookTest {
2170
2171
compiler : Compiler ,
2172
+ target : TargetSelection ,
2171
2173
path : PathBuf ,
2172
2174
name : & ' static str ,
2173
2175
is_ext_doc : bool ,
2176
+ dependencies : Vec < & ' static str > ,
2174
2177
}
2175
2178
2176
2179
impl Step for BookTest {
@@ -2223,6 +2226,44 @@ impl BookTest {
2223
2226
// Books often have feature-gated example text.
2224
2227
rustbook_cmd. env ( "RUSTC_BOOTSTRAP" , "1" ) ;
2225
2228
rustbook_cmd. env ( "PATH" , new_path) . arg ( "test" ) . arg ( path) ;
2229
+
2230
+ // Books may also need to build dependencies. For example, `TheBook` has
2231
+ // code samples which use the `trpl` crate. For the `rustdoc` invocation
2232
+ // to find them them successfully, they need to be built first and their
2233
+ // paths used to generate the
2234
+ let libs = if !self . dependencies . is_empty ( ) {
2235
+ let mut lib_paths = vec ! [ ] ;
2236
+ for dep in self . dependencies {
2237
+ let mode = Mode :: ToolBootstrap ;
2238
+ let target = builder. config . build ;
2239
+ // CHECKME: is this correct, or should it be using `builder::Cargo::new`?
2240
+ let cargo = tool:: prepare_tool_cargo (
2241
+ builder,
2242
+ self . compiler ,
2243
+ mode,
2244
+ builder. config . build ,
2245
+ Kind :: Build ,
2246
+ dep,
2247
+ SourceType :: Submodule ,
2248
+ & [ ] ,
2249
+ ) ;
2250
+ // CHECKME: this is used for the "stamp" for this `run_cargo`; is this reasonable?
2251
+ let out_dir = builder. cargo_out ( self . compiler , mode, target) ;
2252
+ let output_paths =
2253
+ run_cargo ( builder, cargo, vec ! [ ] , & out_dir, vec ! [ ] , false , false ) ;
2254
+ lib_paths. extend ( output_paths) ;
2255
+ }
2256
+ lib_paths
2257
+ } else {
2258
+ vec ! [ ]
2259
+ } ;
2260
+
2261
+ if !libs. is_empty ( ) {
2262
+ let mut cli_args = vec ! [ String :: from( "--library-path" ) ] ;
2263
+ cli_args. extend ( libs. into_iter ( ) . map ( |path| format ! ( "{}" , path. display( ) ) ) ) ;
2264
+ rustbook_cmd. args ( cli_args) ;
2265
+ }
2266
+
2226
2267
builder. add_rust_test_threads ( & mut rustbook_cmd) ;
2227
2268
let _guard = builder. msg (
2228
2269
Kind :: Test ,
@@ -2281,12 +2322,14 @@ macro_rules! test_book {
2281
2322
$name: ident, $path: expr, $book_name: expr,
2282
2323
default =$default: expr
2283
2324
$( , submodules = $submodules: expr) ?
2325
+ $( , dependencies=$dependencies: expr) ?
2284
2326
;
2285
2327
) +) => {
2286
2328
$(
2287
2329
#[ derive( Debug , Clone , PartialEq , Eq , Hash ) ]
2288
2330
pub struct $name {
2289
2331
compiler: Compiler ,
2332
+ target: TargetSelection ,
2290
2333
}
2291
2334
2292
2335
impl Step for $name {
@@ -2301,6 +2344,7 @@ macro_rules! test_book {
2301
2344
fn make_run( run: RunConfig <' _>) {
2302
2345
run. builder. ensure( $name {
2303
2346
compiler: run. builder. compiler( run. builder. top_stage, run. target) ,
2347
+ target: run. target,
2304
2348
} ) ;
2305
2349
}
2306
2350
@@ -2310,11 +2354,22 @@ macro_rules! test_book {
2310
2354
builder. require_submodule( submodule, None ) ;
2311
2355
}
2312
2356
) *
2357
+
2358
+ let dependencies = vec![ ] ;
2359
+ $(
2360
+ let mut dependencies = dependencies;
2361
+ for dep in $dependencies {
2362
+ dependencies. push( dep) ;
2363
+ }
2364
+ ) ?
2365
+
2313
2366
builder. ensure( BookTest {
2314
2367
compiler: self . compiler,
2368
+ target: self . target,
2315
2369
path: PathBuf :: from( $path) ,
2316
2370
name: $book_name,
2317
2371
is_ext_doc: !$default,
2372
+ dependencies,
2318
2373
} ) ;
2319
2374
}
2320
2375
}
@@ -2329,7 +2384,7 @@ test_book!(
2329
2384
RustcBook , "src/doc/rustc" , "rustc" , default =true ;
2330
2385
RustByExample , "src/doc/rust-by-example" , "rust-by-example" , default =false , submodules=[ "src/doc/rust-by-example" ] ;
2331
2386
EmbeddedBook , "src/doc/embedded-book" , "embedded-book" , default =false , submodules=[ "src/doc/embedded-book" ] ;
2332
- TheBook , "src/doc/book" , "book" , default =false , submodules=[ "src/doc/book" ] ;
2387
+ TheBook , "src/doc/book" , "book" , default =false , submodules=[ "src/doc/book" ] , dependencies= [ "src/doc/book/packages/trpl" ] ;
2333
2388
UnstableBook , "src/doc/unstable-book" , "unstable-book" , default =true ;
2334
2389
EditionGuide , "src/doc/edition-guide" , "edition-guide" , default =false , submodules=[ "src/doc/edition-guide" ] ;
2335
2390
) ;
0 commit comments