From f9bed0a3b2458db569779cc4bd6ed370e0ff535c Mon Sep 17 00:00:00 2001 From: "jaewon81.lim" Date: Mon, 31 Oct 2011 18:03:48 +0900 Subject: [PATCH] [Title] modify build script [Type] bug fix [Module] profiler-eplugin [Priority] minor [CQ#] [Redmine#] [Problem] hudson build fail by out of memory [Cause] out of memory [Solution] use new garbage collector [TestCase] --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 40c5432..de5865e 100755 --- a/build.sh +++ b/build.sh @@ -142,7 +142,7 @@ else fi echo "Execute Product Ant Builder..." -java -jar ${based_eclipse_path}/plugins/$equinox_launcher -application org.eclipse.ant.core.antRunner -buildfile ${based_eclipse_path}/plugins/$pde_build/scripts/productBuild/productBuild.xml -Dbuilder=$build_path 2>&1 +java -server -XX:+UseParNewGC -jar ${based_eclipse_path}/plugins/$equinox_launcher -application org.eclipse.ant.core.antRunner -buildfile ${based_eclipse_path}/plugins/$pde_build/scripts/productBuild/productBuild.xml -Dbuilder=$build_path 2>&1 if [ $? != 0 ]; then -- 2.7.4