author | ihse |
Mon, 11 Jun 2018 12:10:55 +0200 | |
branch | ihse-cflags-rewrite-branch |
changeset 56726 | 3a9b7a1f9197 |
parent 50471 | f0aeede1b855 |
child 56732 | 298e0b8056a3 |
permissions | -rw-r--r-- |
25859 | 1 |
# |
49252 | 2 |
# Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved. |
25859 | 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. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
|
10 |
# |
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
24 |
# |
|
25 |
||
26 |
include LibCommon.gmk |
|
27 |
||
47336
6694369ed3f9
8189229: Remove references to $(TOPDIR)/src/*/$(MODULE)
ihse
parents:
47217
diff
changeset
|
28 |
# Hook to include the corresponding custom file, if present. |
6694369ed3f9
8189229: Remove references to $(TOPDIR)/src/*/$(MODULE)
ihse
parents:
47217
diff
changeset
|
29 |
$(eval $(call IncludeCustomExtension, lib/Lib-java.base.gmk)) |
6694369ed3f9
8189229: Remove references to $(TOPDIR)/src/*/$(MODULE)
ihse
parents:
47217
diff
changeset
|
30 |
|
26192
33b90e93e3bf
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
25859
diff
changeset
|
31 |
# Prepare the find cache. |
50471
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49561
diff
changeset
|
32 |
$(eval $(call FillCacheFind, $(wildcard $(TOPDIR)/src/java.base/*/native))) |
26192
33b90e93e3bf
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
25859
diff
changeset
|
33 |
|
49252 | 34 |
################################################################################ |
35 |
# Create all the core libraries |
|
36 |
||
25859 | 37 |
include CoreLibraries.gmk |
49252 | 38 |
|
39 |
################################################################################ |
|
40 |
# Create the network library |
|
41 |
||
42 |
$(eval $(call SetupJdkLibrary, BUILD_LIBNET, \ |
|
43 |
NAME := net, \ |
|
44 |
OPTIMIZATION := LOW, \ |
|
50471
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49561
diff
changeset
|
45 |
CFLAGS := $(CFLAGS_JDKLIB), \ |
56726 | 46 |
DISABLED_WARNINGS_gcc := format-nonliteral logical-op, \ |
49252 | 47 |
DISABLED_WARNINGS_clang := parentheses-equality constant-logical-operand, \ |
48 |
DISABLED_WARNINGS_microsoft := 4244 4047 4133 4996, \ |
|
49 |
DISABLED_WARNINGS_solstudio := E_ARG_INCOMPATIBLE_WITH_ARG_L, \ |
|
50 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
|
51 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
52 |
LDFLAGS_windows := -delayload:secur32.dll -delayload:iphlpapi.dll, \ |
|
53 |
LIBS_unix := -ljvm -ljava, \ |
|
54 |
LIBS_linux := $(LIBDL) -lpthread, \ |
|
55 |
LIBS_solaris := -lnsl -lsocket $(LIBDL), \ |
|
56 |
LIBS_aix := $(LIBDL),\ |
|
57 |
LIBS_windows := ws2_32.lib jvm.lib secur32.lib iphlpapi.lib winhttp.lib \ |
|
58 |
delayimp.lib $(WIN_JAVA_LIB) advapi32.lib, \ |
|
59 |
LIBS_macosx := -framework CoreFoundation -framework CoreServices, \ |
|
60 |
)) |
|
61 |
||
62 |
$(BUILD_LIBNET): $(BUILD_LIBJAVA) |
|
63 |
||
64 |
TARGETS += $(BUILD_LIBNET) |
|
65 |
||
66 |
################################################################################ |
|
67 |
# Create the nio library |
|
68 |
||
69 |
$(eval $(call SetupJdkLibrary, BUILD_LIBNIO, \ |
|
70 |
NAME := nio, \ |
|
71 |
OPTIMIZATION := HIGH, \ |
|
72 |
WARNINGS_AS_ERRORS_xlc := false, \ |
|
50471
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49561
diff
changeset
|
73 |
CFLAGS := $(CFLAGS_JDKLIB), \ |
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49561
diff
changeset
|
74 |
EXTRA_HEADER_DIRS := \ |
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49561
diff
changeset
|
75 |
libnio/ch \ |
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49561
diff
changeset
|
76 |
libnio/fs \ |
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49561
diff
changeset
|
77 |
libnet, \ |
49252 | 78 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
79 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
80 |
LIBS_unix := -ljava -lnet, \ |
|
81 |
LIBS_linux := -lpthread $(LIBDL), \ |
|
82 |
LIBS_solaris := -ljvm -lsocket -lposix4 $(LIBDL) \ |
|
83 |
-lsendfile, \ |
|
84 |
LIBS_aix := $(LIBDL), \ |
|
85 |
LIBS_macosx := \ |
|
86 |
-framework CoreFoundation -framework CoreServices, \ |
|
87 |
LIBS_windows := jvm.lib ws2_32.lib $(WIN_JAVA_LIB) \ |
|
88 |
$(SUPPORT_OUTPUTDIR)/native/$(MODULE)/libnet/net.lib \ |
|
89 |
advapi32.lib, \ |
|
90 |
)) |
|
91 |
||
92 |
TARGETS += $(BUILD_LIBNIO) |
|
93 |
||
94 |
$(BUILD_LIBNIO): $(BUILD_LIBNET) |
|
95 |
||
96 |
################################################################################ |
|
97 |
# Create the macosx security library |
|
98 |
||
99 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
100 |
# JavaNativeFoundation framework not supported in static builds |
|
101 |
ifneq ($(STATIC_BUILD), true) |
|
102 |
||
103 |
$(eval $(call SetupJdkLibrary, BUILD_LIBOSXSECURITY, \ |
|
104 |
NAME := osxsecurity, \ |
|
105 |
OPTIMIZATION := LOW, \ |
|
50471
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49561
diff
changeset
|
106 |
CFLAGS := $(CFLAGS_JDKLIB), \ |
49252 | 107 |
DISABLED_WARNINGS_clang := deprecated-declarations, \ |
108 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
|
109 |
-L$(SUPPORT_OUTPUTDIR)/modules_libs/java.base \ |
|
110 |
$(call SET_SHARED_LIBRARY_ORIGIN) \ |
|
111 |
-fobjc-link-runtime, \ |
|
112 |
LIBS := \ |
|
113 |
-framework JavaNativeFoundation \ |
|
114 |
-framework CoreServices \ |
|
115 |
-framework Security \ |
|
116 |
$(JDKLIB_LIBS), \ |
|
117 |
)) |
|
118 |
||
119 |
$(BUILD_LIBOSXSECURITY): $(BUILD_LIBJAVA) |
|
120 |
||
121 |
TARGETS += $(BUILD_LIBOSXSECURITY) |
|
122 |
||
123 |
endif |
|
124 |
endif |
|
125 |
||
126 |
################################################################################ |
|
49423 | 127 |
# Create the jsig library |
128 |
||
49561 | 129 |
ifeq ($(OPENJDK_TARGET_OS_TYPE), unix) |
49423 | 130 |
ifeq ($(STATIC_BUILD), false) |
131 |
||
49445 | 132 |
LIBJSIG_MAPFILE := $(wildcard $(TOPDIR)/make/mapfiles/libjsig/mapfile-vers-$(OPENJDK_TARGET_OS)) |
49440 | 133 |
|
134 |
ifeq ($(OPENJDK_TARGET_OS), linux) |
|
135 |
# FIXME: This is probably not what we want to do, but keep it now for compatibility. |
|
136 |
LIBJSIG_CFLAGS := $(EXPORT_ALL_SYMBOLS) |
|
137 |
endif |
|
49423 | 138 |
|
139 |
$(eval $(call SetupJdkLibrary, BUILD_LIBJSIG, \ |
|
140 |
NAME := jsig, \ |
|
49440 | 141 |
CFLAGS := $(CFLAGS_JDKLIB) $(LIBJSIG_CFLAGS), \ |
49423 | 142 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
143 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
144 |
LIBS_linux := $(LIBDL), \ |
|
145 |
LIBS_solaris := $(LIBDL), \ |
|
146 |
LIBS_aix := $(LIBDL), \ |
|
49445 | 147 |
MAPFILE := $(LIBJSIG_MAPFILE), \ |
49423 | 148 |
)) |
149 |
||
150 |
TARGETS += $(BUILD_LIBJSIG) |
|
151 |
||
152 |
############################################################################ |
|
153 |
# Create symlinks to libjsig in each JVM variant sub dir |
|
154 |
LIB_OUTPUTDIR := $(call FindLibDirForModule, java.base) |
|
155 |
||
156 |
# $1 variant subdir |
|
157 |
define CreateSymlinks |
|
158 |
# Always symlink from libdir/variant/libjsig.so -> ../libjsig.so. |
|
159 |
$(LIB_OUTPUTDIR)/$1/$(call SHARED_LIBRARY,jsig): \ |
|
160 |
$(LIB_OUTPUTDIR)/$(call SHARED_LIBRARY,jsig) |
|
161 |
$$(call MakeDir, $$(@D)) |
|
162 |
$(RM) $$@ |
|
163 |
$(LN) -s ../$$(@F) $$@ |
|
164 |
||
165 |
TARGETS += $(LIB_OUTPUTDIR)/$1/$(call SHARED_LIBRARY,jsig) |
|
166 |
endef |
|
167 |
||
168 |
# The subdir is the same as the variant for client and minimal, for all |
|
169 |
# others it's server. |
|
170 |
VARIANT_SUBDIRS := $(filter client minimal, $(JVM_VARIANTS)) \ |
|
171 |
$(if $(filter-out client minimal, $(JVM_VARIANTS)), server) |
|
172 |
$(foreach v, $(VARIANT_SUBDIRS), $(eval $(call CreateSymlinks,$v))) |
|
173 |
||
174 |
############################################################################ |
|
175 |
||
176 |
endif |
|
177 |
endif |
|
178 |
||
179 |
################################################################################ |
|
49252 | 180 |
# Create the symbols file for static builds. |
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
181 |
|
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
182 |
ifeq ($(STATIC_BUILD), true) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
183 |
JAVA_BASE_EXPORT_SYMBOLS_SRC := \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
184 |
$(SUPPORT_OUTPUTDIR)/modules_libs/java.base/jli/$(LIBRARY_PREFIX)jli.symbols \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
185 |
$(SUPPORT_OUTPUTDIR)/modules_libs/java.base/$(LIBRARY_PREFIX)java.symbols \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
186 |
$(SUPPORT_OUTPUTDIR)/modules_libs/java.base/$(LIBRARY_PREFIX)net.symbols \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
187 |
$(SUPPORT_OUTPUTDIR)/modules_libs/java.base/$(LIBRARY_PREFIX)nio.symbols \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
188 |
$(SUPPORT_OUTPUTDIR)/modules_libs/java.base/$(LIBRARY_PREFIX)verify.symbols \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
189 |
$(SUPPORT_OUTPUTDIR)/modules_libs/java.base/$(LIBRARY_PREFIX)zip.symbols \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
190 |
$(SUPPORT_OUTPUTDIR)/modules_libs/java.base/$(LIBRARY_PREFIX)jimage.symbols \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
191 |
$(SUPPORT_OUTPUTDIR)/modules_libs/java.base/server/$(LIBRARY_PREFIX)jvm.symbols \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
192 |
# |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
193 |
|
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
194 |
JAVA_BASE_EXPORT_SYMBOL_FILE := $(SUPPORT_OUTPUTDIR)/modules_libs/java.base/java.base.symbols |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
195 |
|
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
196 |
$(JAVA_BASE_EXPORT_SYMBOL_FILE): $(JAVA_BASE_EXPORT_SYMBOLS_SRC) |
35241 | 197 |
$(call LogInfo, Generating java.base.symbols file) |
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
198 |
$(CAT) $^ > $@ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
199 |
|
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
200 |
# The individual symbol files is generated when the respective lib is built |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
201 |
$(JAVA_BASE_EXPORT_SYMBOLS_SRC): $(BUILD_LIBJLI) $(BUILD_LIBJAVA) \ |
33657
71caffb7dba4
8140396: BUILD_LIBJIMAGE missing as a dependency to JAVA_BASE_EXPORT_SYMBOLS_SRC
bobv
parents:
33653
diff
changeset
|
202 |
$(BUILD_LIBNET) $(BUILD_LIBNIO) $(BUILD_LIBVERIFY) $(BUILD_LIBZIP) \ |
71caffb7dba4
8140396: BUILD_LIBJIMAGE missing as a dependency to JAVA_BASE_EXPORT_SYMBOLS_SRC
bobv
parents:
33653
diff
changeset
|
203 |
$(BUILD_LIBJIMAGE) |
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
204 |
|
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
205 |
TARGETS += $(JAVA_BASE_EXPORT_SYMBOL_FILE) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32229
diff
changeset
|
206 |
endif |