blob: 14fef8547533503f4b5ab226ea1de4473018f2c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# 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
# Which flavor of DCEVM to use, full (supports most redefinitons) or light (more JDK versions supported)
flavor=light
# 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
#hotspotTag=jdk7u51-b13
#hotspotTag=jdk7u45-b08
#hotspotTag=jdk7u40-b43
# Repository to clone hotspot from
hotspotRepository=http://hg.openjdk.java.net/jdk8u/jdk8u/hotspot
#hotspotRepository=http://hg.openjdk.java.net/jdk7u/jdk7u/hotspot
|