-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: hs25
-
Component/s: infrastructure
-
b34
| Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
|---|---|---|---|---|---|---|
| JDK-8015538 | 8 | David Holmes | P4 | Resolved | Fixed | b92 |
| JDK-8036080 | 7u80 | David Holmes | P4 | Resolved | Fixed | b01 |
| JDK-8060852 | 7u79 | David Holmes | P4 | Resolved | Fixed | b01 |
| JDK-8057285 | 7u76 | David Holmes | P4 | Resolved | Fixed | b01 |
| JDK-8036653 | 7u65 | David Holmes | P4 | Resolved | Fixed | b02 |
| JDK-8040348 | 7u60 | David Holmes | P4 | Resolved | Fixed | b15 |
| JDK-8036148 | 7u55 | David Holmes | P4 | Resolved | Fixed | b11 |
../hotspot/make/linux/makefiles/arm.make
we have
LIBS += $(EXT_LIBS_PATH)/sflt_glibc.a
but this needs to be conditional on the path being set
+ifneq ($(EXT_LIBS_PATH),)
LIBS += $(EXT_LIBS_PATH)/sflt_glibc.a
+endif
CFLAGS += -DVM_LITTLE_ENDIAN
~
~
~
- backported by
-
JDK-8015538 Need to check for non-empty EXT_LIBS_PATH before using it
-
- Resolved
-
-
JDK-8036080 Need to check for non-empty EXT_LIBS_PATH before using it
-
- Resolved
-
-
JDK-8036148 Need to check for non-empty EXT_LIBS_PATH before using it
-
- Resolved
-
-
JDK-8036653 Need to check for non-empty EXT_LIBS_PATH before using it
-
- Resolved
-
-
JDK-8040348 Need to check for non-empty EXT_LIBS_PATH before using it
-
- Resolved
-
-
JDK-8057285 Need to check for non-empty EXT_LIBS_PATH before using it
-
- Resolved
-
-
JDK-8060852 Need to check for non-empty EXT_LIBS_PATH before using it
-
- Resolved
-