author | lana |
Mon, 27 Jan 2014 21:01:55 -0800 | |
changeset 22412 | 81bb5f538220 |
parent 17614 | a188e0a1875e |
child 22234 | da823d78ad65 |
permissions | -rw-r--r-- |
1 | 1 |
# |
11763
b206e4b3186e
7009098: SA cannot open core files larger than 2GB on Linux 32-bit
poonam
parents:
10559
diff
changeset
|
2 |
# Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
7 |
# published by the Free Software Foundation. |
|
8 |
# |
|
9 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
# accompanied this code). |
|
14 |
# |
|
15 |
# You should have received a copy of the GNU General Public License version |
|
16 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
# |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4493
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4493
diff
changeset
|
20 |
# or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4493
diff
changeset
|
21 |
# questions. |
1 | 22 |
# |
23 |
# |
|
13529
dc25e69fd16d
7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents:
12501
diff
changeset
|
24 |
include $(GAMMADIR)/make/defs.make |
dc25e69fd16d
7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents:
12501
diff
changeset
|
25 |
include $(GAMMADIR)/make/altsrc.make |
1 | 26 |
|
27 |
# Rules to build serviceability agent library, used by vm.make |
|
28 |
||
14815
41114a74463a
7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents:
13873
diff
changeset
|
29 |
# libsaproc.so: serviceability agent |
4493
9204129f065e
6843629: Make current hotspot build part of jdk5 control build
phh
parents:
4013
diff
changeset
|
30 |
|
9204129f065e
6843629: Make current hotspot build part of jdk5 control build
phh
parents:
4013
diff
changeset
|
31 |
SAPROC = saproc |
1 | 32 |
LIBSAPROC = lib$(SAPROC).so |
33 |
||
10559 | 34 |
LIBSAPROC_DEBUGINFO = lib$(SAPROC).debuginfo |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11763
diff
changeset
|
35 |
LIBSAPROC_DIZ = lib$(SAPROC).diz |
10559 | 36 |
|
1 | 37 |
AGENT_DIR = $(GAMMADIR)/agent |
38 |
||
39 |
SASRCDIR = $(AGENT_DIR)/src/os/$(Platform_os_family) |
|
40 |
||
41 |
SASRCFILES = $(SASRCDIR)/salibelf.c \ |
|
42 |
$(SASRCDIR)/symtab.c \ |
|
43 |
$(SASRCDIR)/libproc_impl.c \ |
|
44 |
$(SASRCDIR)/ps_proc.c \ |
|
45 |
$(SASRCDIR)/ps_core.c \ |
|
13873 | 46 |
$(SASRCDIR)/LinuxDebuggerLocal.c \ |
47 |
$(AGENT_DIR)/src/share/native/sadis.c |
|
1 | 48 |
|
13529
dc25e69fd16d
7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents:
12501
diff
changeset
|
49 |
-include $(HS_ALT_MAKE)/linux/makefiles/saproc.make |
dc25e69fd16d
7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents:
12501
diff
changeset
|
50 |
|
1 | 51 |
SAMAPFILE = $(SASRCDIR)/mapfile |
52 |
||
10559 | 53 |
DEST_SAPROC = $(JDK_LIBDIR)/$(LIBSAPROC) |
54 |
DEST_SAPROC_DEBUGINFO = $(JDK_LIBDIR)/$(LIBSAPROC_DEBUGINFO) |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11763
diff
changeset
|
55 |
DEST_SAPROC_DIZ = $(JDK_LIBDIR)/$(LIBSAPROC_DIZ) |
1 | 56 |
|
2784
f159507e4db1
6829575: 100028: Debug information is incomplete or missing
aph
parents:
670
diff
changeset
|
57 |
# DEBUG_BINARIES overrides everything, use full -g debug information |
f159507e4db1
6829575: 100028: Debug information is incomplete or missing
aph
parents:
670
diff
changeset
|
58 |
ifeq ($(DEBUG_BINARIES), true) |
f159507e4db1
6829575: 100028: Debug information is incomplete or missing
aph
parents:
670
diff
changeset
|
59 |
SA_DEBUG_CFLAGS = -g |
f159507e4db1
6829575: 100028: Debug information is incomplete or missing
aph
parents:
670
diff
changeset
|
60 |
endif |
f159507e4db1
6829575: 100028: Debug information is incomplete or missing
aph
parents:
670
diff
changeset
|
61 |
|
1 | 62 |
# if $(AGENT_DIR) does not exist, we don't build SA |
13529
dc25e69fd16d
7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents:
12501
diff
changeset
|
63 |
# also, we don't build SA on Itanium or zero. |
1 | 64 |
|
7397 | 65 |
ifneq ($(wildcard $(AGENT_DIR)),) |
13529
dc25e69fd16d
7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents:
12501
diff
changeset
|
66 |
ifneq ($(filter-out ia64 zero,$(SRCARCH)),) |
7397 | 67 |
BUILDLIBSAPROC = $(LIBSAPROC) |
68 |
endif |
|
69 |
endif |
|
70 |
||
13529
dc25e69fd16d
7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents:
12501
diff
changeset
|
71 |
ifneq ($(ALT_SASRCDIR),) |
dc25e69fd16d
7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents:
12501
diff
changeset
|
72 |
ALT_SAINCDIR=-I$(ALT_SASRCDIR) |
dc25e69fd16d
7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents:
12501
diff
changeset
|
73 |
else |
dc25e69fd16d
7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents:
12501
diff
changeset
|
74 |
ALT_SAINCDIR= |
dc25e69fd16d
7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents:
12501
diff
changeset
|
75 |
endif |
2747
9988d908a2b2
6838154: make/linux/makefiles/sa.make needs hash-style fix
never
parents:
670
diff
changeset
|
76 |
SA_LFLAGS = $(MAPFLAG:FILENAME=$(SAMAPFILE)) $(LDFLAGS_HASH_STYLE) |
1 | 77 |
|
78 |
$(LIBSAPROC): $(SASRCFILES) $(SAMAPFILE) |
|
79 |
$(QUIETLY) if [ "$(BOOT_JAVA_HOME)" = "" ]; then \ |
|
80 |
echo "ALT_BOOTDIR, BOOTDIR or JAVA_HOME needs to be defined to build SA"; \ |
|
81 |
exit 1; \ |
|
82 |
fi |
|
83 |
@echo Making SA debugger back-end... |
|
84 |
$(QUIETLY) $(CC) -D$(BUILDARCH) -D_GNU_SOURCE \ |
|
11763
b206e4b3186e
7009098: SA cannot open core files larger than 2GB on Linux 32-bit
poonam
parents:
10559
diff
changeset
|
85 |
-D_FILE_OFFSET_BITS=64 \ |
1 | 86 |
$(SYMFLAG) $(ARCHFLAG) $(SHARED_FLAG) $(PICFLAG) \ |
87 |
-I$(SASRCDIR) \ |
|
88 |
-I$(GENERATED) \ |
|
89 |
-I$(BOOT_JAVA_HOME)/include \ |
|
90 |
-I$(BOOT_JAVA_HOME)/include/$(Platform_os_family) \ |
|
13529
dc25e69fd16d
7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents:
12501
diff
changeset
|
91 |
$(ALT_SAINCDIR) \ |
1 | 92 |
$(SASRCFILES) \ |
93 |
$(SA_LFLAGS) \ |
|
2784
f159507e4db1
6829575: 100028: Debug information is incomplete or missing
aph
parents:
670
diff
changeset
|
94 |
$(SA_DEBUG_CFLAGS) \ |
17614
a188e0a1875e
8014669: arch specific flags not passed to some link commands
bpittore
parents:
14815
diff
changeset
|
95 |
$(EXTRA_CFLAGS) \ |
1 | 96 |
-o $@ \ |
97 |
-lthread_db |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11763
diff
changeset
|
98 |
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1) |
10559 | 99 |
$(QUIETLY) $(OBJCOPY) --only-keep-debug $@ $(LIBSAPROC_DEBUGINFO) |
100 |
$(QUIETLY) $(OBJCOPY) --add-gnu-debuglink=$(LIBSAPROC_DEBUGINFO) $@ |
|
101 |
ifeq ($(STRIP_POLICY),all_strip) |
|
102 |
$(QUIETLY) $(STRIP) $@ |
|
103 |
else |
|
104 |
ifeq ($(STRIP_POLICY),min_strip) |
|
105 |
$(QUIETLY) $(STRIP) -g $@ |
|
106 |
# implied else here is no stripping at all |
|
107 |
endif |
|
108 |
endif |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11763
diff
changeset
|
109 |
ifeq ($(ZIP_DEBUGINFO_FILES),1) |
14815
41114a74463a
7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents:
13873
diff
changeset
|
110 |
$(ZIPEXE) -q -y $(LIBSAPROC_DIZ) $(LIBSAPROC_DEBUGINFO) |
41114a74463a
7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents:
13873
diff
changeset
|
111 |
$(RM) $(LIBSAPROC_DEBUGINFO) |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11763
diff
changeset
|
112 |
endif |
10559 | 113 |
endif |
1 | 114 |
|
7397 | 115 |
install_saproc: $(BUILDLIBSAPROC) |
1 | 116 |
$(QUIETLY) if [ -e $(LIBSAPROC) ] ; then \ |
117 |
echo "Copying $(LIBSAPROC) to $(DEST_SAPROC)"; \ |
|
10559 | 118 |
test -f $(LIBSAPROC_DEBUGINFO) && \ |
119 |
cp -f $(LIBSAPROC_DEBUGINFO) $(DEST_SAPROC_DEBUGINFO); \ |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11763
diff
changeset
|
120 |
test -f $(LIBSAPROC_DIZ) && \ |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11763
diff
changeset
|
121 |
cp -f $(LIBSAPROC_DIZ) $(DEST_SAPROC_DIZ); \ |
1 | 122 |
cp -f $(LIBSAPROC) $(DEST_SAPROC) && echo "Done"; \ |
123 |
fi |
|
124 |
||
7397 | 125 |
.PHONY: install_saproc |