author | shade |
Thu, 31 Oct 2019 10:37:03 +0100 | |
changeset 58868 | f547a06da806 |
parent 54380 | e297c7bb6469 |
permissions | -rw-r--r-- |
25859 | 1 |
# |
54380 | 2 |
# Copyright (c) 2011, 2019, 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.desktop.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. |
54380 | 32 |
$(call FillFindCache, $(wildcard $(TOPDIR)/src/java.desktop/*/native)) |
26192
33b90e93e3bf
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
25859
diff
changeset
|
33 |
|
49252 | 34 |
################################################################################ |
49439
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
35 |
# Create the AWT/2D libraries |
49252 | 36 |
|
25859 | 37 |
include Awt2dLibraries.gmk |
49439
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
38 |
|
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
39 |
################################################################################ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
40 |
# Create the libjsound library |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
41 |
|
53683 | 42 |
ifeq ($(call isTargetOs, aix), false) |
49439
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
43 |
|
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
44 |
LIBJSOUND_CFLAGS := \ |
49560
66279035d5e7
8201357: ALSA_CFLAGS is needed; was dropped in JDK-8071469
martin
parents:
49523
diff
changeset
|
45 |
$(ALSA_CFLAGS) \ |
49439
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
46 |
-DX_PLATFORM=X_$(OPENJDK_TARGET_OS_UPPERCASE) \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
47 |
-DUSE_PORTS=TRUE \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
48 |
-DUSE_DAUDIO=TRUE \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
49 |
# |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
50 |
|
53683 | 51 |
ifeq ($(call isTargetOs, solaris), false) |
49439
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
52 |
LIBJSOUND_CFLAGS += \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
53 |
-DUSE_PLATFORM_MIDI_OUT=TRUE \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
54 |
-DUSE_PLATFORM_MIDI_IN=TRUE \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
55 |
# |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
56 |
endif |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
57 |
|
53683 | 58 |
ifeq ($(call isTargetOs, macosx), true) |
49439
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
59 |
LIBJSOUND_TOOLCHAIN := TOOLCHAIN_LINK_CXX |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
60 |
endif |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
61 |
|
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
62 |
$(eval $(call SetupJdkLibrary, BUILD_LIBJSOUND, \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
63 |
NAME := jsound, \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
64 |
TOOLCHAIN := $(LIBJSOUND_TOOLCHAIN), \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
65 |
OPTIMIZATION := LOW, \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
66 |
CFLAGS := $(CFLAGS_JDKLIB) \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
67 |
$(LIBJSOUND_CFLAGS), \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
68 |
CXXFLAGS := $(CXXFLAGS_JDKLIB) $(LIBJSOUND_CFLAGS), \ |
51853
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
50471
diff
changeset
|
69 |
DISABLED_WARNINGS_gcc := undef, \ |
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
50471
diff
changeset
|
70 |
DISABLED_WARNINGS_clang := undef, \ |
49439
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
71 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
72 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
73 |
LIBS_unix := -ljava -ljvm, \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
74 |
LIBS_linux := $(ALSA_LIBS), \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
75 |
LIBS_macosx := -framework CoreAudio -framework CoreFoundation \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
76 |
-framework CoreServices -framework AudioUnit \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
77 |
-framework CoreMIDI -framework AudioToolbox $(LIBCXX), \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
78 |
LIBS_windows := $(WIN_JAVA_LIB) advapi32.lib dsound.lib winmm.lib user32.lib ole32.lib, \ |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
79 |
)) |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
80 |
|
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
81 |
$(BUILD_LIBJSOUND): $(call FindLib, java.base, java) |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
82 |
|
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
83 |
TARGETS += $(BUILD_LIBJSOUND) |
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
84 |
|
bf53d82a51e5
8200357: Inline SoundLibraries.gmk into Lib-java.desktop.gmk
ihse
parents:
49252
diff
changeset
|
85 |
endif |
49252 | 86 |
|
87 |
################################################################################ |
|
88 |
# Create the macosx specific osxapp and osx libraries |
|
89 |
||
53683 | 90 |
ifeq ($(call isTargetOs, macosx), true) |
49252 | 91 |
|
92 |
$(eval $(call SetupJdkLibrary, BUILD_LIBOSXAPP, \ |
|
93 |
NAME := osxapp, \ |
|
94 |
OPTIMIZATION := LOW, \ |
|
50471
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49560
diff
changeset
|
95 |
CFLAGS := $(CFLAGS_JDKLIB), \ |
49523 | 96 |
DISABLED_WARNINGS_clang := objc-method-access objc-root-class \ |
51853
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
50471
diff
changeset
|
97 |
deprecated-declarations format-nonliteral, \ |
49252 | 98 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
99 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
100 |
LIBS := \ |
|
101 |
-framework Accelerate \ |
|
102 |
-framework ApplicationServices \ |
|
103 |
-framework AudioToolbox \ |
|
104 |
-framework Carbon \ |
|
105 |
-framework Cocoa \ |
|
106 |
-framework Security \ |
|
107 |
-framework ExceptionHandling \ |
|
108 |
-framework JavaNativeFoundation \ |
|
109 |
-framework JavaRuntimeSupport \ |
|
110 |
-framework OpenGL \ |
|
111 |
-framework IOSurface \ |
|
112 |
-framework QuartzCore, \ |
|
113 |
)) |
|
114 |
||
115 |
TARGETS += $(BUILD_LIBOSXAPP) |
|
116 |
||
117 |
############################################################################## |
|
118 |
||
119 |
$(eval $(call SetupJdkLibrary, BUILD_LIBOSX, \ |
|
120 |
NAME := osx, \ |
|
121 |
OPTIMIZATION := LOW, \ |
|
50471
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49560
diff
changeset
|
122 |
CFLAGS := $(CFLAGS_JDKLIB), \ |
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49560
diff
changeset
|
123 |
EXTRA_HEADER_DIRS := libosxapp, \ |
49252 | 124 |
DISABLED_WARNINGS_clang := deprecated-declarations, \ |
125 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
|
126 |
-L$(SUPPORT_OUTPUTDIR)/modules_libs/java.desktop \ |
|
127 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
128 |
LIBS := \ |
|
129 |
-losxapp \ |
|
130 |
-framework Cocoa \ |
|
131 |
-framework ApplicationServices \ |
|
132 |
-framework JavaNativeFoundation \ |
|
133 |
-framework JavaRuntimeSupport \ |
|
134 |
-framework SystemConfiguration \ |
|
135 |
$(JDKLIB_LIBS), \ |
|
136 |
)) |
|
137 |
||
138 |
TARGETS += $(BUILD_LIBOSX) |
|
139 |
||
140 |
$(BUILD_LIBOSX): $(call FindLib, java.desktop, osxapp) |
|
141 |
||
142 |
$(BUILD_LIBOSX): $(call FindLib, java.base, java) |
|
143 |
||
144 |
endif |