1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/// Stack budget for the compiler driver thread spawned by [`run`]. Keep in
/// sync with `PARSE_THREAD_STACK_BYTES` in
/// src/frontend/frontend_guarded_parse.rs so every stage shares one ceiling.
const DRIVER_THREAD_STACK_BYTES: usize = 256 * 1024 * 1024;