-
Bug
-
Resolution: Fixed
-
P3
-
8
-
b36
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2223867 | 7u6 | Daniel Daugherty | P3 | Closed | Fixed | b08 |
The fix for the following bug:
7133529 2/2 Debuginfo files are missing in binaries starting 7u4 b08
was originally supposed to be promoted in JDK8-B33 and JDK7u6-B04.
However, there were issues during PIT (unrelated to 7133529) so
the next integration window for 7133529 is JDK8-B35. I don't know
the next JDK7u6 integration window; perhaps JDK7u6-B06?
The fix for 7133529 includes code to properly handle the new ZIP'ed
debug info files, i.e., .diz files. Since the code for 7133529 is
not yet available, the default for the ZIP_DEBUGINFO_FILES build
flag has to change from '1' to '0'. I made that change as part of a
last minute addition to the fix for the following:
7157296 3/4 FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect
OPT builds
Here are the context diffs for that change:
< diff -r e7f813f2ea86 make/common/Defs-linux.gmk
< --- a/make/common/Defs-linux.gmk Fri Mar 23 09:27:44 2012 -0700
< +++ b/make/common/Defs-linux.gmk Thu Mar 29 10:36:16 2012 -0700
---
> > diff -r d0e8c9361bc0 make/common/Defs-linux.gmk
> > --- a/make/common/Defs-linux.gmk Tue Apr 03 11:52:06 2012 +0900
> > +++ b/make/common/Defs-linux.gmk Tue Apr 03 12:00:06 2012 -0700
42,44c42,55
< diff -r e7f813f2ea86 make/common/Defs-solaris.gmk
< --- a/make/common/Defs-solaris.gmk Fri Mar 23 09:27:44 2012 -0700
< +++ b/make/common/Defs-solaris.gmk Thu Mar 29 10:36:16 2012 -0700
---
> > @@ -122,7 +151,9 @@ ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
> > _JUNK_ := $(shell \
> > echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")
> >
> > - ZIP_DEBUGINFO_FILES ?= 1
> > + # HACK: disable ZIP_DEBUGINFO_FILES by default until install repo
> > + # changes are promoted
> > + ZIP_DEBUGINFO_FILES ?= 0
> >
> > _JUNK_ := $(shell \
> > echo >&2 "INFO: ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES)")
> > diff -r d0e8c9361bc0 make/common/Defs-solaris.gmk
> > --- a/make/common/Defs-solaris.gmk Tue Apr 03 11:52:06 2012 +0900
> > +++ b/make/common/Defs-solaris.gmk Tue Apr 03 12:00:06 2012 -0700
83,86c94,108
< diff -r e7f813f2ea86 make/common/Defs-windows.gmk
< --- a/make/common/Defs-windows.gmk Fri Mar 23 09:27:44 2012 -0700
< +++ b/make/common/Defs-windows.gmk Thu Mar 29 10:36:16 2012 -0700
< @@ -76,15 +76,43 @@ EXTRA_LFLAGS += /LIBPATH:$(DXSDK_LIB_PAT
---
> > @@ -130,7 +159,9 @@ ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
> > _JUNK_ := $(shell \
> > echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")
> >
> > - ZIP_DEBUGINFO_FILES ?= 1
> > + # HACK: disable ZIP_DEBUGINFO_FILES by default until install repo
> > + # changes are promoted
> > + ZIP_DEBUGINFO_FILES ?= 0
> >
> > _JUNK_ := $(shell \
> > echo >&2 "INFO: ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES)")
> > diff -r d0e8c9361bc0 make/common/Defs-windows.gmk
> > --- a/make/common/Defs-windows.gmk Tue Apr 03 11:52:06 2012 +0900
> > +++ b/make/common/Defs-windows.gmk Tue Apr 03 12:00:06 2012 -0700
> > @@ -76,15 +76,45 @@ EXTRA_LFLAGS += /LIBPATH:$(DXSDK_LIB_PAT
124c146,149
< ZIP_DEBUGINFO_FILES ?= 1
---
> > - ZIP_DEBUGINFO_FILES ?= 1
> > + # HACK: disable ZIP_DEBUGINFO_FILES by default until install repo
> > + # changes are promoted
> > + ZIP_DEBUGINFO_FILES ?= 0
7133529 2/2 Debuginfo files are missing in binaries starting 7u4 b08
was originally supposed to be promoted in JDK8-B33 and JDK7u6-B04.
However, there were issues during PIT (unrelated to 7133529) so
the next integration window for 7133529 is JDK8-B35. I don't know
the next JDK7u6 integration window; perhaps JDK7u6-B06?
The fix for 7133529 includes code to properly handle the new ZIP'ed
debug info files, i.e., .diz files. Since the code for 7133529 is
not yet available, the default for the ZIP_DEBUGINFO_FILES build
flag has to change from '1' to '0'. I made that change as part of a
last minute addition to the fix for the following:
7157296 3/4 FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect
OPT builds
Here are the context diffs for that change:
< diff -r e7f813f2ea86 make/common/Defs-linux.gmk
< --- a/make/common/Defs-linux.gmk Fri Mar 23 09:27:44 2012 -0700
< +++ b/make/common/Defs-linux.gmk Thu Mar 29 10:36:16 2012 -0700
---
> > diff -r d0e8c9361bc0 make/common/Defs-linux.gmk
> > --- a/make/common/Defs-linux.gmk Tue Apr 03 11:52:06 2012 +0900
> > +++ b/make/common/Defs-linux.gmk Tue Apr 03 12:00:06 2012 -0700
42,44c42,55
< diff -r e7f813f2ea86 make/common/Defs-solaris.gmk
< --- a/make/common/Defs-solaris.gmk Fri Mar 23 09:27:44 2012 -0700
< +++ b/make/common/Defs-solaris.gmk Thu Mar 29 10:36:16 2012 -0700
---
> > @@ -122,7 +151,9 @@ ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
> > _JUNK_ := $(shell \
> > echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")
> >
> > - ZIP_DEBUGINFO_FILES ?= 1
> > + # HACK: disable ZIP_DEBUGINFO_FILES by default until install repo
> > + # changes are promoted
> > + ZIP_DEBUGINFO_FILES ?= 0
> >
> > _JUNK_ := $(shell \
> > echo >&2 "INFO: ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES)")
> > diff -r d0e8c9361bc0 make/common/Defs-solaris.gmk
> > --- a/make/common/Defs-solaris.gmk Tue Apr 03 11:52:06 2012 +0900
> > +++ b/make/common/Defs-solaris.gmk Tue Apr 03 12:00:06 2012 -0700
83,86c94,108
< diff -r e7f813f2ea86 make/common/Defs-windows.gmk
< --- a/make/common/Defs-windows.gmk Fri Mar 23 09:27:44 2012 -0700
< +++ b/make/common/Defs-windows.gmk Thu Mar 29 10:36:16 2012 -0700
< @@ -76,15 +76,43 @@ EXTRA_LFLAGS += /LIBPATH:$(DXSDK_LIB_PAT
---
> > @@ -130,7 +159,9 @@ ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
> > _JUNK_ := $(shell \
> > echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")
> >
> > - ZIP_DEBUGINFO_FILES ?= 1
> > + # HACK: disable ZIP_DEBUGINFO_FILES by default until install repo
> > + # changes are promoted
> > + ZIP_DEBUGINFO_FILES ?= 0
> >
> > _JUNK_ := $(shell \
> > echo >&2 "INFO: ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES)")
> > diff -r d0e8c9361bc0 make/common/Defs-windows.gmk
> > --- a/make/common/Defs-windows.gmk Tue Apr 03 11:52:06 2012 +0900
> > +++ b/make/common/Defs-windows.gmk Tue Apr 03 12:00:06 2012 -0700
> > @@ -76,15 +76,45 @@ EXTRA_LFLAGS += /LIBPATH:$(DXSDK_LIB_PAT
124c146,149
< ZIP_DEBUGINFO_FILES ?= 1
---
> > - ZIP_DEBUGINFO_FILES ?= 1
> > + # HACK: disable ZIP_DEBUGINFO_FILES by default until install repo
> > + # changes are promoted
> > + ZIP_DEBUGINFO_FILES ?= 0
- backported by
-
JDK-2223867 change default ZIP_DEBUGINFO_FILES back to '1' after fix for 7133529 is available
-
- Closed
-
- relates to
-
JDK-7157296 FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
-
- Resolved
-