hotspot/make/bsd/makefiles/jsig.make
author vlivanov
Tue, 14 Apr 2015 18:03:43 +0300
changeset 30222 bfe6be3c4ef8
parent 26691 40ea2c41f53b
child 33110 dfd3f4fb2c08
child 33583 af842015bfaa
permissions -rw-r--r--
8057919: Class.getSimpleName() should work for non-JLS compliant class names Reviewed-by: dholmes, jrose
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
     1
#
22748
2964d6e34769 8033714: hotspot 'install_jvm' bld target broken with ZIP_DEBUGINFO_FILES=0
dcubed
parents: 20686
diff changeset
     2
# Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
     4
#
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
     7
# published by the Free Software Foundation.
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
     8
#
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    13
# accompanied this code).
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    14
#
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    18
#
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    21
# questions.
25639
61be16de0fd5 8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents: 22748
diff changeset
    22
#
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    23
#
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    24
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    25
# Rules to build signal interposition library, used by vm.make
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    26
14815
41114a74463a 7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents: 10565
diff changeset
    27
# libjsig.so: signal interposition library
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    28
JSIG   = jsig
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    29
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    30
ifeq ($(OS_VENDOR), Darwin)
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    31
  LIBJSIG   = lib$(JSIG).dylib
20686
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    32
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    33
  LIBJSIG_DEBUGINFO   = lib$(JSIG).dylib.dSYM
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    34
  LIBJSIG_DIZ         = lib$(JSIG).diz
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    35
else
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    36
  LIBJSIG   = lib$(JSIG).so
20686
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    37
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    38
  LIBJSIG_DEBUGINFO   = lib$(JSIG).debuginfo
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    39
  LIBJSIG_DIZ         = lib$(JSIG).diz
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    40
endif
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    41
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    42
JSIGSRCDIR = $(GAMMADIR)/src/os/$(Platform_os_family)/vm
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    43
20686
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    44
DEST_JSIG           = $(JDK_LIBDIR)/$(LIBJSIG)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    45
DEST_JSIG_DEBUGINFO = $(JDK_LIBDIR)/$(LIBJSIG_DEBUGINFO)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    46
DEST_JSIG_DIZ       = $(JDK_LIBDIR)/$(LIBJSIG_DIZ)
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    47
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    48
LIBJSIG_MAPFILE = $(MAKEFILES_DIR)/mapfile-vers-jsig
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    49
25639
61be16de0fd5 8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents: 22748
diff changeset
    50
# On Bsd we really dont want a mapfile, as this library is small
61be16de0fd5 8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents: 22748
diff changeset
    51
# and preloaded using LD_PRELOAD, making functions private will
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    52
# cause problems with interposing. See CR: 6466665
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    53
# LFLAGS_JSIG += $(MAPFLAG:FILENAME=$(LIBJSIG_MAPFILE))
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    54
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    55
LFLAGS_JSIG += -D_GNU_SOURCE -pthread $(LDFLAGS_HASH_STYLE)
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    56
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    57
# DEBUG_BINARIES overrides everything, use full -g debug information
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    58
ifeq ($(DEBUG_BINARIES), true)
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    59
  JSIG_DEBUG_CFLAGS = -g
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    60
endif
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    61
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    62
$(LIBJSIG): $(JSIGSRCDIR)/jsig.c $(LIBJSIG_MAPFILE)
26691
40ea2c41f53b 8056999: Make hotspot builds less verbose on default log level
ihse
parents: 25639
diff changeset
    63
	@echo $(LOG_INFO) Making signal interposition lib...
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    64
	$(QUIETLY) $(CC) $(SYMFLAG) $(ARCHFLAG) $(SHARED_FLAG) $(PICFLAG) \
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    65
                         $(LFLAGS_JSIG) $(JSIG_DEBUG_CFLAGS) -o $@ $<
20686
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    66
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    67
  ifeq ($(OS_VENDOR), Darwin)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    68
	$(DSYMUTIL) $@
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    69
    ifeq ($(ZIP_DEBUGINFO_FILES),1)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    70
	$(ZIPEXE) -q -r -y $(LIBJSIG_DIZ) $(LIBJSIG_DEBUGINFO)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    71
	$(RM) -r $(LIBJSIG_DEBUGINFO)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    72
    endif
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    73
  else
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    74
	$(QUIETLY) $(OBJCOPY) --only-keep-debug $@ $(LIBJSIG_DEBUGINFO)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    75
	$(QUIETLY) $(OBJCOPY) --add-gnu-debuglink=$(LIBJSIG_DEBUGINFO) $@
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    76
    ifeq ($(STRIP_POLICY),all_strip)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    77
	$(QUIETLY) $(STRIP) $@
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    78
    else
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    79
      ifeq ($(STRIP_POLICY),min_strip)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    80
	$(QUIETLY) $(STRIP) -g $@
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    81
      # implied else here is no stripping at all
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    82
      endif
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    83
    endif
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    84
    ifeq ($(ZIP_DEBUGINFO_FILES),1)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    85
	$(ZIPEXE) -q -y $(LIBJSIG_DIZ) $(LIBJSIG_DEBUGINFO)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    86
	$(RM) $(LIBJSIG_DEBUGINFO)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    87
    endif
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    88
  endif
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    89
endif
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    90
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    91
install_jsig: $(LIBJSIG)
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    92
	@echo "Copying $(LIBJSIG) to $(DEST_JSIG)"
20686
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    93
ifeq ($(OS_VENDOR), Darwin)
22748
2964d6e34769 8033714: hotspot 'install_jvm' bld target broken with ZIP_DEBUGINFO_FILES=0
dcubed
parents: 20686
diff changeset
    94
	$(QUIETLY) test ! -d $(LIBJSIG_DEBUGINFO) || \
25639
61be16de0fd5 8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents: 22748
diff changeset
    95
	    $(CP) -f -r $(LIBJSIG_DEBUGINFO) $(DEST_JSIG_DEBUGINFO)
20686
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    96
else
22748
2964d6e34769 8033714: hotspot 'install_jvm' bld target broken with ZIP_DEBUGINFO_FILES=0
dcubed
parents: 20686
diff changeset
    97
	$(QUIETLY) test ! -f $(LIBJSIG_DEBUGINFO) || \
25639
61be16de0fd5 8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents: 22748
diff changeset
    98
	    $(CP) -f $(LIBJSIG_DEBUGINFO) $(DEST_JSIG_DEBUGINFO)
20686
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    99
endif
22748
2964d6e34769 8033714: hotspot 'install_jvm' bld target broken with ZIP_DEBUGINFO_FILES=0
dcubed
parents: 20686
diff changeset
   100
	$(QUIETLY) test ! -f $(LIBJSIG_DIZ) || \
25639
61be16de0fd5 8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents: 22748
diff changeset
   101
	    $(CP) -f $(LIBJSIG_DIZ) $(DEST_JSIG_DIZ)
61be16de0fd5 8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents: 22748
diff changeset
   102
	$(QUIETLY) $(CP) -f $(LIBJSIG) $(DEST_JSIG) && echo "Done"
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
   103
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
   104
.PHONY: install_jsig