author | mkos |
Fri, 21 Feb 2014 17:37:39 +0100 | |
changeset 23962 | 99b559663ecb |
parent 23433 | afe67de12b7d |
child 25854 | 98ce0879ab4c |
permissions | -rw-r--r-- |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
22721
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22473
diff
changeset
|
2 |
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
4 |
# |
6ec26f6cc53e
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 |
6ec26f6cc53e
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 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
10 |
# |
6ec26f6cc53e
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 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
6ec26f6cc53e
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 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
15 |
# accompanied this code). |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
16 |
# |
6ec26f6cc53e
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 |
6ec26f6cc53e
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, |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
20 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
6ec26f6cc53e
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 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
23 |
# questions. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
24 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
25 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
26 |
# When you read this source. Remember that $(sort ...) has the side effect |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
27 |
# of removing duplicates. It is actually this side effect that is |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
28 |
# desired whenever sort is used below! |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
29 |
|
20363 | 30 |
ifeq (,$(_MAKEBASE_GMK)) |
31 |
$(error You must include MakeBase.gmk prior to including NativeCompilation.gmk) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
32 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
33 |
|
22721
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22473
diff
changeset
|
34 |
ifneq ($(TOOLCHAIN_TYPE), microsoft) |
20363 | 35 |
COMPILING_MSG=echo $(LOG_INFO) "Compiling $(notdir $1) (for $(notdir $2))" |
36 |
LINKING_MSG=echo $(LOG_INFO) "Linking $1" |
|
37 |
LINKING_EXE_MSG=echo $(LOG_INFO) "Linking executable $1" |
|
38 |
ARCHIVING_MSG=echo $(LOG_INFO) "Archiving $1" |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
39 |
else |
20363 | 40 |
COMPILING_MSG= |
41 |
LINKING_MSG= |
|
42 |
LINKING_EXE_MSG= |
|
43 |
ARCHIVING_MSG= |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
44 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
45 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
46 |
define add_native_source |
20363 | 47 |
# param 1 = BUILD_MYPACKAGE |
48 |
# parma 2 = the source file name (..../alfa.c or .../beta.cpp) |
|
49 |
# param 3 = the bin dir that stores all .o (.obj) and .d files. |
|
50 |
# param 4 = the c flags to the compiler |
|
51 |
# param 5 = the c compiler |
|
52 |
# param 6 = the c++ flags to the compiler |
|
53 |
# param 7 = the c++ compiler |
|
54 |
# param 8 = the flags to the assembler |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
55 |
|
20363 | 56 |
ifneq (,$$(filter %.c,$2)) |
57 |
# Compile as a C file |
|
58 |
$1_$2_FLAGS=$4 $$($1_$(notdir $2)_CFLAGS) -DTHIS_FILE='"$$(<F)"' -c |
|
59 |
$1_$2_COMP=$5 |
|
60 |
$1_$2_DEP_FLAG:=$(C_FLAG_DEPS) |
|
61 |
else ifneq (,$$(filter %.m,$2)) |
|
62 |
# Compile as a objective-c file |
|
63 |
$1_$2_FLAGS=-x objective-c $4 $$($1_$(notdir $2)_CFLAGS) -DTHIS_FILE='"$$(<F)"' -c |
|
64 |
$1_$2_COMP=$5 |
|
65 |
$1_$2_DEP_FLAG:=$(C_FLAG_DEPS) |
|
66 |
else ifneq (,$$(filter %.s,$2)) |
|
67 |
# Compile as assembler file |
|
68 |
$1_$2_FLAGS=$8 -DTHIS_FILE='"$$(<F)"' |
|
69 |
$1_$2_COMP=$(AS) |
|
70 |
$1_$2_DEP_FLAG:= |
|
71 |
else |
|
72 |
# Compile as a C++ file |
|
73 |
$1_$2_FLAGS=$6 $$($1_$(notdir $2)_CXXFLAGS) -DTHIS_FILE='"$$(<F)"' -c |
|
74 |
$1_$2_COMP=$7 |
|
75 |
$1_$2_DEP_FLAG:=$(CXX_FLAG_DEPS) |
|
76 |
endif |
|
77 |
# Generate the .o (.obj) file name and place it in the bin dir. |
|
78 |
$1_$2_OBJ:=$3/$$(patsubst %.cpp,%$(OBJ_SUFFIX),$$(patsubst %.c,%$(OBJ_SUFFIX),$$(patsubst %.m,%$(OBJ_SUFFIX),$$(patsubst %.s,%$(OBJ_SUFFIX),$$(notdir $2))))) |
|
79 |
# Only continue if this object file hasn't been processed already. This lets the first found |
|
80 |
# source file override any other with the same name. |
|
81 |
ifeq (,$$(findstring $$($1_$2_OBJ),$$($1_OBJS_SO_FAR))) |
|
82 |
$1_OBJS_SO_FAR+=$$($1_$2_OBJ) |
|
83 |
ifeq (,$$(filter %.s,$2)) |
|
84 |
# And this is the dependency file for this obj file. |
|
85 |
$1_$2_DEP:=$$(patsubst %$(OBJ_SUFFIX),%.d,$$($1_$2_OBJ)) |
|
86 |
# Include previously generated dependency information. (if it exists) |
|
87 |
-include $$($1_$2_DEP) |
|
88 |
||
22721
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22473
diff
changeset
|
89 |
ifeq ($(TOOLCHAIN_TYPE), microsoft) |
20363 | 90 |
$1_$2_DEBUG_OUT_FLAGS:=-Fd$$(patsubst %$(OBJ_SUFFIX),%.pdb,$$($1_$2_OBJ)) \ |
91 |
-Fm$$(patsubst %$(OBJ_SUFFIX),%.map,$$($1_$2_OBJ)) |
|
92 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
93 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
94 |
|
20363 | 95 |
$$($1_$2_OBJ) : $2 |
22721
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22473
diff
changeset
|
96 |
ifneq ($(TOOLCHAIN_TYPE), microsoft) |
20363 | 97 |
$$(call COMPILING_MSG,$2,$$($1_TARGET)) |
22721
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22473
diff
changeset
|
98 |
# The Solaris studio compiler doesn't output the full path to the object file in the |
16988
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
99 |
# generated deps files. Fixing it with sed. If compiling assembly, don't try this. |
22721
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22473
diff
changeset
|
100 |
ifeq ($(TOOLCHAIN_TYPE)$$(filter %.s,$2), solstudio) |
20363 | 101 |
$$($1_$2_COMP) $$($1_$2_FLAGS) $$($1_$2_DEP_FLAG) $$($1_$2_DEP).tmp $(CC_OUT_OPTION)$$($1_$2_OBJ) $2 |
102 |
$(SED) 's|^$$(@F):|$$@:|' $$($1_$2_DEP).tmp > $$($1_$2_DEP) |
|
16988
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
103 |
else |
20363 | 104 |
$$($1_$2_COMP) $$($1_$2_FLAGS) $$($1_$2_DEP_FLAG) $$($1_$2_DEP) $(CC_OUT_OPTION)$$($1_$2_OBJ) $2 |
105 |
endif |
|
16988
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
106 |
endif |
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
107 |
# The Visual Studio compiler lacks a feature for generating make dependencies, but by |
20363 | 108 |
# setting -showIncludes, all included files are printed. These are filtered out and |
16988
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
109 |
# parsed into make dependences. |
22721
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22473
diff
changeset
|
110 |
ifeq ($(TOOLCHAIN_TYPE), microsoft) |
20363 | 111 |
($$($1_$2_COMP) $$($1_$2_FLAGS) -showIncludes $$($1_$2_DEBUG_OUT_FLAGS) \ |
112 |
$(CC_OUT_OPTION)$$($1_$2_OBJ) $2 ; echo $$$$? > $$($1_$2_DEP).exitvalue) \ |
|
113 |
| $(TEE) $$($1_$2_DEP).raw | $(GREP) -v "^Note: including file:" \ |
|
114 |
&& exit `cat $$($1_$2_DEP).exitvalue` |
|
115 |
$(RM) $$($1_$2_DEP).exitvalue |
|
116 |
($(ECHO) $$@: \\ \ |
|
117 |
&& $(SED) -e '/^Note: including file:/!d' \ |
|
118 |
-e 's|Note: including file: *||' \ |
|
119 |
-e 's|\\|/|g' \ |
|
120 |
-e 's|^\([a-zA-Z]\):|/cygdrive/\1|g' \ |
|
121 |
-e '/$(subst /,\/,$(TOPDIR))/!d' \ |
|
122 |
-e 's|$$$$| \\|g' \ |
|
123 |
$$($1_$2_DEP).raw) > $$($1_$2_DEP) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
124 |
endif |
20363 | 125 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
126 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
127 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
128 |
define SetupNativeCompilation |
20363 | 129 |
# param 1 is for example BUILD_MYPACKAGE |
130 |
# param 2,3,4,5,6,7,8 are named args. |
|
131 |
# SRC one or more directory roots to scan for C/C++ files. |
|
132 |
# LANG C or C++ |
|
133 |
# CFLAGS the compiler flags to be used, used both for C and C++. |
|
134 |
# CXXFLAGS the compiler flags to be used for c++, if set overrides CFLAGS. |
|
135 |
# LDFLAGS the linker flags to be used, used both for C and C++. |
|
136 |
# LDFLAGS_SUFFIX the linker flags to be added last on the commandline |
|
137 |
# typically the libraries linked to. |
|
138 |
# ARFLAGS the archiver flags to be used |
|
139 |
# OBJECT_DIR the directory where we store the object files |
|
140 |
# LIBRARY the resulting library file |
|
141 |
# PROGRAM the resulting exec file |
|
142 |
# INCLUDES only pick source from these directories |
|
143 |
# EXCLUDES do not pick source from these directories |
|
144 |
# INCLUDE_FILES only compile exactly these files! |
|
145 |
# EXCLUDE_FILES with these names |
|
146 |
# VERSIONINFO_RESOURCE Input file for RC. Setting this implies that RC will be run |
|
147 |
# RC_FLAGS flags for RC. |
|
148 |
# MAPFILE mapfile |
|
149 |
# REORDER reorder file |
|
150 |
# DEBUG_SYMBOLS add debug symbols (if configured on) |
|
151 |
# CC the compiler to use, default is $(CC) |
|
152 |
# LDEXE the linker to use for linking executables, default is $(LDEXE) |
|
153 |
# OPTIMIZATION sets optimization level to NONE, LOW, HIGH, HIGHEST |
|
154 |
$(foreach i,2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26, $(if $($i),$1_$(strip $($i)))$(NEWLINE)) |
|
155 |
$(call LogSetupMacroEntry,SetupNativeCompilation($1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15),$(16),$(17),$(18),$(19),$(20),$(21),$(22),$(23),$(24),$(25),$(26)) |
|
156 |
$(if $(27),$(error Internal makefile error: Too many arguments to SetupNativeCompilation, please update NativeCompilation.gmk)) |
|
13132 | 157 |
|
20363 | 158 |
ifneq (,$$($1_BIN)) |
159 |
$$(error BIN has been replaced with OBJECT_DIR) |
|
160 |
endif |
|
13132 | 161 |
|
20363 | 162 |
ifneq (,$$($1_LIB)) |
163 |
$$(error LIB has been replaced with LIBRARY) |
|
164 |
endif |
|
13132 | 165 |
|
20363 | 166 |
ifneq (,$$($1_EXE)) |
167 |
$$(error EXE has been replaced with PROGRAM) |
|
168 |
endif |
|
13132 | 169 |
|
20363 | 170 |
ifneq (,$$($1_LIBRARY)) |
171 |
ifeq (,$$($1_OUTPUT_DIR)) |
|
172 |
$$(error LIBRARY requires OUTPUT_DIR) |
|
13132 | 173 |
endif |
174 |
||
20363 | 175 |
ifneq ($$($1_LIBRARY),$(basename $$($1_LIBRARY))) |
176 |
$$(error directory of LIBRARY should be specified using OUTPUT_DIR) |
|
177 |
endif |
|
13132 | 178 |
|
20363 | 179 |
ifneq (,$(findstring $(SHARED_LIBRARY_SUFFIX),$$($1_LIBRARY))) |
180 |
$$(error LIBRARY should be specified without SHARED_LIBRARY_SUFFIX: $(SHARED_LIBRARY_SUFFIX)) |
|
181 |
endif |
|
13132 | 182 |
|
20363 | 183 |
ifneq (,$(findstring $(LIBRARY_PREFIX),$$($1_LIBRARY))) |
184 |
$$(error LIBRARY should be specified without LIBRARY_PREFIX: $(LIBRARY_PREFIX)) |
|
185 |
endif |
|
13132 | 186 |
|
20363 | 187 |
$1_BASENAME:=$(LIBRARY_PREFIX)$$($1_LIBRARY)$(SHARED_LIBRARY_SUFFIX) |
188 |
$1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME) |
|
22178
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
189 |
$1_NOSUFFIX:=$(LIBRARY_PREFIX)$$($1_LIBRARY) |
20363 | 190 |
endif |
191 |
||
192 |
ifneq (,$$($1_STATIC_LIBRARY)) |
|
193 |
ifeq (,$$($1_OUTPUT_DIR)) |
|
194 |
$$(error STATIC_LIBRARY requires OUTPUT_DIR) |
|
13132 | 195 |
endif |
196 |
||
20363 | 197 |
ifneq ($$($1_STATIC_LIBRARY),$(basename $$($1_STATIC_LIBRARY))) |
198 |
$$(error directory of STATIC_LIBRARY should be specified using OUTPUT_DIR) |
|
199 |
endif |
|
13132 | 200 |
|
20363 | 201 |
ifneq (,$(findstring $(STATIC_LIBRARY_SUFFIX),$$($1_STATIC_LIBRARY))) |
202 |
$$(error STATIC_LIBRARY should be specified without STATIC_LIBRARY_SUFFIX: $(STATIC_LIBRARY_SUFFIX)) |
|
203 |
endif |
|
13132 | 204 |
|
20363 | 205 |
ifneq (,$(findstring $(LIBRARY_PREFIX),$$($1_STATIC_LIBRARY))) |
206 |
$$(error STATIC_LIBRARY should be specified without LIBRARY_PREFIX: $(LIBRARY_PREFIX)) |
|
13132 | 207 |
endif |
208 |
||
20363 | 209 |
$1_BASENAME:=$(LIBRARY_PREFIX)$$($1_STATIC_LIBRARY)$(STATIC_LIBRARY_SUFFIX) |
210 |
$1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME) |
|
22178
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
211 |
$1_NOSUFFIX:=$(LIBRARY_PREFIX)$$($1_STATIC_LIBRARY) |
20363 | 212 |
endif |
213 |
||
214 |
ifneq (,$$($1_PROGRAM)) |
|
215 |
ifeq (,$$($1_OUTPUT_DIR)) |
|
216 |
$$(error PROGRAM requires OUTPUT_DIR) |
|
13132 | 217 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
218 |
|
20363 | 219 |
ifneq ($$($1_PROGRAM),$(basename $$($1_PROGRAM))) |
220 |
$$(error directory of PROGRAM should be specified using OUTPUT_DIR) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
221 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
222 |
|
20363 | 223 |
ifneq (,$(findstring $(EXE_SUFFIX),$$($1_PROGRAM))) |
224 |
$$(error PROGRAM should be specified without EXE_SUFFIX: $(EXE_SUFFIX)) |
|
13132 | 225 |
endif |
226 |
||
20363 | 227 |
$1_BASENAME:=$$($1_PROGRAM)$(EXE_SUFFIX) |
228 |
$1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME) |
|
22178
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
229 |
$1_NOSUFFIX:=$$($1_PROGRAM) |
20363 | 230 |
endif |
14111 | 231 |
|
20363 | 232 |
ifeq (,$$($1_TARGET)) |
233 |
$$(error Neither PROGRAM, LIBRARY nor STATIC_LIBRARY has been specified for SetupNativeCompilation) |
|
234 |
endif |
|
235 |
||
236 |
ifeq (,$$($1_LANG)) |
|
237 |
$$(error You have to specify LANG for native compilation $1) |
|
238 |
endif |
|
239 |
ifeq (C,$$($1_LANG)) |
|
240 |
ifeq ($$($1_LDEXE),) |
|
241 |
$1_LDEXE:=$(LDEXE) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
242 |
endif |
20363 | 243 |
$1_LD:=$(LD) |
244 |
else |
|
245 |
ifeq (C++,$$($1_LANG)) |
|
246 |
$1_LD:=$(LDCXX) |
|
247 |
$1_LDEXE:=$(LDEXECXX) |
|
248 |
else |
|
249 |
$$(error Unknown native language $$($1_LANG) for $1) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
250 |
endif |
20363 | 251 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
252 |
|
20363 | 253 |
ifeq ($$($1_CC),) |
254 |
$1_CC:=$(CC) |
|
255 |
endif |
|
256 |
||
257 |
# Make sure the dirs exist. |
|
258 |
$$(eval $$(call MakeDir,$$($1_OBJECT_DIR) $$($1_OUTPUT_DIR))) |
|
259 |
$$(foreach d,$$($1_SRC), $$(if $$(wildcard $$d),,$$(error SRC specified to SetupNativeCompilation $1 contains missing directory $$d))) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
260 |
|
20363 | 261 |
# Find all files in the source trees. Sort to remove duplicates. |
262 |
$1_ALL_SRCS := $$(sort $$(call CacheFind,$$($1_SRC))) |
|
263 |
# Extract the C/C++ files. |
|
264 |
$1_EXCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_EXCLUDE_FILES))) |
|
265 |
$1_INCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_INCLUDE_FILES))) |
|
266 |
ifneq ($$($1_EXCLUDE_FILES),) |
|
267 |
$1_EXCLUDE_FILES:=$$(addprefix %,$$($1_EXCLUDE_FILES)) |
|
268 |
endif |
|
269 |
$1_SRCS := $$(filter-out $$($1_EXCLUDE_FILES),$$(filter %.s %.c %.cpp %.m,$$($1_ALL_SRCS))) |
|
270 |
ifneq (,$$(strip $$($1_INCLUDE_FILES))) |
|
271 |
$1_SRCS := $$(filter $$($1_INCLUDE_FILES),$$($1_SRCS)) |
|
272 |
endif |
|
273 |
ifeq (,$$($1_SRCS)) |
|
274 |
$$(error No sources found for $1 when looking inside the dirs $$($1_SRC)) |
|
275 |
endif |
|
276 |
# There can be only a single bin dir root, no need to foreach over the roots. |
|
277 |
$1_BINS := $$(wildcard $$($1_OBJECT_DIR)/*$(OBJ_SUFFIX)) |
|
278 |
# Now we have a list of all c/c++ files to compile: $$($1_SRCS) |
|
279 |
# and we have a list of all existing object files: $$($1_BINS) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
280 |
|
20363 | 281 |
# Prepend the source/bin path to the filter expressions. Then do the filtering. |
282 |
ifneq ($$($1_INCLUDES),) |
|
283 |
$1_SRC_INCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_INCLUDES)))) |
|
284 |
$1_SRCS := $$(filter $$($1_SRC_INCLUDES),$$($1_SRCS)) |
|
285 |
endif |
|
286 |
ifneq ($$($1_EXCLUDES),) |
|
287 |
$1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES)))) |
|
288 |
$1_SRCS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_SRCS)) |
|
289 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
290 |
|
20363 | 291 |
# Calculate the expected output from compiling the sources (sort to remove duplicates. Also provides |
292 |
# a reproducable order on the input files to the linker). |
|
293 |
$1_EXPECTED_OBJS:=$$(sort $$(addprefix $$($1_OBJECT_DIR)/,$$(patsubst %.cpp,%$(OBJ_SUFFIX),$$(patsubst %.c,%$(OBJ_SUFFIX),$$(patsubst %.m,%$(OBJ_SUFFIX),$$(patsubst %.s,%$(OBJ_SUFFIX),$$(notdir $$($1_SRCS)))))))) |
|
294 |
# Are there too many object files on disk? Perhaps because some source file was removed? |
|
295 |
$1_SUPERFLOUS_OBJS:=$$(sort $$(filter-out $$($1_EXPECTED_OBJS),$$($1_BINS))) |
|
296 |
# Clean out the superfluous object files. |
|
297 |
ifneq ($$($1_SUPERFLUOUS_OBJS),) |
|
298 |
$$(shell $(RM) -f $$($1_SUPERFLUOUS_OBJS)) |
|
299 |
endif |
|
300 |
||
301 |
# Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables for CFLAGS. |
|
302 |
$1_EXTRA_CFLAGS:=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_CFLAGS_$(OPENJDK_TARGET_OS)) |
|
303 |
ifneq ($(DEBUG_LEVEL),release) |
|
304 |
# Pickup extra debug dependent variables for CFLAGS |
|
305 |
$1_EXTRA_CFLAGS+=$$($1_CFLAGS_debug) |
|
306 |
$1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)_debug) |
|
307 |
$1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS)_debug) |
|
308 |
else |
|
309 |
$1_EXTRA_CFLAGS+=$$($1_CFLAGS_release) |
|
310 |
$1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)_release) |
|
311 |
$1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS)_release) |
|
312 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
313 |
|
20363 | 314 |
# Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables for CXXFLAGS. |
315 |
$1_EXTRA_CXXFLAGS:=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_CXXFLAGS_$(OPENJDK_TARGET_OS)) |
|
316 |
ifneq ($(DEBUG_LEVEL),release) |
|
317 |
# Pickup extra debug dependent variables for CXXFLAGS |
|
318 |
$1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_debug) |
|
319 |
$1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)_debug) |
|
320 |
$1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS)_debug) |
|
321 |
else |
|
322 |
$1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_release) |
|
323 |
$1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)_release) |
|
324 |
$1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS)_release) |
|
325 |
endif |
|
326 |
||
327 |
ifneq (,$$($1_DEBUG_SYMBOLS)) |
|
328 |
ifeq ($(ENABLE_DEBUG_SYMBOLS), true) |
|
329 |
ifdef OPENJDK |
|
330 |
# Always add debug symbols |
|
331 |
$1_EXTRA_CFLAGS+=$(CFLAGS_DEBUG_SYMBOLS) |
|
332 |
$1_EXTRA_CXXFLAGS+=$(CXXFLAGS_DEBUG_SYMBOLS) |
|
333 |
else |
|
334 |
# Programs don't get the debug symbols added in the old build. It's not clear if |
|
335 |
# this is intentional. |
|
336 |
ifeq ($$($1_PROGRAM),) |
|
337 |
$1_EXTRA_CFLAGS+=$(CFLAGS_DEBUG_SYMBOLS) |
|
338 |
$1_EXTRA_CXXFLAGS+=$(CXXFLAGS_DEBUG_SYMBOLS) |
|
13697 | 339 |
endif |
20363 | 340 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
341 |
endif |
20363 | 342 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
343 |
|
20363 | 344 |
ifeq ($$($1_CXXFLAGS),) |
345 |
$1_CXXFLAGS:=$$($1_CFLAGS) |
|
346 |
endif |
|
347 |
ifeq ($$(strip $$($1_EXTRA_CXXFLAGS)),) |
|
348 |
$1_EXTRA_CXXFLAGS:=$$($1_EXTRA_CFLAGS) |
|
349 |
endif |
|
350 |
||
351 |
ifneq (,$$($1_REORDER)) |
|
352 |
$1_EXTRA_CFLAGS += $$(C_FLAG_REORDER) |
|
353 |
$1_EXTRA_CXXFLAGS += $$(CXX_FLAG_REORDER) |
|
354 |
endif |
|
12801 | 355 |
|
20363 | 356 |
ifeq (NONE, $$($1_OPTIMIZATION)) |
357 |
$1_EXTRA_CFLAGS += $(C_O_FLAG_NONE) |
|
358 |
$1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_NONE) |
|
359 |
else ifeq (LOW, $$($1_OPTIMIZATION)) |
|
360 |
$1_EXTRA_CFLAGS += $(C_O_FLAG_NORM) |
|
361 |
$1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_NORM) |
|
362 |
else ifeq (HIGH, $$($1_OPTIMIZATION)) |
|
363 |
$1_EXTRA_CFLAGS += $(C_O_FLAG_HI) |
|
364 |
$1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_HI) |
|
365 |
else ifeq (HIGHEST, $$($1_OPTIMIZATION)) |
|
366 |
$1_EXTRA_CFLAGS += $(C_O_FLAG_HIGHEST) |
|
367 |
$1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_HIGHEST) |
|
368 |
else ifneq (, $$($1_OPTIMIZATION)) |
|
369 |
$$(error Unknown value for OPTIMIZATION: $$($1_OPTIMIZATION)) |
|
370 |
endif |
|
13132 | 371 |
|
23428
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22721
diff
changeset
|
372 |
# Add sys root specific cflags last |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22721
diff
changeset
|
373 |
$1_EXTRA_CFLAGS += $(SYSROOT_CFLAGS) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22721
diff
changeset
|
374 |
$1_EXTRA_CXXFLAGS += $(SYSROOT_CFLAGS) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22721
diff
changeset
|
375 |
|
20363 | 376 |
# Now call add_native_source for each source file we are going to compile. |
377 |
$$(foreach p,$$($1_SRCS), \ |
|
378 |
$$(eval $$(call add_native_source,$1,$$p,$$($1_OBJECT_DIR), \ |
|
379 |
$$($1_CFLAGS) $$($1_EXTRA_CFLAGS),$$($1_CC), \ |
|
380 |
$$($1_CXXFLAGS) $$($1_EXTRA_CXXFLAGS),$(CXX),$$($1_ASFLAGS)))) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
381 |
|
20363 | 382 |
# On windows we need to create a resource file |
383 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
384 |
ifneq (,$$($1_VERSIONINFO_RESOURCE)) |
|
385 |
$1_RES:=$$($1_OBJECT_DIR)/$$($1_BASENAME).res |
|
386 |
$$($1_RES): $$($1_VERSIONINFO_RESOURCE) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
387 |
$(RC) $$($1_RC_FLAGS) $(CC_OUT_OPTION)$$@ $$($1_VERSIONINFO_RESOURCE) |
20363 | 388 |
endif |
389 |
ifneq (,$$($1_MANIFEST)) |
|
390 |
$1_GEN_MANIFEST:=$$($1_OBJECT_DIR)/$$($1_PROGRAM).manifest |
|
391 |
IMVERSIONVALUE:=$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION).$(JDK_UPDATE_VERSION).$(COOKED_BUILD_NUMBER) |
|
392 |
$$($1_GEN_MANIFEST): $$($1_MANIFEST) |
|
12801 | 393 |
$(SED) 's%IMVERSION%$$(IMVERSIONVALUE)%g;s%PROGRAM%$$($1_PROGRAM)%g' $$< > $$@ |
394 |
endif |
|
20363 | 395 |
endif |
12801 | 396 |
|
20363 | 397 |
# mapfile doesnt seem to be implemented on macosx (yet??) |
398 |
ifneq ($(OPENJDK_TARGET_OS),macosx) |
|
13132 | 399 |
ifneq ($(OPENJDK_TARGET_OS),windows) |
20363 | 400 |
$1_REAL_MAPFILE:=$$($1_MAPFILE) |
401 |
ifneq (,$$($1_REORDER)) |
|
402 |
$1_REAL_MAPFILE:=$$($1_OBJECT_DIR)/mapfile |
|
12801 | 403 |
|
20363 | 404 |
$$($1_REAL_MAPFILE) : $$($1_MAPFILE) $$($1_REORDER) |
12801 | 405 |
$$(MKDIR) -p $$(@D) |
406 |
$$(CP) $$($1_MAPFILE) $$@.tmp |
|
13132 | 407 |
$$(SED) -e 's=OUTPUTDIR=$$($1_OBJECT_DIR)=' $$($1_REORDER) >> $$@.tmp |
12801 | 408 |
$$(MV) $$@.tmp $$@ |
20363 | 409 |
endif |
12801 | 410 |
endif |
20363 | 411 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
412 |
|
20363 | 413 |
# Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables |
414 |
# for LDFLAGS and LDFLAGS_SUFFIX |
|
415 |
$1_EXTRA_LDFLAGS:=$$($1_LDFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_LDFLAGS_$(OPENJDK_TARGET_OS)) |
|
416 |
$1_EXTRA_LDFLAGS_SUFFIX:=$$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS_API)) $$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS)) |
|
417 |
ifneq (,$$($1_REAL_MAPFILE)) |
|
418 |
$1_EXTRA_LDFLAGS += $(call SET_SHARED_LIBRARY_MAPFILE,$$($1_REAL_MAPFILE)) |
|
419 |
endif |
|
420 |
||
23428
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22721
diff
changeset
|
421 |
$1_EXTRA_LDFLAGS += $(SYSROOT_LDFLAGS) |
3c8a05bf4656
8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
erikj
parents:
22721
diff
changeset
|
422 |
|
22178
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
423 |
# Need to make sure TARGET is first on list |
20363 | 424 |
$1 := $$($1_TARGET) |
22178
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
425 |
ifeq ($$($1_STATIC_LIBRARY),) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
426 |
ifneq ($$($1_DEBUG_SYMBOLS),) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
427 |
ifeq ($(ENABLE_DEBUG_SYMBOLS), true) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
428 |
ifneq ($(OPENJDK_TARGET_OS), macosx) # no MacOS X support yet |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
429 |
ifneq ($$($1_OUTPUT_DIR),$$($1_OBJECT_DIR)) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
430 |
# The dependency on TARGET is needed on windows for debuginfo files |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
431 |
# to be rebuilt properly. |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
432 |
$$($1_OUTPUT_DIR)/% : $$($1_OBJECT_DIR)/% $$($1_TARGET) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
433 |
$(CP) $$< $$@ |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
434 |
endif |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
435 |
|
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
436 |
# Generate debuginfo files. |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
437 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
438 |
$1_EXTRA_LDFLAGS += "-pdb:$$($1_OBJECT_DIR)/$$($1_NOSUFFIX).pdb" \ |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
439 |
"-map:$$($1_OBJECT_DIR)/$$($1_NOSUFFIX).map" |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
440 |
$1_DEBUGINFO_FILES := $$($1_OBJECT_DIR)/$$($1_NOSUFFIX).pdb \ |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
441 |
$$($1_OBJECT_DIR)/$$($1_NOSUFFIX).map |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
442 |
|
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
443 |
# This dependency dance ensures that windows debug info files get rebuilt |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
444 |
# properly if deleted. |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
445 |
$$($1_TARGET): $$($1_DEBUGINFO_FILES) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
446 |
$$($1_DEBUGINFO_FILES): $$($1_EXPECTED_OBJS) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
447 |
|
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
448 |
else ifeq ($(OPENJDK_TARGET_OS), solaris) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
449 |
$1_DEBUGINFO_FILES := $$($1_OBJECT_DIR)/$$($1_NOSUFFIX).debuginfo |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
450 |
# gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set. |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
451 |
# Use $(FIX_EMPTY_SEC_HDR_FLAGS) to clear the SHF_ALLOC flag (if set) from |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
452 |
# empty section headers until a fixed $(OBJCOPY) is available. |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
453 |
# An empty section header has sh_addr == 0 and sh_size == 0. |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
454 |
# This problem has only been seen on Solaris X64, but we call this tool |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
455 |
# on all Solaris builds just in case. |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
456 |
# |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
457 |
# $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections. |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
458 |
# Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available. |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
459 |
$$($1_DEBUGINFO_FILES): $$($1_TARGET) \ |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
460 |
$(FIX_EMPTY_SEC_HDR_FLAGS) $(ADD_GNU_DEBUGLINK) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
461 |
$(RM) $$@ |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
462 |
$(FIX_EMPTY_SEC_HDR_FLAGS) $(LOG_INFO) $$< |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
463 |
$(OBJCOPY) --only-keep-debug $$< $$@ |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
464 |
$(CD) $$(@D) && $(ADD_GNU_DEBUGLINK) $(LOG_INFO) $$(@F) $$< |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
465 |
$(TOUCH) $$@ |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
466 |
|
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
467 |
else ifeq ($(OPENJDK_TARGET_OS), linux) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
468 |
$1_DEBUGINFO_FILES := $$($1_OBJECT_DIR)/$$($1_NOSUFFIX).debuginfo |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
469 |
$$($1_DEBUGINFO_FILES): $$($1_TARGET) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
470 |
$(RM) $$@ |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
471 |
$(OBJCOPY) --only-keep-debug $$< $$@ |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
472 |
$(CD) $$(@D) && $(OBJCOPY) --add-gnu-debuglink=$$(@F) $$< |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
473 |
$(TOUCH) $$@ |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
474 |
|
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
475 |
endif # No MacOS X support |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
476 |
|
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
477 |
ifeq ($(ZIP_DEBUGINFO_FILES), true) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
478 |
$1_DEBUGINFO_ZIP := $$($1_OBJECT_DIR)/$$($1_NOSUFFIX).diz |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
479 |
$1 += $$(subst $$($1_OBJECT_DIR),$$($1_OUTPUT_DIR),$$($1_DEBUGINFO_ZIP)) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
480 |
|
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
481 |
# The dependency on TARGET is needed on windows for debuginfo files |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
482 |
# to be rebuilt properly. |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
483 |
$$($1_DEBUGINFO_ZIP): $$($1_DEBUGINFO_FILES) $$($1_TARGET) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
484 |
$(CD) $$($1_OBJECT_DIR) \ |
23433
afe67de12b7d
8035134: JDK9 unix debug bundle manifest file list issue
erikj
parents:
23428
diff
changeset
|
485 |
&& $(ZIP) -q $$@ $$(notdir $$($1_DEBUGINFO_FILES)) |
22178
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
486 |
|
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
487 |
else |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
488 |
$1 += $$(subst $$($1_OBJECT_DIR),$$($1_OUTPUT_DIR),$$($1_DEBUGINFO_FILES)) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
489 |
endif |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
490 |
endif |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
491 |
endif # !MacOS X |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
492 |
endif # $1_DEBUG_SYMBOLS |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
493 |
endif # !STATIC_LIBRARY |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
494 |
|
20363 | 495 |
ifneq (,$$($1_LIBRARY)) |
496 |
# Generating a dynamic library. |
|
497 |
$1_EXTRA_LDFLAGS+=$$(call SET_SHARED_LIBRARY_NAME,$$($1_BASENAME)) |
|
498 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
499 |
$1_EXTRA_LDFLAGS+="-implib:$$($1_OBJECT_DIR)/$$($1_LIBRARY).lib" |
|
12801 | 500 |
endif |
501 |
||
20363 | 502 |
$1_EXTRA_LDFLAGS_SUFFIX += $(GLOBAL_LDFLAGS_SUFFIX) |
12801 | 503 |
|
20363 | 504 |
$$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_REAL_MAPFILE) |
505 |
$$(call LINKING_MSG,$$($1_BASENAME)) |
|
506 |
$$($1_LD) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(LD_OUT_OPTION)$$@ \ |
|
507 |
$$($1_EXPECTED_OBJS) $$($1_RES) $$($1_LDFLAGS_SUFFIX) \ |
|
508 |
$$($1_EXTRA_LDFLAGS_SUFFIX) |
|
22178
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
509 |
# Touch target to make sure it has a later time stamp than the debug |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
510 |
# symbol files to avoid unnecessary relinking on rebuild. |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
511 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
512 |
$(TOUCH) $$@ |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
513 |
endif |
13132 | 514 |
|
20363 | 515 |
endif |
13132 | 516 |
|
20363 | 517 |
ifneq (,$$($1_STATIC_LIBRARY)) |
518 |
# Generating a static library, ie object file archive. |
|
519 |
$$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) |
|
520 |
$$(call ARCHIVING_MSG,$$($1_LIBRARY)) |
|
22467 | 521 |
$(AR) $$($1_ARFLAGS) $(AR_OUT_OPTION)$$($1_TARGET) $$($1_EXPECTED_OBJS) \ |
20363 | 522 |
$$($1_RES) $$($1_LDFLAGS_SUFFIX) $$($1_EXTRA_LDFLAGS_SUFFIX) |
523 |
endif |
|
13132 | 524 |
|
20363 | 525 |
ifneq (,$$($1_PROGRAM)) |
526 |
# A executable binary has been specified, setup the target for it. |
|
527 |
$1_EXTRA_LDFLAGS_SUFFIX += $(GLOBAL_LDFLAGS_SUFFIX) |
|
17066 | 528 |
|
20363 | 529 |
$$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_GEN_MANIFEST) |
530 |
$$(call LINKING_EXE_MSG,$$($1_BASENAME)) |
|
531 |
$$($1_LDEXE) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(EXE_OUT_OPTION)$$($1_TARGET) \ |
|
532 |
$$($1_EXPECTED_OBJS) $$($1_RES) $$($1_LDFLAGS_SUFFIX) \ |
|
533 |
$$($1_EXTRA_LDFLAGS_SUFFIX) |
|
12801 | 534 |
ifneq (,$$($1_GEN_MANIFEST)) |
20363 | 535 |
$(MT) -nologo -manifest $$($1_GEN_MANIFEST) -outputresource:$$@;#1 |
12801 | 536 |
endif |
17661
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17354
diff
changeset
|
537 |
# This only works if the openjdk_codesign identity is present on the system. Let |
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17354
diff
changeset
|
538 |
# silently fail otherwise. |
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17354
diff
changeset
|
539 |
ifneq (,$(CODESIGN)) |
20363 | 540 |
ifneq (,$$($1_CODESIGN)) |
541 |
$(CODESIGN) -s openjdk_codesign $$@ |
|
542 |
endif |
|
17661
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17354
diff
changeset
|
543 |
endif |
22178
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
544 |
# Touch target to make sure it has a later time stamp than the debug |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
545 |
# symbol files to avoid unnecessary relinking on rebuild. |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
546 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
547 |
$(TOUCH) $$@ |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
548 |
endif |
5193a7e23f14
8025936: Windows .pdb and .map files does not have proper dependencies setup
erikj
parents:
21759
diff
changeset
|
549 |
|
20363 | 550 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
551 |
endef |