author | erikj |
Tue, 24 Nov 2015 12:18:25 +0100 | |
changeset 34289 | 2d1821a50263 |
parent 33585 | 3121a0276778 |
permissions | -rw-r--r-- |
10565 | 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 | 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. |
|
25639
61be16de0fd5
8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents:
22748
diff
changeset
|
22 |
# |
10565 | 23 |
# |
24 |
||
25 |
# Rules to build signal interposition library, used by vm.make |
|
26 |
||
14815
41114a74463a
7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents:
10565
diff
changeset
|
27 |
# libjsig.so: signal interposition library |
10565 | 28 |
JSIG = jsig |
29 |
||
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 | 35 |
else |
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 | 40 |
endif |
41 |
||
42 |
JSIGSRCDIR = $(GAMMADIR)/src/os/$(Platform_os_family)/vm |
|
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 | 47 |
|
48 |
LIBJSIG_MAPFILE = $(MAKEFILES_DIR)/mapfile-vers-jsig |
|
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 | 52 |
# cause problems with interposing. See CR: 6466665 |
53 |
# LFLAGS_JSIG += $(MAPFLAG:FILENAME=$(LIBJSIG_MAPFILE)) |
|
54 |
||
55 |
LFLAGS_JSIG += -D_GNU_SOURCE -pthread $(LDFLAGS_HASH_STYLE) |
|
56 |
||
57 |
# DEBUG_BINARIES overrides everything, use full -g debug information |
|
58 |
ifeq ($(DEBUG_BINARIES), true) |
|
59 |
JSIG_DEBUG_CFLAGS = -g |
|
60 |
endif |
|
61 |
||
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 | 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 | 69 |
$(QUIETLY) $(CC) $(SYMFLAG) $(ARCHFLAG) $(SHARED_FLAG) $(PICFLAG) \ |
33585 | 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 | 96 |
|
97 |
install_jsig: $(LIBJSIG) |
|
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 | 109 |
|
110 |
.PHONY: install_jsig |