author | clanger |
Wed, 30 May 2018 08:19:59 +0200 | |
changeset 50350 | 668463f93ec0 |
parent 49999 | d70bc48b2a20 |
child 50357 | 2e0c4b2d567b |
permissions | -rw-r--r-- |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
48766
diff
changeset
|
2 |
# Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved. |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
4 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
10 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
15 |
# accompanied this code). |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
16 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
20 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
23 |
# questions. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
24 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
25 |
|
47314 | 26 |
$(eval $(call IncludeCustomExtension, lib/Awt2dLibraries-pre.gmk)) |
39504
96c700e62710
8003593: build-infra: Paths to optional platform-specific files should not be hardwired to src/closed
erikj
parents:
39025
diff
changeset
|
27 |
|
27565 | 28 |
WIN_AWT_LIB := $(SUPPORT_OUTPUTDIR)/native/$(MODULE)/libawt/awt.lib |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
29 |
|
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25993
diff
changeset
|
30 |
################################################################################ |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
31 |
|
47217 | 32 |
BUILD_LIBMLIB_SRC := $(TOPDIR)/src/java.desktop/share/native/libmlib_image \ |
33 |
$(TOPDIR)/src/java.desktop/share/native/common/awt/medialib |
|
20547 | 34 |
BUILD_LIBMLIB_CFLAGS := -D__USE_J2D_NAMES -D__MEDIALIB_OLD_NAMES \ |
25859 | 35 |
$(addprefix -I, $(BUILD_LIBMLIB_SRC)) \ |
47217 | 36 |
-I$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/libmlib_image |
20547 | 37 |
|
38 |
BUILD_LIBMLIB_LDLIBS := |
|
13164 | 39 |
|
13702 | 40 |
BUILD_LIBMLIB_CFLAGS += -DMLIB_NO_LIBSUNMATH |
41 |
||
42 |
ifeq ($(OPENJDK_TARGET_CPU_BITS), 64) |
|
20547 | 43 |
BUILD_LIBMLIB_CFLAGS += -DMLIB_OS64BIT |
12892 | 44 |
endif |
45 |
||
13164 | 46 |
ifneq ($(OPENJDK_TARGET_OS), windows) |
20547 | 47 |
BUILD_LIBMLIB_LDLIBS += $(LIBM) $(LIBDL) |
12892 | 48 |
endif |
49 |
||
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
50 |
$(eval $(call SetupJdkLibrary, BUILD_LIBMLIB_IMAGE, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
48766
diff
changeset
|
51 |
NAME := mlib_image, \ |
20547 | 52 |
SRC := $(BUILD_LIBMLIB_SRC), \ |
25859 | 53 |
EXCLUDE_FILES := mlib_c_ImageBlendTable.c, \ |
20547 | 54 |
OPTIMIZATION := HIGHEST, \ |
55 |
CFLAGS := $(CFLAGS_JDKLIB) \ |
|
56 |
$(BUILD_LIBMLIB_CFLAGS), \ |
|
57 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
|
58 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
33406 | 59 |
LIBS := $(BUILD_LIBMLIB_LDLIBS) \ |
60 |
$(JDKLIB_LIBS), \ |
|
35276 | 61 |
)) |
20547 | 62 |
|
27565 | 63 |
$(BUILD_LIBMLIB_IMAGE): $(call FindLib, java.base, java) |
13164 | 64 |
|
27565 | 65 |
TARGETS += $(BUILD_LIBMLIB_IMAGE) |
12892 | 66 |
|
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25993
diff
changeset
|
67 |
################################################################################ |
12892 | 68 |
|
20547 | 69 |
ifeq ($(OPENJDK_TARGET_OS)-$(OPENJDK_TARGET_CPU_ARCH), solaris-sparc) |
70 |
||
47217 | 71 |
LIBMLIB_IMAGE_V_SRC := $(TOPDIR)/src/java.desktop/share/native/libmlib_image \ |
72 |
$(TOPDIR)/src/java.desktop/unix/native/libmlib_image \ |
|
73 |
$(TOPDIR)/src/java.desktop/share/native/common/awt/medialib \ |
|
74 |
$(TOPDIR)/src/java.desktop/unix/native/common/awt/medialib \ |
|
25859 | 75 |
# |
47217 | 76 |
LIBMLIB_IMAGE_V_CFLAGS := $(TOPDIR)/src/java.desktop/unix/native/libmlib_image/vis_$(OPENJDK_TARGET_CPU_BITS).il \ |
25859 | 77 |
$(addprefix -I, $(LIBMLIB_IMAGE_V_SRC)) \ |
78 |
# |
|
20547 | 79 |
|
25859 | 80 |
BUILD_LIBMLIB_IMAGE_V_EXFILES := \ |
81 |
awt_ImagingLib.c \ |
|
82 |
mlib_c_ImageAffine_BC.c \ |
|
83 |
mlib_c_ImageAffine_BC_S16.c \ |
|
84 |
mlib_c_ImageAffine_BC_U16.c \ |
|
85 |
mlib_c_ImageAffine_BL.c \ |
|
86 |
mlib_c_ImageAffine_BL_S16.c \ |
|
87 |
mlib_c_ImageAffine_BL_U16.c \ |
|
88 |
mlib_c_ImageAffine_NN.c \ |
|
89 |
mlib_c_ImageConvClearEdge.c \ |
|
90 |
mlib_c_ImageConvCopyEdge.c \ |
|
91 |
mlib_c_ImageConv_f.c \ |
|
92 |
mlib_c_ImageConvVersion.c \ |
|
93 |
mlib_c_ImageCopy.c \ |
|
94 |
mlib_c_ImageLookUp.c \ |
|
95 |
mlib_c_ImageLookUp_f.c \ |
|
96 |
# |
|
97 |
||
98 |
LIBMLIB_IMAGE_V_CFLAGS += $(filter-out -DMLIB_NO_LIBSUNMATH, $(BUILD_LIBMLIB_CFLAGS)) |
|
20547 | 99 |
|
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
100 |
$(eval $(call SetupJdkLibrary, BUILD_LIBMLIB_IMAGE_V, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
48766
diff
changeset
|
101 |
NAME := mlib_image_v, \ |
25859 | 102 |
SRC := $(LIBMLIB_IMAGE_V_SRC), \ |
103 |
EXCLUDE_FILES := $(BUILD_LIBMLIB_IMAGE_V_EXFILES), \ |
|
20547 | 104 |
OPTIMIZATION := HIGHEST, \ |
105 |
CFLAGS := -xarch=sparcvis \ |
|
25859 | 106 |
$(LIBMLIB_IMAGE_V_CFLAGS) \ |
20547 | 107 |
$(CFLAGS_JDKLIB), \ |
108 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
|
109 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
49241 | 110 |
LIBS := -ljava -ljvm $(BUILD_LIBMLIB_LDLIBS), \ |
35276 | 111 |
)) |
20547 | 112 |
|
27565 | 113 |
$(BUILD_LIBMLIB_IMAGE_V): $(call FindLib, java.base, java) |
20547 | 114 |
|
27565 | 115 |
TARGETS += $(BUILD_LIBMLIB_IMAGE_V) |
12892 | 116 |
|
117 |
endif |
|
118 |
||
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25993
diff
changeset
|
119 |
################################################################################ |
12892 | 120 |
|
47217 | 121 |
LIBAWT_DIRS := $(TOPDIR)/src/java.desktop/share/native/libawt \ |
122 |
$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/libawt \ |
|
123 |
$(TOPDIR)/src/java.desktop/share/native/common/awt/debug \ |
|
124 |
$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/common/awt \ |
|
25859 | 125 |
# |
20547 | 126 |
|
26225
3c7e92c78bab
8056246: Fix AIX build after the Modular Source Code change 8054834
simonis
parents:
26191
diff
changeset
|
127 |
ifeq ($(OPENJDK_TARGET_OS), aix) |
47217 | 128 |
LIBAWT_DIRS += $(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS)/native/libawt |
26225
3c7e92c78bab
8056246: Fix AIX build after the Modular Source Code change 8054834
simonis
parents:
26191
diff
changeset
|
129 |
endif |
3c7e92c78bab
8056246: Fix AIX build after the Modular Source Code change 8054834
simonis
parents:
26191
diff
changeset
|
130 |
|
20547 | 131 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
47217 | 132 |
LIBAWT_DIRS += $(TOPDIR)/src/java.desktop/share/native/common/awt/utility |
25859 | 133 |
endif |
134 |
||
26225
3c7e92c78bab
8056246: Fix AIX build after the Modular Source Code change 8054834
simonis
parents:
26191
diff
changeset
|
135 |
ifneq ($(filter $(OPENJDK_TARGET_OS), solaris linux macosx aix), ) |
25859 | 136 |
LIBAWT_EXFILES += awt_Font.c CUPSfuncs.c fontpath.c X11Color.c |
14231 | 137 |
endif |
13164 | 138 |
|
25859 | 139 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
26751
70bac69b37c9
8056216: Remove "sun" directory layer from libawt and common
prr
parents:
26741
diff
changeset
|
140 |
LIBAWT_EXFILES += initIDs.c awt/image/cvutils/img_colors.c |
22597
7515a991bb37
8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents:
22595
diff
changeset
|
141 |
endif |
7515a991bb37
8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents:
22595
diff
changeset
|
142 |
|
27565 | 143 |
LIBAWT_CFLAGS += -I$(SUPPORT_OUTPUTDIR)/headers/java.desktop \ |
25859 | 144 |
$(addprefix -I, $(shell find $(LIBAWT_DIRS) -type d)) \ |
145 |
$(LIBJAVA_HEADER_FLAGS) \ |
|
146 |
$(addprefix -I, $(BUILD_LIBMLIB_IMAGE_SRC)) \ |
|
147 |
# |
|
148 |
||
26225
3c7e92c78bab
8056246: Fix AIX build after the Modular Source Code change 8054834
simonis
parents:
26191
diff
changeset
|
149 |
LIBAWT_CFLAGS += -D__MEDIALIB_OLD_NAMES -D__USE_J2D_NAMES $(X_CFLAGS) |
20547 | 150 |
|
13164 | 151 |
ifeq ($(OPENJDK_TARGET_OS)-$(OPENJDK_TARGET_CPU_ARCH), solaris-sparc) |
20547 | 152 |
LIBAWT_CFLAGS += -DMLIB_ADD_SUFF |
153 |
LIBAWT_CFLAGS += -xarch=sparcvis |
|
154 |
||
47217 | 155 |
LIBAWT_CFLAGS += $(TOPDIR)/src/java.desktop/unix/native/libmlib_image/vis_$(OPENJDK_TARGET_CPU_BITS).il |
156 |
LIBAWT_DIRS += $(TOPDIR)/src/java.desktop/share/native/common/awt/medialib |
|
26751
70bac69b37c9
8056216: Remove "sun" directory layer from libawt and common
prr
parents:
26741
diff
changeset
|
157 |
LIBAWT_EXFILES += java2d/loops/MapAccelFunc.c |
20547 | 158 |
|
159 |
ifeq ($(OPENJDK_TARGET_CPU), sparcv9) |
|
160 |
LIBAWT_ASFLAGS = -P -xarch=v9a |
|
161 |
else |
|
162 |
LIBAWT_ASFLAGS = -P -xarch=v8plusa |
|
163 |
endif |
|
12892 | 164 |
else |
25859 | 165 |
LIBAWT_EXCLUDES += \ |
47217 | 166 |
$(TOPDIR)/src/java.desktop/unix/native/libawt/awt/medialib \ |
167 |
$(TOPDIR)/src/java.desktop/unix/native/libawt/java2d/loops \ |
|
168 |
$(TOPDIR)/src/java.desktop/unix/native/common/awt/medialib \ |
|
25859 | 169 |
# |
12892 | 170 |
endif |
171 |
||
20547 | 172 |
ifneq ($(OPENJDK_TARGET_OS), solaris) |
173 |
LIBAWT_CFLAGS += -DMLIB_NO_LIBSUNMATH |
|
12892 | 174 |
endif |
175 |
||
20547 | 176 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
47217 | 177 |
LIBAWT_DIRS += $(TOPDIR)/src/java.desktop/share/native/common/font \ |
178 |
$(TOPDIR)/src/java.desktop/share/native/common/java2d/opengl \ |
|
179 |
$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/common/awt/systemscale \ |
|
25859 | 180 |
# Why does libawt need java.base headers? |
47217 | 181 |
LIBAWT_CFLAGS += -I$(TOPDIR)/src/java.desktop/share/native/common/font \ |
182 |
-I$(TOPDIR)/src/java.desktop/share/native/common/java2d/opengl \ |
|
183 |
-I$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/common/java2d/opengl \ |
|
184 |
-I$(TOPDIR)/src/java.desktop/windows/native/include \ |
|
185 |
-I$(TOPDIR)/src/java.desktop/share/native/include \ |
|
27565 | 186 |
-I$(SUPPORT_OUTPUTDIR)/headers/java.base \ |
25859 | 187 |
# |
188 |
LIBAWT_EXFILES += \ |
|
26751
70bac69b37c9
8056216: Remove "sun" directory layer from libawt and common
prr
parents:
26741
diff
changeset
|
189 |
java2d/d3d/D3DShaderGen.c \ |
70bac69b37c9
8056216: Remove "sun" directory layer from libawt and common
prr
parents:
26741
diff
changeset
|
190 |
awt/image/cvutils/img_colors.c \ |
25859 | 191 |
# |
20547 | 192 |
|
193 |
LIBAWT_CFLAGS += -EHsc -DUNICODE -D_UNICODE |
|
194 |
ifeq ($(OPENJDK_TARGET_CPU_BITS), 64) |
|
195 |
LIBAWT_CFLAGS += -DMLIB_OS64BIT |
|
196 |
endif |
|
197 |
||
47217 | 198 |
LIBAWT_RC_FLAGS ?= -I $(TOPDIR)/src/java.base/windows/native/launcher/icons |
199 |
LIBAWT_VERSIONINFO_RESOURCE := $(TOPDIR)/src/java.desktop/windows/native/libawt/windows/awt.rc |
|
12892 | 200 |
endif |
201 |
||
20547 | 202 |
ifeq ($(OPENJDK_TARGET_OS), linux) |
49440 | 203 |
# FIXME: This is probably not what we want to do, but keep it now for compatibility. |
204 |
LIBAWT_CFLAGS += $(EXPORT_ALL_SYMBOLS) |
|
12892 | 205 |
endif |
206 |
||
35711
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
207 |
# Turn off all warnings for debug_mem.c This is needed because the specific warning |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
208 |
# about initializing a declared 'extern' cannot be turned off individually. Only |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
209 |
# applies to debug builds. |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
210 |
ifeq ($(TOOLCHAIN_TYPE), gcc) |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
211 |
BUILD_LIBAWT_debug_mem.c_CFLAGS := -w |
43082
cf17b8a17dc0
8140266: Performance loss between jdk8 and jdk9 on Maskfill
serb
parents:
42747
diff
changeset
|
212 |
# This option improves performance of MaskFill in Java2D by 20% for some gcc |
cf17b8a17dc0
8140266: Performance loss between jdk8 and jdk9 on Maskfill
serb
parents:
42747
diff
changeset
|
213 |
LIBAWT_CFLAGS += -fgcse-after-reload |
35711
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
214 |
endif |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
215 |
|
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
216 |
$(eval $(call SetupJdkLibrary, BUILD_LIBAWT, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
48766
diff
changeset
|
217 |
NAME := awt, \ |
20547 | 218 |
SRC := $(LIBAWT_DIRS), \ |
25859 | 219 |
EXCLUDES := $(LIBAWT_EXCLUDES), \ |
220 |
EXCLUDE_FILES := $(LIBAWT_EXFILES), \ |
|
20547 | 221 |
OPTIMIZATION := LOW, \ |
222 |
CFLAGS := $(CFLAGS_JDKLIB) $(LIBAWT_CFLAGS), \ |
|
29374
f031a666744a
8074096: Disable (most) native warnings in JDK on a per-library basis
ihse
parents:
29006
diff
changeset
|
223 |
DISABLED_WARNINGS_gcc := sign-compare unused-result maybe-uninitialized \ |
f031a666744a
8074096: Disable (most) native warnings in JDK on a per-library basis
ihse
parents:
29006
diff
changeset
|
224 |
format-nonliteral parentheses, \ |
30434 | 225 |
DISABLED_WARNINGS_clang := logical-op-parentheses extern-initializer, \ |
29374
f031a666744a
8074096: Disable (most) native warnings in JDK on a per-library basis
ihse
parents:
29006
diff
changeset
|
226 |
DISABLED_WARNINGS_solstudio := E_DECLARATION_IN_CODE, \ |
49838
b37e0785ce0b
8202052: Disable warnings when building libawt with VS2017
mikael
parents:
49697
diff
changeset
|
227 |
DISABLED_WARNINGS_microsoft := 4297 4244 4267 4291 4302 4311 4996, \ |
20547 | 228 |
ASFLAGS := $(LIBAWT_ASFLAGS), \ |
229 |
LDFLAGS := $(LDFLAGS_JDKLIB) $(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
33406 | 230 |
LDFLAGS_macosx := -L$(INSTALL_LIBRARIES_HERE), \ |
231 |
LDFLAGS_windows := -delayload:user32.dll -delayload:gdi32.dll \ |
|
232 |
-delayload:shell32.dll -delayload:winmm.dll \ |
|
233 |
-delayload:winspool.drv -delayload:imm32.dll \ |
|
234 |
-delayload:ole32.dll -delayload:comdlg32.dll \ |
|
235 |
-delayload:comctl32.dll -delayload:shlwapi.dll, \ |
|
236 |
LIBS_unix := -ljvm -ljava $(LIBM), \ |
|
237 |
LIBS_linux := $(LIBDL), \ |
|
49241 | 238 |
LIBS_solaris := $(LIBDL), \ |
33406 | 239 |
LIBS_aix := $(LIBDL),\ |
240 |
LIBS_macosx := -lmlib_image \ |
|
20547 | 241 |
-framework Cocoa \ |
242 |
-framework OpenGL \ |
|
243 |
-framework JavaNativeFoundation \ |
|
244 |
-framework JavaRuntimeSupport \ |
|
245 |
-framework ApplicationServices \ |
|
33406 | 246 |
-framework AudioToolbox, \ |
247 |
LIBS_windows := kernel32.lib user32.lib gdi32.lib winspool.lib \ |
|
20547 | 248 |
imm32.lib ole32.lib uuid.lib shell32.lib \ |
249 |
comdlg32.lib winmm.lib comctl32.lib shlwapi.lib \ |
|
33406 | 250 |
delayimp.lib jvm.lib $(WIN_JAVA_LIB) advapi32.lib, \ |
20547 | 251 |
VERSIONINFO_RESOURCE := $(LIBAWT_VERSIONINFO_RESOURCE), \ |
252 |
RC_FLAGS := $(RC_FLAGS) $(LIBAWT_RC_FLAGS) \ |
|
253 |
-D "JDK_FNAME=awt.dll" \ |
|
254 |
-D "JDK_INTERNAL_NAME=awt" \ |
|
255 |
-D "JDK_FTYPE=0x2L", \ |
|
35276 | 256 |
)) |
20547 | 257 |
|
27565 | 258 |
$(BUILD_LIBAWT): $(call FindLib, java.base, java) |
13164 | 259 |
|
260 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
20547 | 261 |
$(BUILD_LIBAWT): $(BUILD_LIBMLIB_IMAGE) |
13164 | 262 |
endif |
263 |
||
27565 | 264 |
TARGETS += $(BUILD_LIBAWT) |
12892 | 265 |
|
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25993
diff
changeset
|
266 |
################################################################################ |
12892 | 267 |
|
21130 | 268 |
ifeq ($(findstring $(OPENJDK_TARGET_OS),windows macosx),) |
41132 | 269 |
ifeq ($(ENABLE_HEADLESS_ONLY), false) |
20547 | 270 |
|
271 |
LIBAWT_XAWT_DIRS := \ |
|
50350
668463f93ec0
8201429: Support AIX Input Method Editor (IME) for AWT Input Method Framework (IMF)
clanger
parents:
49999
diff
changeset
|
272 |
$(wildcard $(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS)/native/libawt_xawt) \ |
47217 | 273 |
$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/libawt_xawt \ |
274 |
$(TOPDIR)/src/java.desktop/share/native/common/awt/debug \ |
|
275 |
$(TOPDIR)/src/java.desktop/share/native/common/awt/utility \ |
|
276 |
$(TOPDIR)/src/java.desktop/share/native/common/font \ |
|
277 |
$(TOPDIR)/src/java.desktop/share/native/common/java2d \ |
|
278 |
$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/common/java2d \ |
|
279 |
$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/common/awt \ |
|
25859 | 280 |
# |
281 |
||
36953 | 282 |
ifneq ($(filter $(OPENJDK_TARGET_OS),linux solaris aix), ) |
47217 | 283 |
LIBAWT_XAWT_DIRS += $(TOPDIR)/src/java.desktop/unix/native/common/awt/systemscale |
36880
3a05117c7611
8151770: 9-client windows builds fail on windows since make file change for 8145174
erikj
parents:
36869
diff
changeset
|
284 |
endif |
3a05117c7611
8151770: 9-client windows builds fail on windows since make file change for 8145174
erikj
parents:
36869
diff
changeset
|
285 |
|
25859 | 286 |
LIBAWT_XAWT_EXCLUDES := medialib |
20547 | 287 |
|
25859 | 288 |
LIBAWT_XAWT_CFLAGS := $(addprefix -I, $(shell $(FIND) $(LIBAWT_XAWT_DIRS) -type d)) \ |
27565 | 289 |
-I$(SUPPORT_OUTPUTDIR)/headers/java.desktop \ |
47217 | 290 |
-I$(TOPDIR)/src/java.desktop/share/native/include \ |
291 |
-I$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS)/native/include \ |
|
292 |
-I$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/include \ |
|
293 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/java2d \ |
|
294 |
-I$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/libawt/java2d \ |
|
295 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/java2d/loops \ |
|
296 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/java2d/pipe \ |
|
297 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/awt/image/cvutils \ |
|
298 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/awt/image \ |
|
299 |
-I$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/common/font \ |
|
25859 | 300 |
$(LIBJAVA_HEADER_FLAGS) |
301 |
# |
|
302 |
||
303 |
LIBAWT_XAWT_CFLAGS += -DXAWT -DXAWT_HACK \ |
|
21130 | 304 |
-DPACKAGE_PATH=\"$(PACKAGE_PATH)\" \ |
47507
5a270d2dfa5d
8170681: Remove fontconfig header files from JDK source tree
prr
parents:
47314
diff
changeset
|
305 |
$(FONTCONFIG_CFLAGS) \ |
25859 | 306 |
$(CUPS_CFLAGS) |
20547 | 307 |
|
308 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
|
309 |
LIBAWT_XAWT_CFLAGS += -DFUNCPROTO=15 |
|
310 |
endif |
|
311 |
||
312 |
ifeq ($(OPENJDK_TARGET_OS), linux) |
|
313 |
ifeq ($(DISABLE_XRENDER), true) |
|
314 |
LIBAWT_XAWT_CFLAGS += -DDISABLE_XRENDER_BY_DEFAULT=true |
|
315 |
endif |
|
316 |
endif |
|
317 |
||
49241 | 318 |
LIBAWT_XAWT_LIBS := $(LIBM) -lawt -lXext -lX11 -lXrender $(LIBDL) -lXtst -lXi -ljava -ljvm |
20547 | 319 |
|
320 |
ifeq ($(OPENJDK_TARGET_OS), linux) |
|
33406 | 321 |
LIBAWT_XAWT_LIBS += -lpthread |
20547 | 322 |
endif |
323 |
||
35711
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
324 |
ifeq ($(TOOLCHAIN_TYPE), gcc) |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
325 |
# Turn off all warnings for the following files since they contain warnings |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
326 |
# that cannot be turned of individually. |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
327 |
# redefining a macro |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
328 |
BUILD_LIBAWT_XAWT_gtk2_interface.c_CFLAGS := -w |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
329 |
# comparison between pointer and integer |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
330 |
BUILD_LIBAWT_XAWT_awt_Font.c_CFLAGS := -w |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
331 |
# initializing a declared 'extern' |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
332 |
BUILD_LIBAWT_XAWT_debug_mem.c_CFLAGS := -w |
50350
668463f93ec0
8201429: Support AIX Input Method Editor (IME) for AWT Input Method Framework (IMF)
clanger
parents:
49999
diff
changeset
|
333 |
endif |
35711
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
334 |
|
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
335 |
$(eval $(call SetupJdkLibrary, BUILD_LIBAWT_XAWT, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
48766
diff
changeset
|
336 |
NAME := awt_xawt, \ |
20547 | 337 |
SRC := $(LIBAWT_XAWT_DIRS), \ |
25859 | 338 |
EXCLUDES := $(LIBAWT_XAWT_EXCLUDES), \ |
20547 | 339 |
OPTIMIZATION := LOW, \ |
340 |
CFLAGS := $(CFLAGS_JDKLIB) $(LIBAWT_XAWT_CFLAGS) \ |
|
341 |
$(X_CFLAGS), \ |
|
37529
868c7195632c
8154087: Fix AIX and Linux/ppc64le after the integration of the new hotspot build
simonis
parents:
36110
diff
changeset
|
342 |
WARNINGS_AS_ERRORS_xlc := false, \ |
29374
f031a666744a
8074096: Disable (most) native warnings in JDK on a per-library basis
ihse
parents:
29006
diff
changeset
|
343 |
DISABLED_WARNINGS_gcc := type-limits pointer-to-int-cast \ |
42194
4c928df88d20
8160146: Resolve disabled GCC warning 'deprecated-declarations' for libawt_xawt
aghaisas
parents:
41132
diff
changeset
|
344 |
unused-result maybe-uninitialized format \ |
48766
2c4d1993b5f9
8196985: Disable new warnings from GCC 7.3 in jdk libraries
erikj
parents:
48751
diff
changeset
|
345 |
format-security int-to-pointer-cast parentheses \ |
2c4d1993b5f9
8196985: Disable new warnings from GCC 7.3 in jdk libraries
erikj
parents:
48751
diff
changeset
|
346 |
implicit-fallthrough, \ |
29374
f031a666744a
8074096: Disable (most) native warnings in JDK on a per-library basis
ihse
parents:
29006
diff
changeset
|
347 |
DISABLED_WARNINGS_solstudio := E_DECLARATION_IN_CODE \ |
f031a666744a
8074096: Disable (most) native warnings in JDK on a per-library basis
ihse
parents:
29006
diff
changeset
|
348 |
E_ASSIGNMENT_TYPE_MISMATCH E_NON_CONST_INIT, \ |
20547 | 349 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
350 |
$(call SET_SHARED_LIBRARY_ORIGIN) \ |
|
27944 | 351 |
-L$(INSTALL_LIBRARIES_HERE), \ |
33406 | 352 |
LIBS := $(X_LIBS) $(LIBAWT_XAWT_LIBS), \ |
20547 | 353 |
RC_FLAGS := $(RC_FLAGS) \ |
354 |
-D "JDK_FNAME=xawt.dll" \ |
|
355 |
-D "JDK_INTERNAL_NAME=xawt" \ |
|
356 |
-D "JDK_FTYPE=0x2L", \ |
|
35276 | 357 |
)) |
20547 | 358 |
|
27565 | 359 |
$(BUILD_LIBAWT_XAWT): $(call FindLib, java.base, java) |
20547 | 360 |
|
361 |
$(BUILD_LIBAWT_XAWT): $(BUILD_LIBAWT) |
|
362 |
||
27565 | 363 |
TARGETS += $(BUILD_LIBAWT_XAWT) |
20547 | 364 |
|
365 |
endif |
|
366 |
endif |
|
367 |
||
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25993
diff
changeset
|
368 |
################################################################################ |
20547 | 369 |
|
47217 | 370 |
LIBLCMS_SRC := $(TOPDIR)/src/java.desktop/share/native/liblcms |
27565 | 371 |
LIBLCMS_CPPFLAGS += -I$(SUPPORT_OUTPUTDIR)/headers/java.desktop \ |
47217 | 372 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/java2d \ |
373 |
-I$(TOPDIR)/src/java.desktop/share/native/common/awt/debug \ |
|
25859 | 374 |
$(LIBJAVA_HEADER_FLAGS) \ |
375 |
# |
|
33285 | 376 |
# The fast floor code loses precision. |
377 |
LCMS_CFLAGS=-DCMS_DONT_USE_FAST_FLOOR |
|
24540 | 378 |
|
379 |
ifeq ($(USE_EXTERNAL_LCMS), true) |
|
380 |
# If we're using an external library, we'll just need the wrapper part. |
|
42352
4036fe6d110d
8039103: "explicitly" is misspelled as "explicitely" in configure scripts
ihse
parents:
42340
diff
changeset
|
381 |
# By including it explicitly, all other files will be excluded. |
24540 | 382 |
BUILD_LIBLCMS_INCLUDE_FILES := LCMS.c |
383 |
else |
|
384 |
BUILD_LIBLCMS_INCLUDE_FILES := |
|
385 |
# If we're using the bundled library, we'll need to include it in the |
|
386 |
# include path explicitly. Otherwise the system headers will be used. |
|
25859 | 387 |
LIBLCMS_CPPFLAGS += $(addprefix -I, $(LIBLCMS_SRC)) |
24540 | 388 |
endif |
389 |
||
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
390 |
$(eval $(call SetupJdkLibrary, BUILD_LIBLCMS, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
48766
diff
changeset
|
391 |
NAME := lcms, \ |
25859 | 392 |
SRC := $(LIBLCMS_SRC), \ |
24540 | 393 |
INCLUDE_FILES := $(BUILD_LIBLCMS_INCLUDE_FILES), \ |
20547 | 394 |
OPTIMIZATION := HIGHEST, \ |
395 |
CFLAGS := $(filter-out -xc99=%none, $(CFLAGS_JDKLIB)) \ |
|
30434 | 396 |
$(LIBLCMS_CPPFLAGS) \ |
24540 | 397 |
$(LCMS_CFLAGS), \ |
20547 | 398 |
CFLAGS_solaris := -xc99=no_lib, \ |
399 |
CFLAGS_windows := -DCMS_IS_WINDOWS_, \ |
|
39550
8d587cab45d2
8160294: Some client libraries cannot be built with GCC 6
ysuenaga
parents:
39025
diff
changeset
|
400 |
DISABLED_WARNINGS_gcc := format-nonliteral type-limits misleading-indentation, \ |
29374
f031a666744a
8074096: Disable (most) native warnings in JDK on a per-library basis
ihse
parents:
29006
diff
changeset
|
401 |
DISABLED_WARNINGS_clang := tautological-compare, \ |
f031a666744a
8074096: Disable (most) native warnings in JDK on a per-library basis
ihse
parents:
29006
diff
changeset
|
402 |
DISABLED_WARNINGS_solstudio := E_STATEMENT_NOT_REACHED, \ |
42747
807791cafb87
8170954: non-ASCII characters in lcms and harfbuzz break Windows builds on some locales
dbuck
parents:
42352
diff
changeset
|
403 |
DISABLED_WARNINGS_microsoft := 4819, \ |
20547 | 404 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
405 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
27944 | 406 |
LDFLAGS_unix := -L$(INSTALL_LIBRARIES_HERE), \ |
49640
dd76fcbda95f
8200383: Can't build on SPARC Hotspot with code which use math functions
kvn
parents:
49263
diff
changeset
|
407 |
LIBS_unix := -lawt -ljvm -ljava $(LCMS_LIBS) $(LIBM), \ |
33406 | 408 |
LIBS_windows := $(WIN_AWT_LIB) $(WIN_JAVA_LIB), \ |
35276 | 409 |
)) |
20547 | 410 |
|
27565 | 411 |
TARGETS += $(BUILD_LIBLCMS) |
20547 | 412 |
|
413 |
$(BUILD_LIBLCMS): $(BUILD_LIBAWT) |
|
414 |
||
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25993
diff
changeset
|
415 |
################################################################################ |
20547 | 416 |
|
47217 | 417 |
LIBJAVAJPEG_SRC += $(TOPDIR)/src/java.desktop/share/native/libjavajpeg |
25859 | 418 |
|
49440 | 419 |
# "DISABLED_WARNINGS_gcc := clobbered" rationale: |
20547 | 420 |
# Suppress gcc warnings like "variable might be clobbered by 'longjmp' |
421 |
# or 'vfork'": this warning indicates that some variable is placed to |
|
422 |
# a register by optimized compiler and it's value might be lost on longjmp(). |
|
423 |
# Recommended way to avoid such warning is to declare the variable as |
|
424 |
# volatile to prevent the optimization. However, this approach does not |
|
425 |
# work because we have to declare all variables as volatile in result. |
|
426 |
||
25103 | 427 |
ifeq ($(USE_EXTERNAL_LIBJPEG), true) |
428 |
LIBJPEG_LIBS := -ljpeg |
|
429 |
BUILD_LIBJAVAJPEG_INCLUDE_FILES := \ |
|
33647
2665054d3864
8139932: Typo in makefile changes for 8043805 [Allow using a system-installed libjpeg]
omajid
parents:
33518
diff
changeset
|
430 |
imageioJPEG.c \ |
25103 | 431 |
jpegdecoder.c |
432 |
BUILD_LIBJAVAJPEG_HEADERS := |
|
433 |
else |
|
434 |
LIBJPEG_LIBS := |
|
435 |
BUILD_LIBJAVAJPEG_INCLUDE_FILES := |
|
25859 | 436 |
BUILD_LIBJAVAJPEG_HEADERS := $(addprefix -I, $(LIBJAVAJPEG_SRC)) |
25103 | 437 |
endif |
438 |
||
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
439 |
$(eval $(call SetupJdkLibrary, BUILD_LIBJAVAJPEG, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
48766
diff
changeset
|
440 |
NAME := javajpeg, \ |
25859 | 441 |
SRC := $(LIBJAVAJPEG_SRC), \ |
25103 | 442 |
INCLUDE_FILES := $(BUILD_LIBJAVAJPEG_INCLUDE_FILES), \ |
20547 | 443 |
OPTIMIZATION := HIGHEST, \ |
31159
6f5c7d192b2d
8081447: System JPEG builds include in-tree jpeglib.h, resulting in build failure
andrew
parents:
31157
diff
changeset
|
444 |
CFLAGS := $(CFLAGS_JDKLIB) $(BUILD_LIBJAVAJPEG_HEADERS) \ |
25859 | 445 |
$(LIBJAVA_HEADER_FLAGS) \ |
27565 | 446 |
-I$(SUPPORT_OUTPUTDIR)/headers/java.desktop, \ |
48766
2c4d1993b5f9
8196985: Disable new warnings from GCC 7.3 in jdk libraries
erikj
parents:
48751
diff
changeset
|
447 |
DISABLED_WARNINGS_gcc := clobbered implicit-fallthrough shift-negative-value, \ |
33305
ed708a0e3482
8140223: fix the build with a toolchain with a linker defaulting to ld --as-needed
erikj
parents:
33285
diff
changeset
|
448 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
20547 | 449 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
33406 | 450 |
LIBS := $(LIBJPEG_LIBS) $(JDKLIB_LIBS), \ |
451 |
LIBS_windows := $(WIN_JAVA_LIB) jvm.lib, \ |
|
35276 | 452 |
)) |
20547 | 453 |
|
27565 | 454 |
$(BUILD_LIBJAVAJPEG): $(call FindLib, java.base, java) |
20547 | 455 |
|
27565 | 456 |
TARGETS += $(BUILD_LIBJAVAJPEG) |
20547 | 457 |
|
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25993
diff
changeset
|
458 |
################################################################################ |
20547 | 459 |
|
41132 | 460 |
# Mac and Windows only use the native AWT lib, do not build libawt_headless |
461 |
ifeq ($(findstring $(OPENJDK_TARGET_OS), windows macosx),) |
|
29006
0d72c5ab72d8
8072116: [Solaris] : Fix for 8071710 needs to be updated for build dependency checking
prr
parents:
29002
diff
changeset
|
462 |
|
47217 | 463 |
LIBAWT_HEADLESS_DIRS := $(TOPDIR)/src/java.desktop/unix/native/libawt_headless/awt \ |
464 |
$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/common/awt \ |
|
465 |
$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/common/java2d \ |
|
466 |
$(TOPDIR)/src/java.desktop/share/native/common/java2d \ |
|
467 |
$(TOPDIR)/src/java.desktop/share/native/common/font \ |
|
41132 | 468 |
# |
29006
0d72c5ab72d8
8072116: [Solaris] : Fix for 8071710 needs to be updated for build dependency checking
prr
parents:
29002
diff
changeset
|
469 |
|
41132 | 470 |
LIBAWT_HEADLESS_EXCLUDES := medialib |
471 |
LIBAWT_HEADLESS_CFLAGS := -I$(SUPPORT_OUTPUTDIR)/headers/java.desktop \ |
|
472 |
$(addprefix -I, $(LIBAWT_HEADLESS_DIRS)) \ |
|
47217 | 473 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/awt/image \ |
474 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/awt/image/cvutils \ |
|
475 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/java2d \ |
|
476 |
-I$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/libawt/java2d \ |
|
477 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/java2d/loops \ |
|
478 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/java2d/pipe \ |
|
479 |
-I$(TOPDIR)/src/java.desktop/share/native/common/awt/debug \ |
|
480 |
-I$(TOPDIR)/src/java.desktop/share/native/common/font \ |
|
481 |
-I$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/common/font \ |
|
482 |
-I$(TOPDIR)/src/java.desktop/share/native/common/java2d/opengl \ |
|
483 |
-I$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/common/java2d/opengl \ |
|
41132 | 484 |
$(LIBJAVA_HEADER_FLAGS) \ |
485 |
# |
|
29006
0d72c5ab72d8
8072116: [Solaris] : Fix for 8071710 needs to be updated for build dependency checking
prr
parents:
29002
diff
changeset
|
486 |
|
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
487 |
$(eval $(call SetupJdkLibrary, BUILD_LIBAWT_HEADLESS, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
48766
diff
changeset
|
488 |
NAME := awt_headless, \ |
41132 | 489 |
SRC := $(LIBAWT_HEADLESS_DIRS), \ |
490 |
EXCLUDES := $(LIBAWT_HEADLESS_EXCLUDES), \ |
|
491 |
OPTIMIZATION := LOW, \ |
|
492 |
CFLAGS := $(CFLAGS_JDKLIB) \ |
|
493 |
-DHEADLESS=true \ |
|
494 |
-DPACKAGE_PATH=\"$(PACKAGE_PATH)\" \ |
|
495 |
$(CUPS_CFLAGS) \ |
|
47507
5a270d2dfa5d
8170681: Remove fontconfig header files from JDK source tree
prr
parents:
47314
diff
changeset
|
496 |
$(FONTCONFIG_CFLAGS) \ |
41132 | 497 |
$(X_CFLAGS) \ |
498 |
$(LIBAWT_HEADLESS_CFLAGS), \ |
|
499 |
DISABLED_WARNINGS_xlc := 1506-356, \ |
|
500 |
DISABLED_WARNINGS_solstudio := E_EMPTY_TRANSLATION_UNIT, \ |
|
501 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
|
502 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
503 |
LDFLAGS_unix := -L$(INSTALL_LIBRARIES_HERE), \ |
|
504 |
LIBS_unix := -lawt -ljvm -ljava, \ |
|
505 |
LIBS_linux := $(LIBM) $(LIBDL), \ |
|
49241 | 506 |
LIBS_solaris := $(LIBM) $(LIBDL) $(LIBCXX), \ |
41132 | 507 |
)) |
29006
0d72c5ab72d8
8072116: [Solaris] : Fix for 8071710 needs to be updated for build dependency checking
prr
parents:
29002
diff
changeset
|
508 |
|
41132 | 509 |
# AIX warning explanation: |
510 |
# 1506-356 : (W) Compilation unit is empty. |
|
511 |
# This happens during the headless build |
|
37529
868c7195632c
8154087: Fix AIX and Linux/ppc64le after the integration of the new hotspot build
simonis
parents:
36110
diff
changeset
|
512 |
|
41132 | 513 |
$(BUILD_LIBAWT_HEADLESS): $(BUILD_LIBAWT) |
29006
0d72c5ab72d8
8072116: [Solaris] : Fix for 8071710 needs to be updated for build dependency checking
prr
parents:
29002
diff
changeset
|
514 |
|
41132 | 515 |
TARGETS += $(BUILD_LIBAWT_HEADLESS) |
29006
0d72c5ab72d8
8072116: [Solaris] : Fix for 8071710 needs to be updated for build dependency checking
prr
parents:
29002
diff
changeset
|
516 |
|
0d72c5ab72d8
8072116: [Solaris] : Fix for 8071710 needs to be updated for build dependency checking
prr
parents:
29002
diff
changeset
|
517 |
endif |
0d72c5ab72d8
8072116: [Solaris] : Fix for 8071710 needs to be updated for build dependency checking
prr
parents:
29002
diff
changeset
|
518 |
|
0d72c5ab72d8
8072116: [Solaris] : Fix for 8071710 needs to be updated for build dependency checking
prr
parents:
29002
diff
changeset
|
519 |
################################################################################ |
0d72c5ab72d8
8072116: [Solaris] : Fix for 8071710 needs to be updated for build dependency checking
prr
parents:
29002
diff
changeset
|
520 |
|
49234
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
521 |
ifeq ($(FREETYPE_TO_USE), system) |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
522 |
LIBFREETYPE_CFLAGS := $(FREETYPE_CFLAGS) |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
523 |
LIBFREETYPE_LIBS := $(FREETYPE_LIBS) |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
524 |
else |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
525 |
LIBFREETYPE_SRC := $(TOPDIR)/src/java.desktop/share/native/libfreetype |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
526 |
BUILD_LIBFREETYPE_HEADERS := $(addprefix -I, $(LIBFREETYPE_SRC)/include) |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
527 |
LIBFREETYPE_CFLAGS := $(BUILD_LIBFREETYPE_HEADERS) |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
528 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
529 |
LIBFREETYPE_LIBS := $(SUPPORT_OUTPUTDIR)/native/$(MODULE)/libfreetype/freetype.lib |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
530 |
else |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
531 |
LIBFREETYPE_LIBS := -lfreetype |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
532 |
endif |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
533 |
|
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
534 |
$(eval $(call SetupJdkLibrary, BUILD_LIBFREETYPE, \ |
49234
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
535 |
NAME := freetype, \ |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
536 |
SRC := $(LIBFREETYPE_SRC)/src, \ |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
537 |
OPTIMIZATION := HIGHEST, \ |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
538 |
CFLAGS := $(CFLAGS_JDKLIB) $(BUILD_LIBFREETYPE_HEADERS) \ |
49440 | 539 |
-DFT2_BUILD_LIBRARY $(EXPORT_ALL_SYMBOLS), \ |
49234
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
540 |
DISABLED_WARNINGS_solstudio := \ |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
541 |
E_STATEMENT_NOT_REACHED \ |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
542 |
E_END_OF_LOOP_CODE_NOT_REACHED, \ |
49566
7c224ec572d0
8201267: Disable warnings for VS2017 to enable building
erikj
parents:
49539
diff
changeset
|
543 |
DISABLED_WARNINGS_microsoft := 4267 4244 4312, \ |
49234
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
544 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
545 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
546 |
)) |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
547 |
|
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
548 |
TARGETS += $(BUILD_LIBFREETYPE) |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
549 |
endif |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
550 |
|
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
551 |
########################################################################### |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
552 |
|
47217 | 553 |
LIBFONTMANAGER_SRC := $(TOPDIR)/src/java.desktop/share/native/libfontmanager \ |
554 |
$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/libfontmanager |
|
25859 | 555 |
LIBFONTMANAGER_CFLAGS := \ |
556 |
$(addprefix -I, $(shell $(FIND) \ |
|
557 |
$(LIBFONTMANAGER_SRC) \ |
|
47217 | 558 |
$(TOPDIR)/src/java.desktop/share/native/libawt \ |
559 |
$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/libawt \ |
|
560 |
$(TOPDIR)/src/java.desktop/share/native/common \ |
|
561 |
$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/common -type d)) \ |
|
27565 | 562 |
-I$(SUPPORT_OUTPUTDIR)/headers/java.desktop \ |
25859 | 563 |
$(LIBJAVA_HEADER_FLAGS) \ |
564 |
# |
|
565 |
||
34414
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
566 |
#### Begin harfbuzz configuration |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
567 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
568 |
HARFBUZZ_CFLAGS := -DHAVE_OT -DHAVE_FALLBACK -DHAVE_UCDN |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
569 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
570 |
ifneq ($(OPENJDK_TARGET_OS), windows) |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
571 |
HARFBUZZ_CFLAGS += -DGETPAGESIZE -DHAVE_MPROTECT -DHAVE_PTHREAD \ |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
572 |
-DHAVE_SYSCONF -DHAVE_SYS_MMAN_H -DHAVE_UNISTD_H |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
573 |
endif |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
574 |
ifneq (, $(findstring $(OPENJDK_TARGET_OS), linux macosx)) |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
575 |
HARFBUZZ_CFLAGS += -DHAVE_INTEL_ATOMIC_PRIMITIVES |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
576 |
endif |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
577 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
578 |
HARFBUZZ_CFLAGS += -DHAVE_SOLARIS_ATOMIC_OPS |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
579 |
endif |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
580 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
581 |
HARFBUZZ_CFLAGS += -DHAVE_CORETEXT |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
582 |
endif |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
583 |
ifneq ($(OPENJDK_TARGET_OS), macosx) |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
584 |
LIBFONTMANAGER_EXCLUDE_FILES += harfbuzz/hb-coretext.cc |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
585 |
endif |
34432 | 586 |
# hb-ft.cc is not presently needed, and requires freetype 2.4.2 or later. |
587 |
LIBFONTMANAGER_EXCLUDE_FILES += harfbuzz/hb-ft.cc |
|
34414
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
588 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
589 |
LIBFONTMANAGER_CFLAGS += $(HARFBUZZ_CFLAGS) |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
590 |
|
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
591 |
#### End harfbuzz configuration |
e496a8d8fc8a
8143177: Integrate harfbuzz opentype layout engine per JEP 258
prr
parents:
33647
diff
changeset
|
592 |
|
49234
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
593 |
LIBFONTMANAGER_CFLAGS += $(LIBFREETYPE_CFLAGS) |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
594 |
BUILD_LIBFONTMANAGER_FONTLIB += $(LIBFREETYPE_LIBS) |
20547 | 595 |
|
596 |
LIBFONTMANAGER_OPTIMIZATION := HIGH |
|
597 |
||
598 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
599 |
LIBFONTMANAGER_EXCLUDE_FILES += X11FontScaler.c \ |
|
600 |
X11TextRenderer.c |
|
601 |
LIBFONTMANAGER_OPTIMIZATION := HIGHEST |
|
47217 | 602 |
LIBFONTMANAGER_CFLAGS += -I$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/libawt/windows |
21130 | 603 |
else ifeq ($(OPENJDK_TARGET_OS), macosx) |
604 |
LIBFONTMANAGER_EXCLUDE_FILES += X11FontScaler.c \ |
|
605 |
X11TextRenderer.c \ |
|
606 |
fontpath.c \ |
|
607 |
lcdglyph.c |
|
20547 | 608 |
else |
609 |
LIBFONTMANAGER_EXCLUDE_FILES += fontpath.c \ |
|
610 |
lcdglyph.c |
|
611 |
endif |
|
612 |
||
25859 | 613 |
LIBFONTMANAGER_CFLAGS += $(FONT_HEADERS) $(X_CFLAGS) -DLE_STANDALONE -DHEADLESS |
20547 | 614 |
|
35711
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
615 |
ifeq ($(TOOLCHAIN_TYPE), gcc) |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
616 |
# Turn off all warnings for sunFont.c. This is needed because the specific warning |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
617 |
# about discarding 'const' qualifier cannot be turned off individually. |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
618 |
BUILD_LIBFONTMANAGER_sunFont.c_CFLAGS := -w |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
619 |
# Turn off aliasing with GCC for ExtensionSubtables.cpp |
20547 | 620 |
BUILD_LIBFONTMANAGER_ExtensionSubtables.cpp_CXXFLAGS := -fno-strict-aliasing |
621 |
endif |
|
622 |
||
49693
fa23ea24dade
8196516: libfontmanager must be built with LDFLAGS allowing unresolved symbols
sgehwolf
parents:
49566
diff
changeset
|
623 |
# LDFLAGS clarification: |
fa23ea24dade
8196516: libfontmanager must be built with LDFLAGS allowing unresolved symbols
sgehwolf
parents:
49566
diff
changeset
|
624 |
# Filter relevant linker flags disallowing unresolved symbols as we cannot |
fa23ea24dade
8196516: libfontmanager must be built with LDFLAGS allowing unresolved symbols
sgehwolf
parents:
49566
diff
changeset
|
625 |
# build-time decide to which library to link against (libawt_headless or |
fa23ea24dade
8196516: libfontmanager must be built with LDFLAGS allowing unresolved symbols
sgehwolf
parents:
49566
diff
changeset
|
626 |
# libawt_xawt). See JDK-8196516 for details. |
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
627 |
$(eval $(call SetupJdkLibrary, BUILD_LIBFONTMANAGER, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
48766
diff
changeset
|
628 |
NAME := fontmanager, \ |
25859 | 629 |
SRC := $(LIBFONTMANAGER_SRC), \ |
20547 | 630 |
EXCLUDE_FILES := $(LIBFONTMANAGER_EXCLUDE_FILES) \ |
631 |
AccelGlyphCache.c, \ |
|
29931
64e274ed6567
8077824: Introduce DefineNativeToolchain to handle toolchain configurations
erikj
parents:
29734
diff
changeset
|
632 |
TOOLCHAIN := TOOLCHAIN_LINK_CXX, \ |
25859 | 633 |
CFLAGS := $(CFLAGS_JDKLIB) $(LIBFONTMANAGER_CFLAGS), \ |
634 |
CXXFLAGS := $(CXXFLAGS_JDKLIB) $(LIBFONTMANAGER_CFLAGS), \ |
|
20547 | 635 |
OPTIMIZATION := $(LIBFONTMANAGER_OPTIMIZATION), \ |
25859 | 636 |
CFLAGS_windows = -DCC_NOEX, \ |
37529
868c7195632c
8154087: Fix AIX and Linux/ppc64le after the integration of the new hotspot build
simonis
parents:
36110
diff
changeset
|
637 |
WARNINGS_AS_ERRORS_xlc := false, \ |
35711
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
638 |
DISABLED_WARNINGS_gcc := sign-compare int-to-pointer-cast \ |
48766
2c4d1993b5f9
8196985: Disable new warnings from GCC 7.3 in jdk libraries
erikj
parents:
48751
diff
changeset
|
639 |
type-limits missing-field-initializers implicit-fallthrough, \ |
35711
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
640 |
DISABLED_WARNINGS_CXX_gcc := reorder delete-non-virtual-dtor strict-overflow \ |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
641 |
maybe-uninitialized, \ |
30434 | 642 |
DISABLED_WARNINGS_clang := unused-value incompatible-pointer-types \ |
643 |
tautological-constant-out-of-range-compare int-to-pointer-cast, \ |
|
35711
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
644 |
DISABLED_WARNINGS_C_solstudio = \ |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
645 |
E_INTEGER_OVERFLOW_DETECTED \ |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
646 |
E_ARG_INCOMPATIBLE_WITH_ARG_L \ |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
647 |
E_ENUM_VAL_OVERFLOWS_INT_MAX, \ |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
648 |
DISABLED_WARNINGS_CXX_solstudio := \ |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
649 |
truncwarn wvarhidenmem wvarhidemem wbadlkginit identexpected \ |
d08f24178498
8148629: Disable remaining warnings in awt/fontmanager
erikj
parents:
35276
diff
changeset
|
650 |
hidevf w_novirtualdescr arrowrtn2, \ |
48274 | 651 |
DISABLED_WARNINGS_microsoft := 4267 4244 4018 4090 4996 4146 4334 4819 4101, \ |
49693
fa23ea24dade
8196516: libfontmanager must be built with LDFLAGS allowing unresolved symbols
sgehwolf
parents:
49566
diff
changeset
|
652 |
LDFLAGS := $(subst -Xlinker -z -Xlinker defs,, \ |
fa23ea24dade
8196516: libfontmanager must be built with LDFLAGS allowing unresolved symbols
sgehwolf
parents:
49566
diff
changeset
|
653 |
$(subst -Wl$(COMMA)-z$(COMMA)defs,,$(LDFLAGS_JDKLIB))) $(LDFLAGS_CXX_JDK) \ |
20547 | 654 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
27944 | 655 |
LDFLAGS_unix := -L$(INSTALL_LIBRARIES_HERE), \ |
49991
033f3118dc67
8201524: [AIX] Don't link libfontmanager against libawt_headless
simonis
parents:
49697
diff
changeset
|
656 |
LDFLAGS_aix := -Wl$(COMMA)-berok, \ |
33406 | 657 |
LIBS := $(BUILD_LIBFONTMANAGER_FONTLIB), \ |
658 |
LIBS_unix := -lawt -ljava -ljvm $(LIBM) $(LIBCXX), \ |
|
49533 | 659 |
LIBS_macosx := -lawt_lwawt -framework CoreText -framework CoreFoundation \ |
660 |
-framework CoreGraphics, \ |
|
33406 | 661 |
LIBS_windows := $(WIN_JAVA_LIB) advapi32.lib user32.lib gdi32.lib \ |
20547 | 662 |
$(WIN_AWT_LIB), \ |
35276 | 663 |
)) |
20547 | 664 |
|
48040
26f1193f1348
8192876: MacOS build fails intermittently after JDK-8139653
erikj
parents:
48032
diff
changeset
|
665 |
$(BUILD_LIBFONTMANAGER): $(BUILD_LIBAWT) |
26f1193f1348
8192876: MacOS build fails intermittently after JDK-8139653
erikj
parents:
48032
diff
changeset
|
666 |
|
49533 | 667 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
49539
af97dd04d913
8201221: JDK-8199608 introduced a build race on macosx
erikj
parents:
49533
diff
changeset
|
668 |
$(BUILD_LIBFONTMANAGER): $(call FindLib, java.desktop, awt_lwawt) |
49533 | 669 |
endif |
670 |
||
49234
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
671 |
ifeq ($(FREETYPE_TO_USE), bundled) |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
672 |
$(BUILD_LIBFONTMANAGER): $(BUILD_LIBFREETYPE) |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
673 |
endif |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49106
diff
changeset
|
674 |
|
48040
26f1193f1348
8192876: MacOS build fails intermittently after JDK-8139653
erikj
parents:
48032
diff
changeset
|
675 |
TARGETS += $(BUILD_LIBFONTMANAGER) |
20547 | 676 |
|
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25993
diff
changeset
|
677 |
################################################################################ |
20547 | 678 |
|
679 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
47217 | 680 |
LIBJAWT_SRC := $(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/libjawt |
681 |
LIBJAWT_CFLAGS := -I$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/libawt/windows \ |
|
682 |
-I$(TOPDIR)/src/java.desktop/share/native/common/awt/debug \ |
|
683 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/java2d \ |
|
684 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/awt/image/cvutils \ |
|
685 |
-I$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/libawt/java2d/windows \ |
|
27565 | 686 |
-I$(SUPPORT_OUTPUTDIR)/headers/java.desktop \ |
47217 | 687 |
-I$(TOPDIR)/src/java.desktop/windows/native/include \ |
688 |
-I$(TOPDIR)/src/java.desktop/share/native/include \ |
|
25859 | 689 |
$(LIBJAVA_HEADER_FLAGS) \ |
690 |
# |
|
691 |
||
20547 | 692 |
ifeq ($(OPENJDK_TARGET_CPU), x86) |
693 |
KERNEL32_LIB := kernel32.lib |
|
694 |
endif |
|
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
695 |
$(eval $(call SetupJdkLibrary, BUILD_LIBJAWT, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
48766
diff
changeset
|
696 |
NAME := jawt, \ |
25859 | 697 |
SRC := $(LIBJAWT_SRC), \ |
698 |
INCLUDE_FILES := $(LIBJAWT_INCLUDE_FILES), \ |
|
20547 | 699 |
OPTIMIZATION := LOW, \ |
700 |
CFLAGS := $(CXXFLAGS_JDKLIB) \ |
|
701 |
-EHsc -DUNICODE -D_UNICODE \ |
|
25859 | 702 |
$(LIBJAWT_CFLAGS), \ |
33406 | 703 |
LDFLAGS := $(LDFLAGS_JDKLIB) $(LDFLAGS_CXX_JDK), \ |
704 |
LIBS := $(JDKLIB_LIBS) $(KERNEL32_LIB) advapi32.lib $(WIN_AWT_LIB), \ |
|
35276 | 705 |
)) |
20547 | 706 |
|
707 |
$(BUILD_LIBJAWT): $(BUILD_LIBAWT) |
|
708 |
||
45781
0491f891667c
8183166: lib\jawt.lib is missing from JDK 9 distribution for Windows
erikj
parents:
43806
diff
changeset
|
709 |
$(eval $(call SetupCopyFiles, COPY_JAWT_LIB, \ |
49263
78af880eec61
8199749: Debug symbols are not copied to exploded image on Mac
erikj
parents:
49261
diff
changeset
|
710 |
FILES := $(BUILD_LIBJAWT_IMPORT_LIBRARY), \ |
45781
0491f891667c
8183166: lib\jawt.lib is missing from JDK 9 distribution for Windows
erikj
parents:
43806
diff
changeset
|
711 |
DEST := $(SUPPORT_OUTPUTDIR)/modules_libs/$(MODULE), \ |
0491f891667c
8183166: lib\jawt.lib is missing from JDK 9 distribution for Windows
erikj
parents:
43806
diff
changeset
|
712 |
)) |
20547 | 713 |
|
45781
0491f891667c
8183166: lib\jawt.lib is missing from JDK 9 distribution for Windows
erikj
parents:
43806
diff
changeset
|
714 |
$(COPY_JAWT_LIB): $(BUILD_LIBJAWT) |
0491f891667c
8183166: lib\jawt.lib is missing from JDK 9 distribution for Windows
erikj
parents:
43806
diff
changeset
|
715 |
|
0491f891667c
8183166: lib\jawt.lib is missing from JDK 9 distribution for Windows
erikj
parents:
43806
diff
changeset
|
716 |
TARGETS += $(COPY_JAWT_LIB) |
20547 | 717 |
|
718 |
else # OPENJDK_TARGET_OS not windows |
|
719 |
||
720 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
47217 | 721 |
LIBJAWT_SRC := $(TOPDIR)/src/java.desktop/macosx/native/libjawt |
25859 | 722 |
else |
47217 | 723 |
LIBJAWT_SRC := $(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/libjawt |
25859 | 724 |
endif |
725 |
LIBJAWT_CFLAGS := \ |
|
47217 | 726 |
-I$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/common/awt \ |
727 |
-I$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS)/native/include \ |
|
728 |
-I$(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/include \ |
|
729 |
-I$(TOPDIR)/src/java.desktop/share/native/include \ |
|
25859 | 730 |
$(LIBJAVA_HEADER_FLAGS) \ |
731 |
# |
|
732 |
||
733 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
20547 | 734 |
JAWT_LIBS := -lawt_lwawt |
21130 | 735 |
else |
736 |
JAWT_LIBS := |
|
737 |
ifneq ($(OPENJDK_TARGET_OS), solaris) |
|
738 |
JAWT_LIBS += -lawt |
|
739 |
endif |
|
41132 | 740 |
ifeq ($(ENABLE_HEADLESS_ONLY), false) |
21130 | 741 |
JAWT_LIBS += -lawt_xawt |
742 |
else |
|
743 |
JAWT_LIBS += -lawt_headless |
|
744 |
HEADLESS_CFLAG += -DHEADLESS |
|
745 |
endif |
|
20547 | 746 |
endif |
747 |
||
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
748 |
$(eval $(call SetupJdkLibrary, BUILD_LIBJAWT, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
48766
diff
changeset
|
749 |
NAME := jawt, \ |
25859 | 750 |
SRC := $(LIBJAWT_SRC), \ |
20547 | 751 |
INCLUDE_FILES := $(JAWT_FILES), \ |
752 |
OPTIMIZATION := LOW, \ |
|
25859 | 753 |
CFLAGS := $(CFLAGS_JDKLIB) \ |
754 |
$(LIBJAWT_CFLAGS), \ |
|
20547 | 755 |
CFLAGS_linux := $(HEADLESS_CFLAG), \ |
25859 | 756 |
CFLAGS_macosx := $(LIBJAWT_CFLAGS_macosx), \ |
20547 | 757 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
758 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
27944 | 759 |
LDFLAGS_unix := -L$(INSTALL_LIBRARIES_HERE), \ |
34695
7a6cc9982d22
8142907: Integration of minor fixes from the build-infra project
ihse
parents:
34432
diff
changeset
|
760 |
LDFLAGS_macosx := -Wl$(COMMA)-rpath$(COMMA)@loader_path, \ |
33406 | 761 |
LIBS_unix := $(JAWT_LIBS) $(JDKLIB_LIBS), \ |
762 |
LIBS_solaris := $(X_LIBS) -lXrender, \ |
|
763 |
LIBS_macosx := -framework Cocoa, \ |
|
35276 | 764 |
)) |
20547 | 765 |
|
41132 | 766 |
ifeq ($(ENABLE_HEADLESS_ONLY), false) |
20547 | 767 |
$(BUILD_LIBJAWT): $(BUILD_LIBAWT_XAWT) |
768 |
else |
|
769 |
$(BUILD_LIBJAWT): $(INSTALL_LIBRARIES_HERE)/$(LIBRARY_PREFIX)awt_headless$(SHARED_LIBRARY_SUFFIX) |
|
770 |
endif |
|
771 |
||
772 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
773 |
$(BUILD_LIBJAWT): $(INSTALL_LIBRARIES_HERE)/$(LIBRARY_PREFIX)awt_lwawt$(SHARED_LIBRARY_SUFFIX) |
|
774 |
endif |
|
775 |
||
776 |
endif # OPENJDK_TARGET_OS |
|
777 |
||
27565 | 778 |
TARGETS += $(BUILD_LIBJAWT) |
20547 | 779 |
|
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25993
diff
changeset
|
780 |
################################################################################ |
12892 | 781 |
|
41132 | 782 |
ifeq ($(ENABLE_HEADLESS_ONLY), false) |
25859 | 783 |
|
20547 | 784 |
LIBSPLASHSCREEN_DIRS := \ |
47217 | 785 |
$(TOPDIR)/src/java.desktop/share/native/libjavajpeg \ |
786 |
$(TOPDIR)/src/java.desktop/share/native/libsplashscreen \ |
|
25859 | 787 |
# |
20547 | 788 |
|
789 |
ifeq ($(USE_EXTERNAL_LIBGIF), true) |
|
33406 | 790 |
GIFLIB_LIBS := -lgif |
25859 | 791 |
LIBSPLASHSCREEN_EXCLUDES := giflib |
20547 | 792 |
else |
47217 | 793 |
LIBSPLASHSCREEN_CFLAGS += -I$(TOPDIR)/src/java.desktop/share/native/libsplashscreen/giflib |
20547 | 794 |
endif |
795 |
||
25103 | 796 |
ifeq ($(USE_EXTERNAL_LIBJPEG), true) |
33406 | 797 |
LIBJPEG_LIBS := -ljpeg |
25103 | 798 |
else |
47217 | 799 |
LIBSPLASHSCREEN_DIRS += $(TOPDIR)/src/java.desktop/share/native/libjavajpeg |
800 |
LIBJPEG_CFLAGS := -I$(TOPDIR)/src/java.desktop/share/native/libjavajpeg |
|
25103 | 801 |
endif |
802 |
||
23305 | 803 |
ifeq ($(USE_EXTERNAL_LIBPNG), false) |
47217 | 804 |
LIBSPLASHSCREEN_DIRS += $(TOPDIR)/src/java.desktop/share/native/libsplashscreen/libpng |
25859 | 805 |
else |
806 |
LIBSPLASHSCREEN_EXCLUDES += libpng |
|
23305 | 807 |
endif |
808 |
||
20547 | 809 |
ifneq ($(OPENJDK_TARGET_OS), macosx) |
47217 | 810 |
LIBSPLASHSCREEN_DIRS += $(TOPDIR)/src/java.desktop/$(OPENJDK_TARGET_OS_TYPE)/native/libsplashscreen |
20547 | 811 |
else |
47217 | 812 |
LIBSPLASHSCREEN_DIRS += $(TOPDIR)/src/java.desktop/macosx/native/libsplashscreen |
20547 | 813 |
endif |
814 |
||
36953 | 815 |
ifneq ($(filter $(OPENJDK_TARGET_OS),linux solaris aix), ) |
47217 | 816 |
LIBSPLASHSCREEN_DIRS += $(TOPDIR)/src/java.desktop/unix/native/common/awt/systemscale |
36869 | 817 |
endif |
36880
3a05117c7611
8151770: 9-client windows builds fail on windows since make file change for 8145174
erikj
parents:
36869
diff
changeset
|
818 |
|
36907 | 819 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
47217 | 820 |
LIBSPLASHSCREEN_DIRS += $(TOPDIR)/src/java.desktop/windows/native/common/awt/systemscale |
42340
bf1c934665a9
8056215: AWT source dirs should only point to java2d, not below
ihse
parents:
42194
diff
changeset
|
821 |
endif |
30325
1472b22475f2
8078245: AARCH64: JDK fails to build due to undefined symbol in libpng
enevill
parents:
29931
diff
changeset
|
822 |
LIBSPLASHSCREEN_CFLAGS += -DSPLASHSCREEN -DPNG_NO_MMX_CODE -DPNG_ARM_NEON_OPT=0 \ |
25859 | 823 |
$(addprefix -I, $(LIBSPLASHSCREEN_DIRS)) \ |
824 |
$(LIBJAVA_HEADER_FLAGS) \ |
|
825 |
# |
|
20547 | 826 |
|
827 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
828 |
LIBSPLASHSCREEN_CFLAGS += -DWITH_MACOSX |
|
47217 | 829 |
LIBSPLASHSCREEN_CFLAGS += -I$(TOPDIR)/src/java.desktop/macosx/native/libosxapp |
20547 | 830 |
|
25859 | 831 |
BUILD_LIBSPLASHSCREEN_java_awt_SplashScreen.c_CFLAGS := -x objective-c -O0 |
832 |
BUILD_LIBSPLASHSCREEN_splashscreen_gfx_impl.c_CFLAGS := -x objective-c -O0 |
|
833 |
BUILD_LIBSPLASHSCREEN_splashscreen_gif.c_CFLAGS := -x objective-c -O0 |
|
834 |
BUILD_LIBSPLASHSCREEN_splashscreen_impl.c_CFLAGS := -x objective-c -O0 |
|
835 |
BUILD_LIBSPLASHSCREEN_splashscreen_jpeg.c_CFLAGS := -x objective-c -O0 |
|
836 |
BUILD_LIBSPLASHSCREEN_splashscreen_png.c_CFLAGS := -x objective-c -O0 |
|
837 |
BUILD_LIBSPLASHSCREEN_splashscreen_sys.m_CFLAGS := -O0 |
|
20547 | 838 |
|
20901
70f69e624fc9
8026888: Licensee build failure due to wrong libs being called
erikj
parents:
20899
diff
changeset
|
839 |
else ifeq ($(OPENJDK_TARGET_OS), windows) |
70f69e624fc9
8026888: Licensee build failure due to wrong libs being called
erikj
parents:
20899
diff
changeset
|
840 |
LIBSPLASHSCREEN_CFLAGS += -DWITH_WIN32 |
20547 | 841 |
else |
20901
70f69e624fc9
8026888: Licensee build failure due to wrong libs being called
erikj
parents:
20899
diff
changeset
|
842 |
LIBSPLASHSCREEN_CFLAGS += -DWITH_X11 $(X_CFLAGS) |
20547 | 843 |
endif |
844 |
||
33406 | 845 |
LIBSPLASHSCREEN_LIBS := |
20547 | 846 |
|
48751
54f355e65415
8196803: Fix build warnings in jdk libraries with Xcode 9
erikj
parents:
48731
diff
changeset
|
847 |
ifeq ($(USE_EXTERNAL_LIBZ), false) |
47217 | 848 |
LIBSPLASHSCREEN_DIRS += $(TOPDIR)/src/java.base/share/native/libzip/zlib |
48751
54f355e65415
8196803: Fix build warnings in jdk libraries with Xcode 9
erikj
parents:
48731
diff
changeset
|
849 |
else |
54f355e65415
8196803: Fix build warnings in jdk libraries with Xcode 9
erikj
parents:
48731
diff
changeset
|
850 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
54f355e65415
8196803: Fix build warnings in jdk libraries with Xcode 9
erikj
parents:
48731
diff
changeset
|
851 |
ifeq ($(USE_EXTERNAL_LIBPNG), false) |
54f355e65415
8196803: Fix build warnings in jdk libraries with Xcode 9
erikj
parents:
48731
diff
changeset
|
852 |
# When building our own libpng and using an external libz, we need to |
54f355e65415
8196803: Fix build warnings in jdk libraries with Xcode 9
erikj
parents:
48731
diff
changeset
|
853 |
# inject our own libz.h to tweak the exported ZLIB_VERNUM macro. See |
54f355e65415
8196803: Fix build warnings in jdk libraries with Xcode 9
erikj
parents:
48731
diff
changeset
|
854 |
# $(TOPDIR)/src/java.desktop/macosx/native/libsplashscreen/libpng/zlib.h |
54f355e65415
8196803: Fix build warnings in jdk libraries with Xcode 9
erikj
parents:
48731
diff
changeset
|
855 |
# for details. |
54f355e65415
8196803: Fix build warnings in jdk libraries with Xcode 9
erikj
parents:
48731
diff
changeset
|
856 |
LIBSPLASHSCREEN_CFLAGS += -iquote $(TOPDIR)/src/java.desktop/macosx/native/libsplashscreen/libpng |
54f355e65415
8196803: Fix build warnings in jdk libraries with Xcode 9
erikj
parents:
48731
diff
changeset
|
857 |
endif |
54f355e65415
8196803: Fix build warnings in jdk libraries with Xcode 9
erikj
parents:
48731
diff
changeset
|
858 |
endif |
20547 | 859 |
endif |
860 |
||
861 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
33406 | 862 |
LIBSPLASHSCREEN_LIBS += \ |
27565 | 863 |
$(LIBM) -lpthread -liconv -losxapp \ |
20547 | 864 |
-framework ApplicationServices \ |
865 |
-framework Foundation \ |
|
866 |
-framework Cocoa \ |
|
867 |
-framework JavaNativeFoundation |
|
20901
70f69e624fc9
8026888: Licensee build failure due to wrong libs being called
erikj
parents:
20899
diff
changeset
|
868 |
else ifeq ($(OPENJDK_TARGET_OS), windows) |
36907 | 869 |
LIBSPLASHSCREEN_LIBS += kernel32.lib user32.lib gdi32.lib delayimp.lib $(WIN_JAVA_LIB) jvm.lib |
23592
35b16ae6b4f4
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
23310
diff
changeset
|
870 |
else |
39844
a3cc7e551a48
8149115: [hidpi] Linux: display-wise scaling factor should probably be taken into account
ssadetsky
parents:
39550
diff
changeset
|
871 |
LIBSPLASHSCREEN_LIBS += $(X_LIBS) -lX11 -lXext $(LIBM) -lpthread -ldl |
20901
70f69e624fc9
8026888: Licensee build failure due to wrong libs being called
erikj
parents:
20899
diff
changeset
|
872 |
endif |
20547 | 873 |
|
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
874 |
$(eval $(call SetupJdkLibrary, BUILD_LIBSPLASHSCREEN, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
48766
diff
changeset
|
875 |
NAME := splashscreen, \ |
20547 | 876 |
SRC := $(LIBSPLASHSCREEN_DIRS), \ |
877 |
EXCLUDE_FILES := imageioJPEG.c jpegdecoder.c pngtest.c, \ |
|
25859 | 878 |
EXCLUDES := $(LIBSPLASHSCREEN_EXCLUDES), \ |
20547 | 879 |
OPTIMIZATION := LOW, \ |
23305 | 880 |
CFLAGS := $(LIBSPLASHSCREEN_CFLAGS) $(CFLAGS_JDKLIB) \ |
48751
54f355e65415
8196803: Fix build warnings in jdk libraries with Xcode 9
erikj
parents:
48731
diff
changeset
|
881 |
$(GIFLIB_CFLAGS) $(LIBJPEG_CFLAGS) $(PNG_CFLAGS) $(LIBZ_CFLAGS), \ |
48766
2c4d1993b5f9
8196985: Disable new warnings from GCC 7.3 in jdk libraries
erikj
parents:
48751
diff
changeset
|
882 |
DISABLED_WARNINGS_gcc := sign-compare type-limits unused-result \ |
2c4d1993b5f9
8196985: Disable new warnings from GCC 7.3 in jdk libraries
erikj
parents:
48751
diff
changeset
|
883 |
maybe-uninitialized shift-negative-value implicit-fallthrough, \ |
29374
f031a666744a
8074096: Disable (most) native warnings in JDK on a per-library basis
ihse
parents:
29006
diff
changeset
|
884 |
DISABLED_WARNINGS_clang := incompatible-pointer-types, \ |
32408
97230ec16697
8134408: Disable warnings for jdk libraries triggered by SS12u4
erikj
parents:
31159
diff
changeset
|
885 |
DISABLED_WARNINGS_solstudio := E_NEWLINE_NOT_LAST E_DECLARATION_IN_CODE \ |
97230ec16697
8134408: Disable warnings for jdk libraries triggered by SS12u4
erikj
parents:
31159
diff
changeset
|
886 |
E_STATEMENT_NOT_REACHED, \ |
30502
50552a5900a2
8080317: Disable warning treated as error for signed/unsigned comparison in building splashscreen
prr
parents:
30439
diff
changeset
|
887 |
DISABLED_WARNINGS_microsoft := 4018 4244 4267, \ |
49239 | 888 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
20547 | 889 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
49239 | 890 |
LDFLAGS_macosx := -L$(INSTALL_LIBRARIES_HERE), \ |
891 |
LDFLAGS_windows := -delayload:user32.dll, \ |
|
48751
54f355e65415
8196803: Fix build warnings in jdk libraries with Xcode 9
erikj
parents:
48731
diff
changeset
|
892 |
LIBS := $(JDKLIB_LIBS) $(LIBSPLASHSCREEN_LIBS) $(LIBZ_LIBS) \ |
54f355e65415
8196803: Fix build warnings in jdk libraries with Xcode 9
erikj
parents:
48731
diff
changeset
|
893 |
$(GIFLIB_LIBS) $(LIBJPEG_LIBS) $(PNG_LIBS), \ |
33518
3f1644328d06
8141290: AIX: fix build after '8140661: Rename LDFLAGS_SUFFIX to LIBS'
simonis
parents:
33406
diff
changeset
|
894 |
LIBS_aix := -liconv, \ |
35276 | 895 |
)) |
20547 | 896 |
|
27565 | 897 |
TARGETS += $(BUILD_LIBSPLASHSCREEN) |
20547 | 898 |
|
899 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
49261
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
900 |
$(BUILD_LIBSPLASHSCREEN): $(call FindLib, java.desktop, osxapp) |
20547 | 901 |
endif |
902 |
||
903 |
endif |
|
904 |
||
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25993
diff
changeset
|
905 |
################################################################################ |
20547 | 906 |
|
907 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
908 |
||
25859 | 909 |
LIBAWT_LWAWT_DIRS := \ |
47217 | 910 |
$(TOPDIR)/src/java.desktop/macosx/native/libawt_lwawt \ |
911 |
$(TOPDIR)/src/java.desktop/unix/native/common/awt \ |
|
912 |
$(TOPDIR)/src/java.desktop/share/native/common/font \ |
|
913 |
$(TOPDIR)/src/java.desktop/share/native/common/java2d \ |
|
25859 | 914 |
# |
20547 | 915 |
|
25859 | 916 |
LIBAWT_LWAWT_CFLAGS := \ |
917 |
$(addprefix -I, $(LIBAWT_LWAWT_DIRS)) \ |
|
27565 | 918 |
-I$(SUPPORT_OUTPUTDIR)/headers/java.desktop \ |
47217 | 919 |
-I$(TOPDIR)/src/java.desktop/macosx/native/libawt_lwawt/awt \ |
920 |
-I$(TOPDIR)/src/java.desktop/unix/native/libawt_xawt/awt \ |
|
921 |
-I$(TOPDIR)/src/java.desktop/macosx/native/libawt_lwawt/font \ |
|
922 |
-I$(TOPDIR)/src/java.desktop/macosx/native/libawt_lwawt/java2d/opengl \ |
|
923 |
-I$(TOPDIR)/src/java.desktop/share/native/common/awt/debug \ |
|
924 |
-I$(TOPDIR)/src/java.desktop/share/native/common/java2d/opengl \ |
|
925 |
-I$(TOPDIR)/src/java.desktop/macosx/native/include \ |
|
926 |
-I$(TOPDIR)/src/java.desktop/share/native/include \ |
|
927 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/awt/image \ |
|
928 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/awt/image/cvutils \ |
|
929 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/java2d \ |
|
930 |
-I$(TOPDIR)/src/java.desktop/unix/native/libawt/java2d \ |
|
931 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/java2d/loops \ |
|
932 |
-I$(TOPDIR)/src/java.desktop/share/native/libawt/java2d/pipe \ |
|
933 |
-I$(TOPDIR)/src/java.desktop/share/native/libmlib_image/ \ |
|
934 |
-I$(TOPDIR)/src/java.desktop/macosx/native/libosxapp \ |
|
25859 | 935 |
$(LIBJAVA_HEADER_FLAGS) \ |
936 |
# |
|
20547 | 937 |
|
26741 | 938 |
LIBAWT_LWAWT_EXFILES := fontpath.c awt_Font.c X11Color.c |
47217 | 939 |
LIBAWT_LWAWT_EXCLUDES := $(TOPDIR)/src/java.desktop/unix/native/common/awt/medialib |
20547 | 940 |
|
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
941 |
$(eval $(call SetupJdkLibrary, BUILD_LIBAWT_LWAWT, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
48766
diff
changeset
|
942 |
NAME := awt_lwawt, \ |
20547 | 943 |
SRC := $(LIBAWT_LWAWT_DIRS), \ |
944 |
INCLUDE_FILES := $(LIBAWT_LWAWT_FILES), \ |
|
25859 | 945 |
EXCLUDE_FILES := $(LIBAWT_LWAWT_EXFILES), \ |
946 |
EXCLUDES := $(LIBAWT_LWAWT_EXCLUDES), \ |
|
20547 | 947 |
OPTIMIZATION := LOW, \ |
948 |
CFLAGS := $(CFLAGS_JDKLIB) \ |
|
20901
70f69e624fc9
8026888: Licensee build failure due to wrong libs being called
erikj
parents:
20899
diff
changeset
|
949 |
$(X_CFLAGS) \ |
70f69e624fc9
8026888: Licensee build failure due to wrong libs being called
erikj
parents:
20899
diff
changeset
|
950 |
$(X_LIBS) \ |
25859 | 951 |
$(LIBAWT_LWAWT_CFLAGS), \ |
32872 | 952 |
DISABLED_WARNINGS_clang := incomplete-implementation enum-conversion \ |
29374
f031a666744a
8074096: Disable (most) native warnings in JDK on a per-library basis
ihse
parents:
29006
diff
changeset
|
953 |
deprecated-declarations objc-method-access bitwise-op-parentheses \ |
f031a666744a
8074096: Disable (most) native warnings in JDK on a per-library basis
ihse
parents:
29006
diff
changeset
|
954 |
incompatible-pointer-types parentheses-equality extra-tokens, \ |
20547 | 955 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
27565 | 956 |
$(call SET_SHARED_LIBRARY_ORIGIN) \ |
27944 | 957 |
-L$(INSTALL_LIBRARIES_HERE), \ |
33406 | 958 |
LIBS := -lawt -lmlib_image -losxapp -ljvm $(LIBM) \ |
20547 | 959 |
-framework Accelerate \ |
960 |
-framework ApplicationServices \ |
|
961 |
-framework AudioToolbox \ |
|
962 |
-framework Carbon \ |
|
963 |
-framework Cocoa \ |
|
964 |
-framework Security \ |
|
965 |
-framework ExceptionHandling \ |
|
966 |
-framework JavaNativeFoundation \ |
|
967 |
-framework JavaRuntimeSupport \ |
|
968 |
-framework OpenGL \ |
|
969 |
-framework QuartzCore -ljava, \ |
|
35276 | 970 |
)) |
20547 | 971 |
|
27565 | 972 |
TARGETS += $(BUILD_LIBAWT_LWAWT) |
20547 | 973 |
|
974 |
$(BUILD_LIBAWT_LWAWT): $(BUILD_LIBAWT) |
|
975 |
||
976 |
$(BUILD_LIBAWT_LWAWT): $(BUILD_LIBMLIB_IMAGE) |
|
977 |
||
49261
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
978 |
$(BUILD_LIBAWT_LWAWT): $(call FindLib, java.desktop, osxapp) |
20547 | 979 |
|
27565 | 980 |
$(BUILD_LIBAWT_LWAWT): $(call FindLib, java.base, java) |
20547 | 981 |
|
982 |
endif |
|
983 |
||
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25993
diff
changeset
|
984 |
################################################################################ |
20547 | 985 |
|
986 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
987 |
||
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
988 |
$(eval $(call SetupJdkLibrary, BUILD_LIBOSXUI, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
48766
diff
changeset
|
989 |
NAME := osxui, \ |
47217 | 990 |
SRC := $(TOPDIR)/src/java.desktop/macosx/native/libosxui, \ |
20547 | 991 |
OPTIMIZATION := LOW, \ |
992 |
CFLAGS := $(CFLAGS_JDKLIB) \ |
|
47217 | 993 |
-I$(TOPDIR)/src/java.desktop/macosx/native/libosxui \ |
994 |
-I$(TOPDIR)/src/java.desktop/macosx/native/libawt_lwawt/awt \ |
|
995 |
-I$(TOPDIR)/src/java.desktop/macosx/native/libosxapp \ |
|
996 |
-I$(TOPDIR)/src/java.base/share/native/libjava \ |
|
997 |
-I$(TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_TYPE)/native/libjava \ |
|
27565 | 998 |
-I$(SUPPORT_OUTPUTDIR)/headers/java.desktop, \ |
49523 | 999 |
DISABLED_WARNINGS_clang := deprecated-declarations, \ |
20547 | 1000 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
1001 |
$(call SET_SHARED_LIBRARY_ORIGIN) \ |
|
34695
7a6cc9982d22
8142907: Integration of minor fixes from the build-infra project
ihse
parents:
34432
diff
changeset
|
1002 |
-Wl$(COMMA)-rpath$(COMMA)@loader_path \ |
27944 | 1003 |
-L$(INSTALL_LIBRARIES_HERE), \ |
33406 | 1004 |
LIBS := -lawt -losxapp -lawt_lwawt \ |
20547 | 1005 |
-framework Cocoa \ |
1006 |
-framework Carbon \ |
|
1007 |
-framework ApplicationServices \ |
|
1008 |
-framework JavaNativeFoundation \ |
|
1009 |
-framework JavaRuntimeSupport \ |
|
1010 |
-ljava -ljvm, \ |
|
35276 | 1011 |
)) |
20547 | 1012 |
|
27565 | 1013 |
TARGETS += $(BUILD_LIBOSXUI) |
20547 | 1014 |
|
1015 |
$(BUILD_LIBOSXUI): $(BUILD_LIBAWT) |
|
1016 |
||
49261
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
1017 |
$(BUILD_LIBOSXUI): $(call FindLib, java.desktop, osxapp) |
20547 | 1018 |
|
1019 |
$(BUILD_LIBOSXUI): $(BUILD_LIBAWT_LWAWT) |
|
1020 |
||
1021 |
endif |
|
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25993
diff
changeset
|
1022 |
|
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25993
diff
changeset
|
1023 |
################################################################################ |
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25993
diff
changeset
|
1024 |
|
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25993
diff
changeset
|
1025 |
# Hook to include the corresponding custom file, if present. |
47314 | 1026 |
$(eval $(call IncludeCustomExtension, lib/Awt2dLibraries.gmk)) |