1 | #
|
---|
2 | # Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
|
---|
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 | #
|
---|
19 | # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
---|
20 | # or visit www.oracle.com if you need additional information or have any
|
---|
21 | # questions.
|
---|
22 | #
|
---|
23 | #
|
---|
24 |
|
---|
25 | # Rules to build serviceability agent library, used by vm.make
|
---|
26 |
|
---|
27 | # libsaproc[_g].so: serviceability agent
|
---|
28 |
|
---|
29 | SAPROC = saproc
|
---|
30 | LIBSAPROC = lib$(SAPROC).so
|
---|
31 |
|
---|
32 | SAPROC_G = $(SAPROC)$(G_SUFFIX)
|
---|
33 | LIBSAPROC_G = lib$(SAPROC_G).so
|
---|
34 |
|
---|
35 | AGENT_DIR = $(GAMMADIR)/agent
|
---|
36 |
|
---|
37 | SASRCDIR = $(AGENT_DIR)/src/os/$(Platform_os_family)
|
---|
38 |
|
---|
39 | SASRCFILES = $(SASRCDIR)/salibelf.c \
|
---|
40 | $(SASRCDIR)/symtab.c \
|
---|
41 | $(SASRCDIR)/libproc_impl.c \
|
---|
42 | $(SASRCDIR)/ps_proc.c \
|
---|
43 | $(SASRCDIR)/ps_core.c \
|
---|
44 | $(SASRCDIR)/LinuxDebuggerLocal.c
|
---|
45 |
|
---|
46 | SAMAPFILE = $(SASRCDIR)/mapfile
|
---|
47 |
|
---|
48 | DEST_SAPROC = $(JDK_LIBDIR)/$(LIBSAPROC)
|
---|
49 |
|
---|
50 | # DEBUG_BINARIES overrides everything, use full -g debug information
|
---|
51 | ifeq ($(DEBUG_BINARIES), true)
|
---|
52 | SA_DEBUG_CFLAGS = -g
|
---|
53 | endif
|
---|
54 |
|
---|
55 | # if $(AGENT_DIR) does not exist, we don't build SA
|
---|
56 | # also, we don't build SA on Itanium, PPC, ARM or zero.
|
---|
57 |
|
---|
58 | ifneq ($(wildcard $(AGENT_DIR)),)
|
---|
59 | ifneq ($(filter-out ia64 arm ppc zero,$(SRCARCH)),)
|
---|
60 | BUILDLIBSAPROC = $(LIBSAPROC)
|
---|
61 | endif
|
---|
62 | endif
|
---|
63 |
|
---|
64 |
|
---|
65 | SA_LFLAGS = $(MAPFLAG:FILENAME=$(SAMAPFILE)) $(LDFLAGS_HASH_STYLE)
|
---|
66 |
|
---|
67 | $(LIBSAPROC): $(SASRCFILES) $(SAMAPFILE)
|
---|
68 | $(QUIETLY) if [ "$(BOOT_JAVA_HOME)" = "" ]; then \
|
---|
69 | echo "ALT_BOOTDIR, BOOTDIR or JAVA_HOME needs to be defined to build SA"; \
|
---|
70 | exit 1; \
|
---|
71 | fi
|
---|
72 | @echo Making SA debugger back-end...
|
---|
73 | $(QUIETLY) $(CC) -D$(BUILDARCH) -D_GNU_SOURCE \
|
---|
74 | $(SYMFLAG) $(ARCHFLAG) $(SHARED_FLAG) $(PICFLAG) \
|
---|
75 | -I$(SASRCDIR) \
|
---|
76 | -I$(GENERATED) \
|
---|
77 | -I$(BOOT_JAVA_HOME)/include \
|
---|
78 | -I$(BOOT_JAVA_HOME)/include/$(Platform_os_family) \
|
---|
79 | $(SASRCFILES) \
|
---|
80 | $(SA_LFLAGS) \
|
---|
81 | $(SA_DEBUG_CFLAGS) \
|
---|
82 | -o $@ \
|
---|
83 | -lthread_db
|
---|
84 | $(QUIETLY) [ -f $(LIBSAPROC_G) ] || { ln -s $@ $(LIBSAPROC_G); }
|
---|
85 |
|
---|
86 | install_saproc: $(BUILDLIBSAPROC)
|
---|
87 | $(QUIETLY) if [ -e $(LIBSAPROC) ] ; then \
|
---|
88 | echo "Copying $(LIBSAPROC) to $(DEST_SAPROC)"; \
|
---|
89 | cp -f $(LIBSAPROC) $(DEST_SAPROC) && echo "Done"; \
|
---|
90 | fi
|
---|
91 |
|
---|
92 | .PHONY: install_saproc
|
---|