From cb855399f52ea117144503aee7a1782e3e768a9b Mon Sep 17 00:00:00 2001 From: Eugene Zhuravlev Date: Mon, 19 Nov 2012 17:19:17 +0100 Subject: [PATCH] parallel compilation 'false' by default in order to reduce memory requirements for the large projects --- .../com/intellij/compiler/CompilerWorkspaceConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/compiler/openapi/src/com/intellij/compiler/CompilerWorkspaceConfiguration.java b/java/compiler/openapi/src/com/intellij/compiler/CompilerWorkspaceConfiguration.java index 8369b1f8bd7d..80d6db411c15 100644 --- a/java/compiler/openapi/src/com/intellij/compiler/CompilerWorkspaceConfiguration.java +++ b/java/compiler/openapi/src/com/intellij/compiler/CompilerWorkspaceConfiguration.java @@ -39,7 +39,7 @@ public class CompilerWorkspaceConfiguration implements PersistentStateComponent< public boolean CLEAR_OUTPUT_DIRECTORY = true; public boolean USE_COMPILE_SERVER = true; public boolean MAKE_PROJECT_ON_SAVE = false; - public boolean PARALLEL_COMPILATION = true; + public boolean PARALLEL_COMPILATION = false; public int COMPILER_PROCESS_HEAP_SIZE = DEFAULT_COMPILE_PROCESS_HEAP_SIZE; public String COMPILER_PROCESS_ADDITIONAL_VM_OPTIONS = DEFAULT_COMPILE_PROCESS_VM_OPTIONS;