-
Bug
-
Resolution: Fixed
-
P2
-
9
-
b89
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8142683 | emb-9 | Christian Thalinger | P2 | Resolved | Fixed | team |
JDK-8267182 | openjdk8u302 | Christian Thalinger | P2 | Resolved | Fixed | b03 |
gcc.make needs this alteration to work with the latest Xcode compilers:
bash-3.2$ hg diff
diff -r daf8acf3afda make/bsd/makefiles/gcc.make
--- a/make/bsd/makefiles/gcc.make Wed Sep 30 04:35:39 2015 -0400
+++ b/make/bsd/makefiles/gcc.make Fri Oct 02 16:34:51 2015 -0400
@@ -313,10 +313,10 @@
# Work around some compiler bugs.
ifeq ($(USE_CLANG), true)
- # Clang <= 6.1
+ # Clang <= 7.1
ifeq ($(shell expr \
- $(CC_VER_MAJOR) \< 6 \| \
- \( $(CC_VER_MAJOR) = 6 \& $(CC_VER_MINOR) \<= 1 \) \
+ $(CC_VER_MAJOR) \< 7 \| \
+ \( $(CC_VER_MAJOR) = 7 \& $(CC_VER_MINOR) \<= 1 \) \
), 1)
OPT_CFLAGS/loopTransform.o += $(OPT_CFLAGS/NOOPT)
OPT_CFLAGS/unsafe.o += -O1
bash-3.2$ hg diff
diff -r daf8acf3afda make/bsd/makefiles/gcc.make
--- a/make/bsd/makefiles/gcc.make Wed Sep 30 04:35:39 2015 -0400
+++ b/make/bsd/makefiles/gcc.make Fri Oct 02 16:34:51 2015 -0400
@@ -313,10 +313,10 @@
# Work around some compiler bugs.
ifeq ($(USE_CLANG), true)
- # Clang <= 6.1
+ # Clang <= 7.1
ifeq ($(shell expr \
- $(CC_VER_MAJOR) \< 6 \| \
- \( $(CC_VER_MAJOR) = 6 \& $(CC_VER_MINOR) \<= 1 \) \
+ $(CC_VER_MAJOR) \< 7 \| \
+ \( $(CC_VER_MAJOR) = 7 \& $(CC_VER_MINOR) \<= 1 \) \
), 1)
OPT_CFLAGS/loopTransform.o += $(OPT_CFLAGS/NOOPT)
OPT_CFLAGS/unsafe.o += -O1
- backported by
-
JDK-8142683 JDK Hotspot build fails with Xcode 7.0.1
-
- Resolved
-
-
JDK-8267182 JDK Hotspot build fails with Xcode 7.0.1
-
- Resolved
-
- relates to
-
JDK-8077364 "if( !this )" construct prevents build on Xcode 6.3
-
- Resolved
-