## Supported versions
-[pathes/](hotspot/.hg/patches/) contains patches for all supported versions. Each patch is named by concatenating prefix `full` or `light` with the OpenJDK HotSpot tag. `full` patches support full redefenition capabilities (including removal of superclasses, for example). `light` patches are easier to maintain, but they only support limited functionality (generally, additions to class hierarchies are fine, removals are not).
+[hotspot/.hg/patches/](hotspot/.hg/patches/) contains patches for all supported versions. Each patch is named by concatenating prefix `full` or `light` with the OpenJDK HotSpot tag. `full` patches support full redefenition capabilities (including removal of superclasses, for example). `light` patches are easier to maintain, but they only support limited functionality (generally, additions to class hierarchies are fine, removals are not).
HotSpot tag is the name of the tag in the corresponding HotSpot Mercurial repository ([Java 8](http://hg.openjdk.java.net/jdk8u/jdk8u/hotspot)/[Java 7](http://hg.openjdk.java.net/jdk7u/jdk7u/hotspot)).
}
}
- task init(description: 'Initialize HotSpot repository') << {
+ task checkMercurial(description: 'Verify Mercurial is installed') << {
+ def os = new ByteArrayOutputStream()
+ try {
+ exec {
+ executable 'hg'
+ args 'help', 'init'
+ standardOutput = os
+ errorOutput = os
+ }
+ } catch (GradleException e) {
+ throw new GradleException("Failed to execute 'hg'. Make sure you have Mercurial installed!")
+ }
+ def str = os.toString()
+ if (!str.contains('--mq')) {
+ throw new GradleException("Mercurial does not have mq extension installed! Consult README.md for details.")
+ }
+ }
+
+ task init(description: 'Initialize HotSpot repository', dependsOn: checkMercurial) << {
file('hotspot').mkdir()
exec {
executable 'hg'
task pull(description: 'Pull OpenJDK HotSpot changes', dependsOn: init) {
doLast {
def hotspotRepository = hotspotTag.contains('jdk7') ?
- 'http://hg.openjdk.java.net/jdk7u/jdk7u/hotspot' :
- 'http://hg.openjdk.java.net/jdk8u/jdk8u/hotspot'
+ 'http://hg.openjdk.java.net/jdk7u/jdk7u/hotspot' :
+ 'http://hg.openjdk.java.net/jdk8u/jdk8u/hotspot'
exec {
executable 'hg'
args 'pull', hotspotRepository
}
}
- def arguments = ['product': ['ENABLE_FULL_DEBUG_SYMBOLS=0'],
+ def arguments = ['product' : ['ENABLE_FULL_DEBUG_SYMBOLS=0'],
'fastdebug': ['ENABLE_FULL_DEBUG_SYMBOLS=1', 'STRIP_POLICY=no_strip', 'ZIP_DEBUGINFO_FILES=0']]
['product', 'fastdebug'].each { k ->
}
}
-// Java projects for testing DCEVM
-def setup(prjs, closure) {
- prjs.each { prj ->
- project(prj, closure)
- }
-}
-
-setup(['agent', 'dcevm'], {
+configure([project(':agent'), project(':dcevm')]) {
apply plugin: 'java'
apply plugin: 'idea'
repositories {
mavenCentral()
}
-})
+}
project('agent') {
jar {
args "-I${jre}/../include/linux"
args '-o'
args 'build/libnatives.so'
- args (arch == Arch.X86 ? '-m32' : '-m64')
+ args(arch == Arch.X86 ? '-m32' : '-m64')
} else if (os == Os.MAC) {
args "-I${jre}/../include/darwin"
args '-o'
ignoreFailures = true
outputs.upToDateWhen { false }
useJUnit {
- excludeCategories ('com.github.dcevm.test.category.' + (flavor == 'light' ? 'Full' : 'Light'))
+ excludeCategories('com.github.dcevm.test.category.' + (flavor == 'light' ? 'Full' : 'Light'))
}
}
-#Thu Apr 24 15:01:45 PDT 2014
+#Sun Jul 05 15:22:09 PDT 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
-distributionUrl=http\://services.gradle.org/distributions/gradle-1.11-all.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-bin.zip