From e7b7de774c3ebd26e7a05266e535e9567e05166b Mon Sep 17 00:00:00 2001 From: Eric Van Wyk Date: Fri, 27 Sep 2013 11:05:56 -0500 Subject: [PATCH] Adding self-compile-ide --- self-compile-ide | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 self-compile-ide diff --git a/self-compile-ide b/self-compile-ide new file mode 100755 index 000000000..e9b6151b6 --- /dev/null +++ b/self-compile-ide @@ -0,0 +1,16 @@ +#!/bin/bash + +mkdir -p build +cd build + +# These can be fun sometimes: +# -XX:+PrintCompilation +# -verbose:gc -XX:+PrintGCTimeStamps -XX:+PrintGCDetails -XX:-PrintGC +if [ -z "$SVJVM_FLAGS" ]; then + SVJVM_FLAGS="-Xmx1800M -Xss6M" +fi + +time java $SVJVM_FLAGS -jar ../jars/RunSilver.jar $@ silver:composed:idetest && ant + +echo -e "\a" +