Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2170017 | 7 | Vladimir Kozlov | P4 | Closed | Fixed | b41 |
JDK-2172838 | 6u14 | Vladimir Kozlov | P3 | Closed | Fixed | b01 |
In make/solaris/makefiles/i486.make we have:
# _lwp_create_interpose must have a frame
OPT_CFLAGS/os_solaris_i486.o = -xO1
# force C++ interpreter to be full optimization
OPT_CFLAGS/interpret.o = -fast -O4
else
ifeq ("${Platform_compiler}", "gcc")
# gcc
# _lwp_create_interpose must have a frame
OPT_CFLAGS/os_solaris_i486.o = -fno-omit-frame-pointer
but os_solaris_i486 is now os_solaris_x86
# _lwp_create_interpose must have a frame
OPT_CFLAGS/os_solaris_i486.o = -xO1
# force C++ interpreter to be full optimization
OPT_CFLAGS/interpret.o = -fast -O4
else
ifeq ("${Platform_compiler}", "gcc")
# gcc
# _lwp_create_interpose must have a frame
OPT_CFLAGS/os_solaris_i486.o = -fno-omit-frame-pointer
but os_solaris_i486 is now os_solaris_x86
- backported by
-
JDK-2172838 Conversion from i486 to x86 missed some entries in makefiles
- Closed
-
JDK-2170017 Conversion from i486 to x86 missed some entries in makefiles
- Closed
- relates to
-
JDK-6770939 Clean up build/make files
- Closed