/hg/release/icedtea7-forest-2.5/hotspot: 2 new changesets
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Fri Jul 17 23:47:02 UTC 2015
changeset a694d681dba7 in /hg/release/icedtea7-forest-2.5/hotspot
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.5/hotspot?cmd=changeset;node=a694d681dba7
author: ysuenaga
date: Fri May 29 22:29:44 2015 +0900
8081475, PR2494: SystemTap does not work when JDK is compiled with GCC 5
Summary: libjvm.so which is generated by GCC 5 does not have .note.stapsdt section as dtrace was disabled due to incorrect version check
Reviewed-by: dholmes, coleenp
changeset 73fd325ff54e in /hg/release/icedtea7-forest-2.5/hotspot
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.5/hotspot?cmd=changeset;node=73fd325ff54e
author: andrew
date: Sat Jul 18 00:45:31 2015 +0100
Added tag icedtea-2.5.6pre02 for changeset a694d681dba7
diffstat:
.hgtags | 1 +
make/linux/makefiles/dtrace.make | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diffs (22 lines):
diff -r dd477b47d006 -r 73fd325ff54e .hgtags
--- a/.hgtags Mon Jul 06 11:59:14 2015 +0100
+++ b/.hgtags Sat Jul 18 00:45:31 2015 +0100
@@ -795,3 +795,4 @@
4cb6ece5f0736b79ae114d07279da2c39abd29d3 icedtea-2.5.5pre02
cac66550581b9bc94fa36275712dd3c502a1993e icedtea-2.5.5
9b1de9bff274bdfb82d9052d864ff9173cb7e6be icedtea-2.5.6pre01
+a694d681dba7004b7d47d0f5d84b7e3011e1657a icedtea-2.5.6pre02
diff -r dd477b47d006 -r 73fd325ff54e make/linux/makefiles/dtrace.make
--- a/make/linux/makefiles/dtrace.make Mon Jul 06 11:59:14 2015 +0100
+++ b/make/linux/makefiles/dtrace.make Sat Jul 18 00:45:31 2015 +0100
@@ -31,8 +31,8 @@
REASON = "This JDK does not support SDT probes"
else
-# We need a recent GCC for the default
-ifeq "$(shell expr \( $(CC_VER_MAJOR) \>= 4 \) \& \( $(CC_VER_MINOR) \>= 4 \) )" "0"
+# We need a recent GCC for the default (4.4 or later)
+ifeq "$(shell expr \( \( $(CC_VER_MAJOR) = 4 \) \& \( $(CC_VER_MINOR) \>= 4 \) \) \| \( $(CC_VER_MAJOR) \>= 5 \) )" "0"
REASON = "gcc version is too old"
else
More information about the distro-pkg-dev
mailing list