about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-08-10 01:20:14 -0700
committerbors <bors@rust-lang.org>2013-08-10 01:20:14 -0700
commitf0fc9c92ffab3bdb98fdd00c284a7f6541444e5a (patch)
treea831e17fb960ea4b848fe3846d5f7146d5e78a77
parent60f5011005eda4f08f0c36fe56e4df07ae9a903f (diff)
parent980bcdd3817efc3f2bcf77263d86deb2d8d104c8 (diff)
downloadrust-f0fc9c92ffab3bdb98fdd00c284a7f6541444e5a.tar.gz
rust-f0fc9c92ffab3bdb98fdd00c284a7f6541444e5a.zip
auto merge of #8425 : dim-an/rust/increase-stack-size, r=brson
-rw-r--r--src/librustc/rustc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/rustc.rs b/src/librustc/rustc.rs
index 369045500ad..0c476686af9 100644
--- a/src/librustc/rustc.rs
+++ b/src/librustc/rustc.rs
@@ -312,7 +312,7 @@ pub fn monitor(f: ~fn(diagnostic::Emitter)) {
 
     // XXX: This is a hack for newsched since it doesn't support split stacks.
     // rustc needs a lot of stack!
-    static STACK_SIZE: uint = 4000000;
+    static STACK_SIZE: uint = 6000000;
 
     let (p, ch) = stream();
     let ch = SharedChan::new(ch);