hotspot/make/linux/makefiles/saproc.make
author dlong
Tue, 24 Feb 2015 17:23:53 -0500
changeset 29474 81a5c5330d08
parent 26691 40ea2c41f53b
permissions -rw-r--r--
8072383: resolve conflicts between open and closed ports Summary: refactor close to remove references to closed ports Reviewed-by: kvn, simonis, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#
29474
81a5c5330d08 8072383: resolve conflicts between open and closed ports
dlong
parents: 26691
diff changeset
     2
# Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
# accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    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.
25639
61be16de0fd5 8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents: 22748
diff changeset
    22
#
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
# Rules to build serviceability agent library, used by vm.make
489c9b5090e2 Initial load
duke
parents:
diff changeset
    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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
LIBSAPROC = lib$(SAPROC).so
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 7662
diff changeset
    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
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 7662
diff changeset
    36
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
AGENT_DIR = $(GAMMADIR)/agent
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
SASRCDIR = $(AGENT_DIR)/src/os/$(Platform_os_family)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
SASRCFILES = $(SASRCDIR)/salibelf.c                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
             $(SASRCDIR)/symtab.c                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
             $(SASRCDIR)/libproc_impl.c               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
             $(SASRCDIR)/ps_proc.c                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
             $(SASRCDIR)/ps_core.c                    \
13873
7b72e3873785 6879063: SA should use hsdis for disassembly
minqi
parents: 13529
diff changeset
    46
             $(SASRCDIR)/LinuxDebuggerLocal.c         \
7b72e3873785 6879063: SA should use hsdis for disassembly
minqi
parents: 13529
diff changeset
    47
             $(AGENT_DIR)/src/share/native/sadis.c
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
SAMAPFILE = $(SASRCDIR)/mapfile
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 7662
diff changeset
    53
DEST_SAPROC           = $(JDK_LIBDIR)/$(LIBSAPROC)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 7662
diff changeset
    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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    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
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    67
  BUILDLIBSAPROC = $(LIBSAPROC)
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    68
endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    69
endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    70
13529
dc25e69fd16d 7154641: Servicability agent should work on platforms other than x86, sparc
bpittore
parents: 12501
diff changeset
    71
ifneq ($(ALT_SASRCDIR),)
29474
81a5c5330d08 8072383: resolve conflicts between open and closed ports
dlong
parents: 26691
diff changeset
    72
ALT_SAINCDIR=-I$(ALT_SASRCDIR) -DALT_SASRCDIR
13529
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
29474
81a5c5330d08 8072383: resolve conflicts between open and closed ports
dlong
parents: 26691
diff changeset
    78
SAARCH ?= $(BUILDARCH)
81a5c5330d08 8072383: resolve conflicts between open and closed ports
dlong
parents: 26691
diff changeset
    79
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
$(LIBSAPROC): $(SASRCFILES) $(SAMAPFILE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
	$(QUIETLY) if [ "$(BOOT_JAVA_HOME)" = "" ]; then \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
	  echo "ALT_BOOTDIR, BOOTDIR or JAVA_HOME needs to be defined to build SA"; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
	  exit 1; \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
	fi
26691
40ea2c41f53b 8056999: Make hotspot builds less verbose on default log level
ihse
parents: 25639
diff changeset
    85
	@echo $(LOG_INFO) Making SA debugger back-end...
29474
81a5c5330d08 8072383: resolve conflicts between open and closed ports
dlong
parents: 26691
diff changeset
    86
	$(QUIETLY) $(CC) -D$(SAARCH) -D_GNU_SOURCE                      \
11763
b206e4b3186e 7009098: SA cannot open core files larger than 2GB on Linux 32-bit
poonam
parents: 10559
diff changeset
    87
		   -D_FILE_OFFSET_BITS=64                               \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
                   $(SYMFLAG) $(ARCHFLAG) $(SHARED_FLAG) $(PICFLAG)     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
	           -I$(SASRCDIR)                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
	           -I$(GENERATED)                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
	           -I$(BOOT_JAVA_HOME)/include                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
	           -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
    93
			   $(ALT_SAINCDIR) 										\
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
	           $(SASRCFILES)                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
	           $(SA_LFLAGS)                                         \
2784
f159507e4db1 6829575: 100028: Debug information is incomplete or missing
aph
parents: 670
diff changeset
    96
	           $(SA_DEBUG_CFLAGS)                                   \
17614
a188e0a1875e 8014669: arch specific flags not passed to some link commands
bpittore
parents: 14815
diff changeset
    97
	           $(EXTRA_CFLAGS)                                      \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
	           -o $@                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
	           -lthread_db
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 11763
diff changeset
   100
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 7662
diff changeset
   101
	$(QUIETLY) $(OBJCOPY) --only-keep-debug $@ $(LIBSAPROC_DEBUGINFO)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 7662
diff changeset
   102
	$(QUIETLY) $(OBJCOPY) --add-gnu-debuglink=$(LIBSAPROC_DEBUGINFO) $@
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 7662
diff changeset
   103
  ifeq ($(STRIP_POLICY),all_strip)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 7662
diff changeset
   104
	$(QUIETLY) $(STRIP) $@
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 7662
diff changeset
   105
  else
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 7662
diff changeset
   106
    ifeq ($(STRIP_POLICY),min_strip)
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 7662
diff changeset
   107
	$(QUIETLY) $(STRIP) -g $@
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 7662
diff changeset
   108
    # implied else here is no stripping at all
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 7662
diff changeset
   109
    endif
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 7662
diff changeset
   110
  endif
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 11763
diff changeset
   111
  ifeq ($(ZIP_DEBUGINFO_FILES),1)
14815
41114a74463a 7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents: 13873
diff changeset
   112
	$(ZIPEXE) -q -y $(LIBSAPROC_DIZ) $(LIBSAPROC_DEBUGINFO)
41114a74463a 7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents: 13873
diff changeset
   113
	$(RM) $(LIBSAPROC_DEBUGINFO)
12501
ea7feae692ae 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 11763
diff changeset
   114
  endif
10559
a94d067da388 7071904: 4/4 HotSpot: Full Debug Symbols
dcubed
parents: 7662
diff changeset
   115
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
   117
install_saproc: $(BUILDLIBSAPROC)
22748
2964d6e34769 8033714: hotspot 'install_jvm' bld target broken with ZIP_DEBUGINFO_FILES=0
dcubed
parents: 22234
diff changeset
   118
	$(QUIETLY) if [ -e $(LIBSAPROC) ] ; then                   \
2964d6e34769 8033714: hotspot 'install_jvm' bld target broken with ZIP_DEBUGINFO_FILES=0
dcubed
parents: 22234
diff changeset
   119
	  echo "Copying $(LIBSAPROC) to $(DEST_SAPROC)";           \
2964d6e34769 8033714: hotspot 'install_jvm' bld target broken with ZIP_DEBUGINFO_FILES=0
dcubed
parents: 22234
diff changeset
   120
	  test ! -f $(LIBSAPROC_DEBUGINFO) ||                      \
25639
61be16de0fd5 8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents: 22748
diff changeset
   121
	    $(CP) -f $(LIBSAPROC_DEBUGINFO) $(DEST_SAPROC_DEBUGINFO); \
22748
2964d6e34769 8033714: hotspot 'install_jvm' bld target broken with ZIP_DEBUGINFO_FILES=0
dcubed
parents: 22234
diff changeset
   122
	  test ! -f $(LIBSAPROC_DIZ) ||                            \
25639
61be16de0fd5 8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents: 22748
diff changeset
   123
	    $(CP) -f $(LIBSAPROC_DIZ) $(DEST_SAPROC_DIZ);             \
61be16de0fd5 8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents: 22748
diff changeset
   124
	  $(CP) -f $(LIBSAPROC) $(DEST_SAPROC) && echo "Done";        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
	fi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
   127
.PHONY: install_saproc