hotspot/make/bsd/makefiles/jsig.make
author lana
Wed, 02 Dec 2015 10:19:14 -0800
changeset 34319 9d6dd3c5ca23
parent 33585 3121a0276778
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
     1
#
33583
af842015bfaa 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 26691
diff changeset
     2
# Copyright (c) 2005, 2015, 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)
33583
af842015bfaa 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 26691
diff changeset
    31
  LIBJSIG   = lib$(JSIG).$(LIBRARY_SUFFIX)
20686
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    32
33583
af842015bfaa 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 26691
diff changeset
    33
  LIBJSIG_DEBUGINFO   = lib$(JSIG).$(LIBRARY_SUFFIX).dSYM
20686
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...
33583
af842015bfaa 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 26691
diff changeset
    64
ifeq ($(STATIC_BUILD),true)
af842015bfaa 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 26691
diff changeset
    65
	$(QUIETLY) $(CC) -c $(SYMFLAG) $(EXTRA_CFLAGS) $(ARCHFLAG) $(PICFLAG) \
33585
bobv
parents: 33583 33110
diff changeset
    66
                          $(LFLAGS_JSIG) $(JSIG_DEBUG_CFLAGS) -o $(JSIG).o $<
33583
af842015bfaa 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 26691
diff changeset
    67
	$(QUIETLY) $(AR) $(ARFLAGS) $@ $(JSIG).o
af842015bfaa 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 26691
diff changeset
    68
else
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    69
	$(QUIETLY) $(CC) $(SYMFLAG) $(ARCHFLAG) $(SHARED_FLAG) $(PICFLAG) \
33585
bobv
parents: 33583 33110
diff changeset
    70
                          $(LFLAGS_JSIG) $(JSIG_DEBUG_CFLAGS) $(EXTRA_CFLAGS) -o $@ $<
33583
af842015bfaa 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 26691
diff changeset
    71
endif
20686
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    72
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    73
  ifeq ($(OS_VENDOR), Darwin)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    74
	$(DSYMUTIL) $@
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    75
    ifeq ($(ZIP_DEBUGINFO_FILES),1)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    76
	$(ZIPEXE) -q -r -y $(LIBJSIG_DIZ) $(LIBJSIG_DEBUGINFO)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    77
	$(RM) -r $(LIBJSIG_DEBUGINFO)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    78
    endif
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    79
  else
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    80
	$(QUIETLY) $(OBJCOPY) --only-keep-debug $@ $(LIBJSIG_DEBUGINFO)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    81
	$(QUIETLY) $(OBJCOPY) --add-gnu-debuglink=$(LIBJSIG_DEBUGINFO) $@
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    82
    ifeq ($(STRIP_POLICY),all_strip)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    83
	$(QUIETLY) $(STRIP) $@
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    84
    else
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    85
      ifeq ($(STRIP_POLICY),min_strip)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    86
	$(QUIETLY) $(STRIP) -g $@
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    87
      # implied else here is no stripping at all
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
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    90
    ifeq ($(ZIP_DEBUGINFO_FILES),1)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    91
	$(ZIPEXE) -q -y $(LIBJSIG_DIZ) $(LIBJSIG_DEBUGINFO)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    92
	$(RM) $(LIBJSIG_DEBUGINFO)
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    93
    endif
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    94
  endif
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    95
endif
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    96
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    97
install_jsig: $(LIBJSIG)
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
    98
	@echo "Copying $(LIBJSIG) to $(DEST_JSIG)"
20686
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
    99
ifeq ($(OS_VENDOR), Darwin)
22748
2964d6e34769 8033714: hotspot 'install_jvm' bld target broken with ZIP_DEBUGINFO_FILES=0
dcubed
parents: 20686
diff changeset
   100
	$(QUIETLY) test ! -d $(LIBJSIG_DEBUGINFO) || \
25639
61be16de0fd5 8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents: 22748
diff changeset
   101
	    $(CP) -f -r $(LIBJSIG_DEBUGINFO) $(DEST_JSIG_DEBUGINFO)
20686
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
   102
else
22748
2964d6e34769 8033714: hotspot 'install_jvm' bld target broken with ZIP_DEBUGINFO_FILES=0
dcubed
parents: 20686
diff changeset
   103
	$(QUIETLY) test ! -f $(LIBJSIG_DEBUGINFO) || \
25639
61be16de0fd5 8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents: 22748
diff changeset
   104
	    $(CP) -f $(LIBJSIG_DEBUGINFO) $(DEST_JSIG_DEBUGINFO)
20686
1fa9a75192c3 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 14815
diff changeset
   105
endif
22748
2964d6e34769 8033714: hotspot 'install_jvm' bld target broken with ZIP_DEBUGINFO_FILES=0
dcubed
parents: 20686
diff changeset
   106
	$(QUIETLY) test ! -f $(LIBJSIG_DIZ) || \
25639
61be16de0fd5 8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents: 22748
diff changeset
   107
	    $(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
   108
	$(QUIETLY) $(CP) -f $(LIBJSIG) $(DEST_JSIG) && echo "Done"
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
   109
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents:
diff changeset
   110
.PHONY: install_jsig