28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
From b26a2445044d5ba0a3ed0d45ef66108231fcec0f Mon Sep 17 00:00:00 2001
|
|
Date: Fri, 19 Apr 2019 17:41:12 +0000
|
|
Subject: [PATCH] add debuginfo for libsaproc on aarch64
|
|
|
|
---
|
|
hotspot/make/linux/makefiles/defs.make | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/hotspot/make/linux/makefiles/defs.make b/hotspot/make/linux/makefiles/defs.make
|
|
index 9aebd998d2..bb382bbd76 100644
|
|
--- a/hotspot/make/linux/makefiles/defs.make
|
|
+++ b/hotspot/make/linux/makefiles/defs.make
|
|
@@ -316,9 +316,11 @@ ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
|
|
ifeq ($(ZIP_DEBUGINFO_FILES),1)
|
|
ADD_SA_BINARIES/x86 += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.diz
|
|
ADD_SA_BINARIES/sparc += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.diz
|
|
+ ADD_SA_BINARIES/aarch64 += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.diz
|
|
else
|
|
ADD_SA_BINARIES/x86 += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.debuginfo
|
|
ADD_SA_BINARIES/sparc += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.debuginfo
|
|
+ ADD_SA_BINARIES/aarch64 += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.debuginfo
|
|
endif
|
|
endif
|
|
endif
|
|
--
|
|
2.19.0
|
|
|