mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8191205: Set native-debug-symbols default to "external"
Reviewed-by: ehelin, erikj
This commit is contained in:
parent
97325149c6
commit
ad3b6ebd0c
3 changed files with 7 additions and 7 deletions
|
@ -177,7 +177,7 @@ ifneq ($(filter product-bundles, $(MAKECMDGOALS)), )
|
||||||
# Create special filter rules when dealing with unzipped .dSYM directories on
|
# Create special filter rules when dealing with unzipped .dSYM directories on
|
||||||
# macosx
|
# macosx
|
||||||
ifeq ($(OPENJDK_TARGET_OS), macosx)
|
ifeq ($(OPENJDK_TARGET_OS), macosx)
|
||||||
ifeq ($(ZIP_DEBUGINFO_FILES), false)
|
ifeq ($(ZIP_EXTERNAL_DEBUG_SYMBOLS), false)
|
||||||
JDK_SYMBOLS_EXCLUDE_PATTERN := $(addprefix %, \
|
JDK_SYMBOLS_EXCLUDE_PATTERN := $(addprefix %, \
|
||||||
$(call containing, .dSYM/, $(patsubst $(JDK_IMAGE_DIR)/%, %, $(ALL_JDK_FILES))))
|
$(call containing, .dSYM/, $(patsubst $(JDK_IMAGE_DIR)/%, %, $(ALL_JDK_FILES))))
|
||||||
endif
|
endif
|
||||||
|
@ -212,7 +212,7 @@ ifneq ($(filter product-bundles, $(MAKECMDGOALS)), )
|
||||||
# Create special filter rules when dealing with unzipped .dSYM directories on
|
# Create special filter rules when dealing with unzipped .dSYM directories on
|
||||||
# macosx
|
# macosx
|
||||||
ifeq ($(OPENJDK_TARGET_OS), macosx)
|
ifeq ($(OPENJDK_TARGET_OS), macosx)
|
||||||
ifeq ($(ZIP_DEBUGINFO_FILES), false)
|
ifeq ($(ZIP_EXTERNAL_DEBUG_SYMBOLS), false)
|
||||||
JRE_SYMBOLS_EXCLUDE_PATTERN := $(addprefix %, \
|
JRE_SYMBOLS_EXCLUDE_PATTERN := $(addprefix %, \
|
||||||
$(call containing, .dSYM/, $(patsubst $(JRE_IMAGE_DIR)/%, %, $(ALL_JRE_FILES))))
|
$(call containing, .dSYM/, $(patsubst $(JRE_IMAGE_DIR)/%, %, $(ALL_JRE_FILES))))
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -5155,7 +5155,7 @@ VS_SDK_PLATFORM_NAME_2013=
|
||||||
#CUSTOM_AUTOCONF_INCLUDE
|
#CUSTOM_AUTOCONF_INCLUDE
|
||||||
|
|
||||||
# Do not change or remove the following line, it is needed for consistency checks:
|
# Do not change or remove the following line, it is needed for consistency checks:
|
||||||
DATE_WHEN_GENERATED=1511254554
|
DATE_WHEN_GENERATED=1511359342
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
#
|
||||||
|
@ -54080,13 +54080,13 @@ if test "${with_native_debug_symbols+set}" = set; then :
|
||||||
else
|
else
|
||||||
|
|
||||||
if test "x$OPENJDK_TARGET_OS" = xaix; then
|
if test "x$OPENJDK_TARGET_OS" = xaix; then
|
||||||
# AIX doesn't support 'zipped' so use 'internal' as default
|
# AIX doesn't support 'external' so use 'internal' as default
|
||||||
with_native_debug_symbols="internal"
|
with_native_debug_symbols="internal"
|
||||||
else
|
else
|
||||||
if test "x$STATIC_BUILD" = xtrue; then
|
if test "x$STATIC_BUILD" = xtrue; then
|
||||||
with_native_debug_symbols="none"
|
with_native_debug_symbols="none"
|
||||||
else
|
else
|
||||||
with_native_debug_symbols="zipped"
|
with_native_debug_symbols="external"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -296,13 +296,13 @@ AC_DEFUN_ONCE([JDKOPT_SETUP_DEBUG_SYMBOLS],
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
if test "x$OPENJDK_TARGET_OS" = xaix; then
|
if test "x$OPENJDK_TARGET_OS" = xaix; then
|
||||||
# AIX doesn't support 'zipped' so use 'internal' as default
|
# AIX doesn't support 'external' so use 'internal' as default
|
||||||
with_native_debug_symbols="internal"
|
with_native_debug_symbols="internal"
|
||||||
else
|
else
|
||||||
if test "x$STATIC_BUILD" = xtrue; then
|
if test "x$STATIC_BUILD" = xtrue; then
|
||||||
with_native_debug_symbols="none"
|
with_native_debug_symbols="none"
|
||||||
else
|
else
|
||||||
with_native_debug_symbols="zipped"
|
with_native_debug_symbols="external"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
])
|
])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue