Skip to content

Commit

Permalink
Adding self-compile-ide
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvanwyk committed Sep 27, 2013
1 parent 61bc770 commit e7b7de7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions self-compile-ide
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit e7b7de7

Please sign in to comment.