about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorDmitry Ermolov <epdmitry@yandex.ru>2013-08-10 03:37:39 +0400
committerDmitry Ermolov <epdmitry@yandex.ru>2013-08-10 03:37:39 +0400
commit980bcdd3817efc3f2bcf77263d86deb2d8d104c8 (patch)
tree963e2fff9010965a71229cbbacbfcd8e156b7495 /src
parent74efdf6197aaee39bd14f8d97b75dbba08f1d32e (diff)
downloadrust-980bcdd3817efc3f2bcf77263d86deb2d8d104c8.tar.gz
rust-980bcdd3817efc3f2bcf77263d86deb2d8d104c8.zip
Increase system stack size.
Diffstat (limited to 'src')
-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);