diff options
author | Marko Grönroos <magi@iki.fi> | 2008-12-31 19:03:05 +0000 |
---|---|---|
committer | Marko Grönroos <magi@iki.fi> | 2008-12-31 19:03:05 +0000 |
commit | f99556100237aa49bfdc4b670c1e57f7bec89d7b (patch) | |
tree | 7039704fbec802dfeeaba5053f545fee3254440e | |
parent | e26cf87fd3e5a0dc2998876ffb4ac9c329aabdb1 (diff) | |
download | vaadin-framework-f99556100237aa49bfdc4b670c1e57f7bec89d7b.tar.gz vaadin-framework-f99556100237aa49bfdc4b670c1e57f7bec89d7b.zip |
Removed the parallel building of widgetsets as it can take too much memory in some machines.
svn changeset:6387/svn branch:trunk
-rw-r--r-- | build/build.xml | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/build/build.xml b/build/build.xml index ec9071ab38..38b34a75f3 100644 --- a/build/build.xml +++ b/build/build.xml @@ -788,15 +788,10 @@ <echo>Compiled ColorPickerWidgetSet</echo> </target> - <!-- Builds the client-side engine, i.e., the widgetsets in parallel. --> - <target name="compile-client-side"> - <echo>Compiling widget sets in parallel.</echo> - <parallel threadsperprocessor="1"> - <subant antfile="build.xml" target="compile-widgetset-default" inheritall="true" buildpath="build" /> - <subant antfile="build.xml" target="compile-widgetset-sampler" inheritall="true" buildpath="build" /> - <subant antfile="build.xml" target="compile-widgetset-reserver" inheritall="true" buildpath="build" /> - <subant antfile="build.xml" target="compile-widgetset-colorpicker" inheritall="true" buildpath="build" /> - </parallel> + <!-- Builds the client-side engine, i.e., the widgetsets. --> + <target name="compile-client-side" depends="compile-widgetset-default, compile-widgetset-reserver, compile-widgetset-sampler, compile-widgetset-colorpicker"> + <!-- Building the widgetsets is currently done sequentially, because + parallel compilation takes too much memory for most machines. --> </target> <!-- Definitions for building local components, i.e., not for an installation package. --> |