Skip to content

Commit

Permalink
Bump recursion_limit in a few places
Browse files Browse the repository at this point in the history
This is needed to get rustdoc to succeed on `dist-x86_64-linux-alt`
  • Loading branch information
Aaron1011 committed Mar 15, 2021
1 parent 06546d4 commit 18f8979
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions compiler/rustc_builtin_macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#![feature(or_patterns)]
#![feature(proc_macro_internals)]
#![feature(proc_macro_quote)]
#![recursion_limit = "256"]

extern crate proc_macro;

Expand Down
1 change: 1 addition & 0 deletions compiler/rustc_parse/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#![feature(or_patterns)]
#![feature(box_syntax)]
#![feature(box_patterns)]
#![recursion_limit = "256"]

use rustc_ast as ast;
use rustc_ast::token::{self, Nonterminal};
Expand Down
1 change: 1 addition & 0 deletions compiler/rustc_session/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#![feature(crate_visibility_modifier)]
#![feature(once_cell)]
#![feature(or_patterns)]
#![recursion_limit = "256"]

#[macro_use]
extern crate bitflags;
Expand Down

0 comments on commit 18f8979

Please sign in to comment.