author | ihse |
Wed, 20 Jan 2016 09:54:13 +0100 | |
changeset 35276 | 50b3cdcef339 |
parent 35241 | 075bbb8f2423 |
child 35781 | 88c56fe09cb8 |
permissions | -rw-r--r-- |
25859 | 1 |
# |
29925
6d47adfc6b47
8077847: Better handling of Windows executable manifest version
ihse
parents:
27953
diff
changeset
|
2 |
# Copyright (c) 2011, 2015, 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 NativeCompilation.gmk |
|
27 |
||
28 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
29 |
ORIGIN_ARG := $(call SET_EXECUTABLE_ORIGIN) |
|
30 |
else |
|
33523 | 31 |
ORIGIN_ARG := $(call SET_EXECUTABLE_ORIGIN,/../lib$(OPENJDK_TARGET_CPU_LIBDIR)/jli) |
25859 | 32 |
|
33523 | 33 |
# Applications expect to be able to link against libjawt without invoking |
34 |
# System.loadLibrary("jawt") first. This was the behaviour described in the |
|
35 |
# devloper documentation of JAWT and what worked with OpenJDK6. |
|
36 |
ifneq ($(findstring $(OPENJDK_TARGET_OS), linux solaris), ) |
|
37 |
ORIGIN_ARG += $(call SET_EXECUTABLE_ORIGIN,/../lib$(OPENJDK_TARGET_CPU_LIBDIR)) |
|
38 |
endif |
|
25859 | 39 |
endif |
40 |
||
41 |
LAUNCHER_SRC := $(JDK_TOPDIR)/src/java.base/share/native/launcher |
|
42 |
LAUNCHER_CFLAGS := -I$(JDK_TOPDIR)/src/java.base/share/native/launcher \ |
|
43 |
-I$(JDK_TOPDIR)/src/java.base/share/native/libjli \ |
|
27736
8c9bd4be4a86
8058631: Rename posix to unix in build system to match file name changes
ihse
parents:
25859
diff
changeset
|
44 |
-I$(JDK_TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_TYPE)/native/libjli \ |
25859 | 45 |
-I$(JDK_TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS)/native/libjli \ |
46 |
# |
|
47 |
GLOBAL_VERSION_INFO_RESOURCE := $(JDK_TOPDIR)/src/java.base/windows/native/common/version.rc |
|
48 |
JAVA_VERSION_INFO_RESOURCE := $(JDK_TOPDIR)/src/java.base/windows/native/launcher/java.rc |
|
49 |
MACOSX_PLIST_DIR := $(JDK_TOPDIR)/src/java.base/macosx/native/launcher |
|
50 |
JAVA_MANIFEST := $(JDK_TOPDIR)/src/java.base/windows/native/launcher/java.manifest |
|
51 |
||
33523 | 52 |
################################################################################ |
53 |
# Build standard launcher. |
|
25859 | 54 |
|
33523 | 55 |
# Setup make rules for building a standard launcher. |
56 |
# |
|
57 |
# Parameter 1 is the name of the rule. This name is used as variable prefix, |
|
58 |
# and the targets generated are listed in a variable by that name. It is also |
|
59 |
# used as the name of the executable. |
|
60 |
# |
|
61 |
# Remaining parameters are named arguments. These include: |
|
62 |
# MAIN_CLASS The Java main class to launch |
|
63 |
# JAVA_ARGS Processed into a -DJAVA_ARGS C flag |
|
64 |
# CFLAGS Additional CFLAGS |
|
65 |
# CFLAGS_windows Additional CFLAGS_windows |
|
66 |
# LIBS_unix Additional LIBS_unix |
|
67 |
# LIBS_windows Additional LIBS_windows |
|
68 |
# LDFLAGS_solaris Additional LDFLAGS_solaris |
|
69 |
# RC_FLAGS Additional RC_FLAGS |
|
70 |
# MACOSX_SIGNED On macosx, sign this binary |
|
71 |
# WINDOWS_STATIC_LINK On windows, link statically with C runtime and libjli. |
|
72 |
# OPTIMIZATION Override default optimization level (LOW) |
|
73 |
# OUTPUT_DIR Override default output directory |
|
74 |
# VERSION_INFO_RESOURCE Override default Windows resource file |
|
75 |
# NO_JAVA_MS Do not add -ms8m to JAVA_ARGS. |
|
76 |
SetupBuildLauncher = $(NamedParamsMacroTemplate) |
|
77 |
define SetupBuildLauncherBody |
|
78 |
# Setup default values (unless overridden) |
|
79 |
ifeq ($$($1_VERSION_INFO_RESOURCE), ) |
|
80 |
$1_VERSION_INFO_RESOURCE := $(GLOBAL_VERSION_INFO_RESOURCE) |
|
25859 | 81 |
endif |
82 |
||
33523 | 83 |
ifeq ($$($1_OUTPUT_DIR), ) |
84 |
$1_OUTPUT_DIR := $(SUPPORT_OUTPUTDIR)/modules_cmds/$(MODULE) |
|
25859 | 85 |
endif |
86 |
||
33523 | 87 |
ifeq ($$($1_OPTIMIZATION), ) |
88 |
$1_OPTIMIZATION := LOW |
|
89 |
endif |
|
90 |
||
91 |
ifneq ($$($1_NO_JAVA_MS), true) |
|
92 |
# The norm is to append -ms8m, unless otherwise instructed. |
|
93 |
$1_JAVA_ARGS += -ms8m |
|
94 |
endif |
|
95 |
||
96 |
ifneq ($$($1_JAVA_ARGS), ) |
|
97 |
$1_JAVA_ARGS_STR := '{ $$(strip $$(foreach a, \ |
|
98 |
$$(addprefix -J, $$($1_JAVA_ARGS)) $$($1_MAIN_CLASS), "$$a"$(COMMA) )) }' |
|
99 |
$1_CFLAGS += -DJAVA_ARGS=$$($1_JAVA_ARGS_STR) |
|
100 |
endif |
|
101 |
||
33406 | 102 |
$1_LIBS := |
25859 | 103 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
33523 | 104 |
ifeq ($$($1_MACOSX_SIGNED), true) |
105 |
$1_PLIST_FILE := Info-privileged.plist |
|
25859 | 106 |
$1_CODESIGN := true |
33523 | 107 |
else |
108 |
$1_PLIST_FILE := Info-cmdline.plist |
|
25859 | 109 |
endif |
110 |
||
33523 | 111 |
$1_CFLAGS += -DPACKAGE_PATH='"$(PACKAGE_PATH)"' |
33666 | 112 |
$1_LDFLAGS += -Wl,-all_load \ |
25859 | 113 |
-sectcreate __TEXT __info_plist $(MACOSX_PLIST_DIR)/$$($1_PLIST_FILE) |
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32515
diff
changeset
|
114 |
ifeq ($(STATIC_BUILD), true) |
33666 | 115 |
$1_LDFLAGS += -exported_symbols_list \ |
116 |
$(SUPPORT_OUTPUTDIR)/build-static/exported.symbols |
|
117 |
$1_LIBS += \ |
|
35241 | 118 |
$$(shell $(FIND) $(SUPPORT_OUTPUTDIR)/modules_libs/java.base -name "*.a") \ |
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32515
diff
changeset
|
119 |
$(SUPPORT_OUTPUTDIR)/modules_libs/jdk.jdwp.agent/libdt_socket.a \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32515
diff
changeset
|
120 |
$(SUPPORT_OUTPUTDIR)/modules_libs/jdk.jdwp.agent/libjdwp.a \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32515
diff
changeset
|
121 |
$(SUPPORT_OUTPUTDIR)/native/java.base/$(LIBRARY_PREFIX)fdlibm$(STATIC_LIBRARY_SUFFIX) \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32515
diff
changeset
|
122 |
-framework CoreFoundation \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32515
diff
changeset
|
123 |
-framework Foundation \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32515
diff
changeset
|
124 |
-framework SystemConfiguration \ |
33666 | 125 |
-lstdc++ -liconv |
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32515
diff
changeset
|
126 |
else |
33666 | 127 |
$1_LIBS += $(SUPPORT_OUTPUTDIR)/native/java.base/libjli_static.a |
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32515
diff
changeset
|
128 |
endif |
33406 | 129 |
$1_LIBS += -framework Cocoa -framework Security \ |
130 |
-framework ApplicationServices |
|
25859 | 131 |
endif |
132 |
||
133 |
ifeq ($(OPENJDK_TARGET_OS), aix) |
|
33406 | 134 |
$1_LDFLAGS += -L$(SUPPORT_OUTPUTDIR)/native/java.base |
135 |
$1_LIBS += -ljli_static |
|
25859 | 136 |
endif |
137 |
||
138 |
ifeq ($(USE_EXTERNAL_LIBZ), true) |
|
33406 | 139 |
$1_LIBS += -lz |
25859 | 140 |
endif |
141 |
||
33523 | 142 |
ifeq ($$($1_WINDOWS_STATIC_LINK), true) |
143 |
$1_CFLAGS += $(filter-out -MD, $(CFLAGS_JDKEXE)) |
|
144 |
$1_WINDOWS_JLI_LIB := $(SUPPORT_OUTPUTDIR)/native/java.base/jli_static.lib |
|
25859 | 145 |
else |
33523 | 146 |
$1_CFLAGS += $(CFLAGS_JDKEXE) |
147 |
$1_WINDOWS_JLI_LIB := $(SUPPORT_OUTPUTDIR)/native/java.base/libjli/jli.lib |
|
25859 | 148 |
endif |
149 |
||
150 |
# The linker on older SuSE distros (e.g. on SLES 10) complains with: |
|
151 |
# "Invalid version tag `SUNWprivate_1.1'. Only anonymous version tag is allowed in executable." |
|
152 |
# if feeded with a version script which contains named tags. |
|
153 |
ifeq ($(USING_BROKEN_SUSE_LD),yes) |
|
154 |
ifneq ($(wildcard $(JDK_TOPDIR)/make/mapfiles/launchers/mapfile-$(OPENJDK_TARGET_CPU).anonymous), ) |
|
155 |
$1_MAPFILE := $(JDK_TOPDIR)/make/mapfiles/launchers/mapfile-$(OPENJDK_TARGET_CPU).anonymous |
|
156 |
else |
|
157 |
$1_MAPFILE := |
|
158 |
endif |
|
159 |
else |
|
160 |
ifneq ($(wildcard $(JDK_TOPDIR)/make/mapfiles/launchers/mapfile-$(OPENJDK_TARGET_CPU)), ) |
|
161 |
$1_MAPFILE := $(JDK_TOPDIR)/make/mapfiles/launchers/mapfile-$(OPENJDK_TARGET_CPU) |
|
162 |
else |
|
163 |
$1_MAPFILE := |
|
164 |
endif |
|
165 |
endif |
|
166 |
||
33523 | 167 |
$$(eval $$(call SetupNativeCompilation, BUILD_LAUNCHER_$1, \ |
35241 | 168 |
EXTRA_FILES := $(LAUNCHER_SRC)/main.c, \ |
33523 | 169 |
OPTIMIZATION := $$($1_OPTIMIZATION), \ |
25859 | 170 |
CFLAGS := $$($1_CFLAGS) \ |
171 |
$(LAUNCHER_CFLAGS) \ |
|
33984
2333676816eb
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29931
diff
changeset
|
172 |
$(VERSION_CFLAGS) \ |
25859 | 173 |
-DLAUNCHER_NAME='"$(LAUNCHER_NAME)"' \ |
33523 | 174 |
-DPROGNAME='"$1"' \ |
175 |
$$($1_CFLAGS), \ |
|
25859 | 176 |
CFLAGS_linux := -fPIC, \ |
177 |
CFLAGS_solaris := -KPIC -DHAVE_GETHRTIME, \ |
|
33523 | 178 |
CFLAGS_windows := $$($1_CFLAGS_windows), \ |
34695
7a6cc9982d22
8142907: Integration of minor fixes from the build-infra project
ihse
parents:
34389
diff
changeset
|
179 |
LDFLAGS := $$(LDFLAGS_JDKEXE) \ |
33523 | 180 |
$$(ORIGIN_ARG) \ |
25859 | 181 |
$$($1_LDFLAGS), \ |
33406 | 182 |
LDFLAGS_linux := \ |
183 |
-L$(SUPPORT_OUTPUTDIR)/modules_libs/java.base$(OPENJDK_TARGET_CPU_LIBDIR)/jli, \ |
|
25859 | 184 |
LDFLAGS_solaris := $$($1_LDFLAGS_solaris) \ |
33406 | 185 |
-L$(SUPPORT_OUTPUTDIR)/modules_libs/java.base$(OPENJDK_TARGET_CPU_LIBDIR)/jli, \ |
25859 | 186 |
MAPFILE := $$($1_MAPFILE), \ |
33406 | 187 |
LIBS := $(JDKEXE_LIBS) $$($1_LIBS), \ |
33523 | 188 |
LIBS_unix := $$($1_LIBS_unix), \ |
33406 | 189 |
LIBS_linux := -lpthread -ljli $(LIBDL) -lc, \ |
190 |
LIBS_solaris := -ljli -lthread $(LIBDL) -lc, \ |
|
191 |
LIBS_windows := $$($1_WINDOWS_JLI_LIB) \ |
|
33523 | 192 |
$(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib advapi32.lib \ |
193 |
$$($1_LIBS_windows), \ |
|
194 |
OBJECT_DIR := $(SUPPORT_OUTPUTDIR)/native/$(MODULE)/$1_objs, \ |
|
195 |
OUTPUT_DIR := $$($1_OUTPUT_DIR), \ |
|
25859 | 196 |
PROGRAM := $1, \ |
197 |
VERSIONINFO_RESOURCE := $$($1_VERSION_INFO_RESOURCE), \ |
|
33523 | 198 |
RC_FLAGS := $$(RC_FLAGS) \ |
25859 | 199 |
-D "JDK_FNAME=$1$(EXE_SUFFIX)" \ |
200 |
-D "JDK_INTERNAL_NAME=$1" \ |
|
201 |
-D "JDK_FTYPE=0x1L" \ |
|
33523 | 202 |
$$($1_RC_FLAGS), \ |
25859 | 203 |
MANIFEST := $(JAVA_MANIFEST), \ |
33984
2333676816eb
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29931
diff
changeset
|
204 |
MANIFEST_VERSION := $(VERSION_NUMBER_FOUR_POSITIONS), \ |
29925
6d47adfc6b47
8077847: Better handling of Windows executable manifest version
ihse
parents:
27953
diff
changeset
|
205 |
CODESIGN := $$($1_CODESIGN), \ |
33523 | 206 |
)) |
25859 | 207 |
|
33523 | 208 |
$1 += $$(BUILD_LAUNCHER_$1) |
209 |
TARGETS += $$($1) |
|
25859 | 210 |
|
211 |
ifneq (,$(filter $(OPENJDK_TARGET_OS), macosx aix)) |
|
27565 | 212 |
$$(BUILD_LAUNCHER_$1): $(SUPPORT_OUTPUTDIR)/native/java.base/libjli_static.a |
25859 | 213 |
endif |
214 |
||
215 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
27565 | 216 |
$$(BUILD_LAUNCHER_$1): $(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib \ |
25859 | 217 |
$$($1_WINDOWS_JLI_LIB) |
218 |
endif |
|
219 |
endef |