source: trunk/openjdk/hotspot/make/solaris/makefiles/saproc.make

Last change on this file was 309, checked in by dmik, 14 years ago

trunk: Merged in openjdk6 b24 from branches/vendor/oracle.

File size: 2.8 KB
Line 
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
29SAPROC = saproc
30LIBSAPROC = lib$(SAPROC).so
31
32SAPROC_G = $(SAPROC)$(G_SUFFIX)
33LIBSAPROC_G = lib$(SAPROC_G).so
34
35AGENT_DIR = $(GAMMADIR)/agent
36
37SASRCDIR = $(AGENT_DIR)/src/os/$(Platform_os_family)/proc
38
39SASRCFILES = $(SASRCDIR)/saproc.cpp
40
41SAMAPFILE = $(SASRCDIR)/mapfile
42
43DEST_SAPROC = $(JDK_LIBDIR)/$(LIBSAPROC)
44
45# if $(AGENT_DIR) does not exist, we don't build SA
46
47ifneq ($(wildcard $(AGENT_DIR)),)
48 BUILDLIBSAPROC = $(LIBSAPROC)
49endif
50
51SA_LFLAGS = $(MAPFLAG:FILENAME=$(SAMAPFILE))
52
53ifdef USE_GCC
54SA_LFLAGS += -D_REENTRANT
55else
56SA_LFLAGS += -mt -xnolib -norunpath
57endif
58
59$(LIBSAPROC): $(SASRCFILES) $(SAMAPFILE)
60 $(QUIETLY) if [ "$(BOOT_JAVA_HOME)" = "" ]; then \
61 echo "ALT_BOOTDIR, BOOTDIR or JAVA_HOME needs to be defined to build SA"; \
62 exit 1; \
63 fi
64 @echo Making SA debugger back-end...
65 $(QUIETLY) $(CPP) \
66 $(SYMFLAG) $(ARCHFLAG) $(SHARED_FLAG) $(PICFLAG) \
67 -I$(SASRCDIR) \
68 -I$(GENERATED) \
69 -I$(BOOT_JAVA_HOME)/include \
70 -I$(BOOT_JAVA_HOME)/include/$(Platform_os_family) \
71 $(SASRCFILES) \
72 $(SA_LFLAGS) \
73 -o $@ \
74 -ldl -ldemangle -lthread -lc
75 [ -f $(LIBSAPROC_G) ] || { ln -s $@ $(LIBSAPROC_G); }
76
77install_saproc: $(BULDLIBSAPROC)
78 $(QUIETLY) if [ -f $(LIBSAPROC) ] ; then \
79 echo "Copying $(LIBSAPROC) to $(DEST_SAPROC)"; \
80 cp -f $(LIBSAPROC) $(DEST_SAPROC) && echo "Done"; \
81 fi
82
83.PHONY: install_saproc
Note: See TracBrowser for help on using the repository browser.