aboutsummaryrefslogtreecommitdiffstats
path: root/gradle.properties
diff options
context:
space:
mode:
authorIvan Dubrov <idubrov@guidewire.com>2014-04-24 17:02:24 -0700
committerIvan Dubrov <idubrov@guidewire.com>2014-04-24 17:27:05 -0700
commit38ed95d3c0e7043351bcd98edcec840440c2f50c (patch)
tree2e96aab1587260c971f55ad2e3431ab69b6571ab /gradle.properties
parentb4a131ffa7877b6c1853a3b0d6cf2dc1391b72d9 (diff)
downloaddcevm-38ed95d3c0e7043351bcd98edcec840440c2f50c.tar.gz
dcevm-38ed95d3c0e7043351bcd98edcec840440c2f50c.zip
Extracting DCEVM patch & code into separate project
Making DCEVM to be toplevel project that clones HotSpot repository, patches the code, builds JVM and tests it.
Diffstat (limited to 'gradle.properties')
-rw-r--r--gradle.properties28
1 files changed, 28 insertions, 0 deletions
diff --git a/gradle.properties b/gradle.properties
new file mode 100644
index 00000000..549e2521
--- /dev/null
+++ b/gradle.properties
@@ -0,0 +1,28 @@
+# Default settings for DCEVM build/testing
+traceRedefinition=1
+
+# Which JVM kind to use for testing, fastdebug (produces better crash reports) or product (faster).
+kind=fastdebug
+
+# If should use compressed oops (-XX:+UseCompressedOops) or not for testing.
+oops=compressed
+
+# DCEVM build number
+buildNumber=dev
+
+# Name of JVM to install DCEVM to. Specifx -XXaltjvm=<jvmName> to run given JVM.
+jvmName=dcevm
+
+# Which flavor of compiler to use. Leave default value.
+compiler=compiler2
+
+# Path to install JRE.
+# Used when creating local version of JRE with DCEVM library installed.
+targetJre=build/jre
+
+# Tag to base DCEVM on
+hotspotTag=jdk8u5-b13
+
+# Repository to clone hotspot from
+hotspotRepository=http://hg.openjdk.java.net/jdk8u/jdk8u/hotspot
+#hotspotRepository=http://hg.openjdk.java.net/jdk7u/jdk7u/hotspot \ No newline at end of file