author | dcubed |
Tue, 15 Oct 2013 08:24:31 -0700 | |
changeset 20640 | 66c24722698e |
parent 18019 | ea4d5096e411 |
child 20641 | 59b55d8f4a75 |
permissions | -rw-r--r-- |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
20640
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
2 |
# Copyright (c) 2011, 2013, 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 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
30 |
ifeq (,$(_MAKEBASE_GMK)) |
12801 | 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 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
34 |
ifeq ($(COMPILER_TYPE),CC) |
14111 | 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 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
40 |
COMPILING_MSG= |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
41 |
LINKING_MSG= |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
42 |
LINKING_EXE_MSG= |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
43 |
ARCHIVING_MSG= |
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 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
47 |
# param 1 = BUILD_MYPACKAGE |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
48 |
# parma 2 = the source file name (..../alfa.c or .../beta.cpp) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
49 |
# param 3 = the bin dir that stores all .o (.obj) and .d files. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
50 |
# param 4 = the c flags to the compiler |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
51 |
# param 5 = the c compiler |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
52 |
# param 6 = the c++ flags to the compiler |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
53 |
# param 7 = the c++ compiler |
13132 | 54 |
# param 8 = the flags to the assembler |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
55 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
56 |
ifneq (,$$(filter %.c,$2)) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
57 |
# Compile as a C file |
13697 | 58 |
$1_$2_FLAGS=$4 $$($1_$(notdir $2)_CFLAGS) -DTHIS_FILE='"$$(<F)"' -c |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
59 |
$1_$2_COMP=$5 |
12801 | 60 |
$1_$2_DEP_FLAG:=$(C_FLAG_DEPS) |
61 |
else ifneq (,$$(filter %.m,$2)) |
|
62 |
# Compile as a objective-c file |
|
13697 | 63 |
$1_$2_FLAGS=-x objective-c $4 $$($1_$(notdir $2)_CFLAGS) -DTHIS_FILE='"$$(<F)"' -c |
12801 | 64 |
$1_$2_COMP=$5 |
65 |
$1_$2_DEP_FLAG:=$(C_FLAG_DEPS) |
|
13132 | 66 |
else ifneq (,$$(filter %.s,$2)) |
67 |
# Compile as assembler file |
|
13697 | 68 |
$1_$2_FLAGS=$8 -DTHIS_FILE='"$$(<F)"' |
13132 | 69 |
$1_$2_COMP=$(AS) |
70 |
$1_$2_DEP_FLAG:= |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
71 |
else |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
72 |
# Compile as a C++ file |
13697 | 73 |
$1_$2_FLAGS=$6 $$($1_$(notdir $2)_CXXFLAGS) -DTHIS_FILE='"$$(<F)"' -c |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
74 |
$1_$2_COMP=$7 |
12801 | 75 |
$1_$2_DEP_FLAG:=$(CXX_FLAG_DEPS) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
76 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
77 |
# Generate the .o (.obj) file name and place it in the bin dir. |
13132 | 78 |
$1_$2_OBJ:=$3/$$(patsubst %.cpp,%$(OBJ_SUFFIX),$$(patsubst %.c,%$(OBJ_SUFFIX),$$(patsubst %.m,%$(OBJ_SUFFIX),$$(patsubst %.s,%$(OBJ_SUFFIX),$$(notdir $2))))) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
79 |
# Only continue if this object file hasn't been processed already. This lets the first found |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
80 |
# source file override any other with the same name. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
81 |
ifeq (,$$(findstring $$($1_$2_OBJ),$$($1_OBJS_SO_FAR))) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
82 |
$1_OBJS_SO_FAR+=$$($1_$2_OBJ) |
13132 | 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) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
88 |
|
13132 | 89 |
ifeq ($(COMPILER_TYPE),CL) |
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 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
95 |
$$($1_$2_OBJ) : $2 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
96 |
ifeq ($(COMPILER_TYPE),CC) |
14111 | 97 |
$$(call COMPILING_MSG,$2,$$($1_TARGET)) |
16988
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
98 |
# The Sun studio compiler doesn't output the full path to the object file in the |
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. |
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
100 |
ifeq ($(COMPILER_NAME)$$(filter %.s,$2),ossc) |
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
101 |
$$($1_$2_COMP) $$($1_$2_FLAGS) $$($1_$2_DEP_FLAG) $$($1_$2_DEP).tmp $(CC_OUT_OPTION)$$($1_$2_OBJ) $2 |
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
102 |
$(SED) 's|^$$(@F):|$$@:|' $$($1_$2_DEP).tmp > $$($1_$2_DEP) |
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
103 |
else |
13132 | 104 |
$$($1_$2_COMP) $$($1_$2_FLAGS) $$($1_$2_DEP_FLAG) $$($1_$2_DEP) $(CC_OUT_OPTION)$$($1_$2_OBJ) $2 |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
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 |
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
108 |
# setting -showIncludes, all included files are printed. These are filtered out and |
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
109 |
# parsed into make dependences. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
110 |
ifeq ($(COMPILER_TYPE),CL) |
18019
ea4d5096e411
8016520: jdk native build does not fail on compilation error on windows
erikj
parents:
17661
diff
changeset
|
111 |
($$($1_$2_COMP) $$($1_$2_FLAGS) -showIncludes $$($1_$2_DEBUG_OUT_FLAGS) \ |
ea4d5096e411
8016520: jdk native build does not fail on compilation error on windows
erikj
parents:
17661
diff
changeset
|
112 |
$(CC_OUT_OPTION)$$($1_$2_OBJ) $2 ; echo $$$$? > $$($1_$2_DEP).exitvalue) \ |
ea4d5096e411
8016520: jdk native build does not fail on compilation error on windows
erikj
parents:
17661
diff
changeset
|
113 |
| $(TEE) $$($1_$2_DEP).raw | $(GREP) -v "^Note: including file:" \ |
ea4d5096e411
8016520: jdk native build does not fail on compilation error on windows
erikj
parents:
17661
diff
changeset
|
114 |
&& exit `cat $$($1_$2_DEP).exitvalue` |
ea4d5096e411
8016520: jdk native build does not fail on compilation error on windows
erikj
parents:
17661
diff
changeset
|
115 |
$(RM) $$($1_$2_DEP).exitvalue |
16988
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
116 |
($(ECHO) $$@: \\ \ |
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
117 |
&& $(SED) -e '/^Note: including file:/!d' \ |
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
118 |
-e 's|Note: including file: *||' \ |
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
119 |
-e 's|\\|/|g' \ |
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
120 |
-e 's|^\([a-zA-Z]\):|/cygdrive/\1|g' \ |
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
121 |
-e '/$(subst /,\/,$(TOPDIR))/!d' \ |
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
122 |
-e 's|$$$$| \\|g' \ |
53de314b1c30
8011687: Support correct dependencies from header files on windows and solaris
erikj
parents:
15051
diff
changeset
|
123 |
$$($1_$2_DEP).raw) > $$($1_$2_DEP) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
124 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
125 |
endif |
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 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
129 |
# param 1 is for example BUILD_MYPACKAGE |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
130 |
# param 2,3,4,5,6,7,8 are named args. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
131 |
# SRC one or more directory roots to scan for C/C++ files. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
132 |
# LANG C or C++ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
133 |
# CFLAGS the compiler flags to be used, used both for C and C++. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
134 |
# CXXFLAGS the compiler flags to be used for c++, if set overrides CFLAGS. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
135 |
# LDFLAGS the linker flags to be used, used both for C and C++. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
136 |
# LDFLAGS_SUFFIX the linker flags to be added last on the commandline |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
137 |
# typically the libraries linked to. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
138 |
# ARFLAGS the archiver flags to be used |
13132 | 139 |
# OBJECT_DIR the directory where we store the object files |
140 |
# LIBRARY the resulting library file |
|
141 |
# PROGRAM the resulting exec file |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
142 |
# INCLUDES only pick source from these directories |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
143 |
# EXCLUDES do not pick source from these directories |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
144 |
# INCLUDE_FILES only compile exactly these files! |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
145 |
# EXCLUDE_FILES with these names |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
146 |
# VERSIONINFO_RESOURCE Input file for RC. Setting this implies that RC will be run |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
147 |
# RC_FLAGS flags for RC. |
12801 | 148 |
# MAPFILE mapfile |
149 |
# REORDER reorder file |
|
13132 | 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) |
|
13697 | 153 |
# OPTIMIZATION sets optimization level to NONE, LOW, HIGH, HIGHEST |
17661
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17354
diff
changeset
|
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)) |
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17354
diff
changeset
|
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)) |
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17354
diff
changeset
|
156 |
$(if $(27),$(error Internal makefile error: Too many arguments to SetupNativeCompilation, please update NativeCompilation.gmk)) |
13132 | 157 |
|
158 |
ifneq (,$$($1_BIN)) |
|
159 |
$$(error BIN has been replaced with OBJECT_DIR) |
|
160 |
endif |
|
161 |
||
162 |
ifneq (,$$($1_LIB)) |
|
163 |
$$(error LIB has been replaced with LIBRARY) |
|
164 |
endif |
|
165 |
||
166 |
ifneq (,$$($1_EXE)) |
|
167 |
$$(error EXE has been replaced with PROGRAM) |
|
168 |
endif |
|
169 |
||
170 |
ifneq (,$$($1_LIBRARY)) |
|
171 |
ifeq (,$$($1_OUTPUT_DIR)) |
|
172 |
$$(error LIBRARY requires OUTPUT_DIR) |
|
173 |
endif |
|
174 |
||
175 |
ifneq ($$($1_LIBRARY),$(basename $$($1_LIBRARY))) |
|
176 |
$$(error directory of LIBRARY should be specified using OUTPUT_DIR) |
|
177 |
endif |
|
178 |
||
179 |
ifneq (,$(findstring $(SHARED_LIBRARY_SUFFIX),$$($1_LIBRARY))) |
|
180 |
$$(error LIBRARY should be specified without SHARED_LIBRARY_SUFFIX: $(SHARED_LIBRARY_SUFFIX)) |
|
181 |
endif |
|
182 |
||
183 |
ifneq (,$(findstring $(LIBRARY_PREFIX),$$($1_LIBRARY))) |
|
184 |
$$(error LIBRARY should be specified without LIBRARY_PREFIX: $(LIBRARY_PREFIX)) |
|
185 |
endif |
|
186 |
||
187 |
$1_BASENAME:=$(LIBRARY_PREFIX)$$($1_LIBRARY)$(SHARED_LIBRARY_SUFFIX) |
|
188 |
$1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME) |
|
189 |
||
190 |
endif |
|
191 |
||
192 |
ifneq (,$$($1_STATIC_LIBRARY)) |
|
193 |
ifeq (,$$($1_OUTPUT_DIR)) |
|
194 |
$$(error STATIC_LIBRARY requires OUTPUT_DIR) |
|
195 |
endif |
|
196 |
||
197 |
ifneq ($$($1_STATIC_LIBRARY),$(basename $$($1_STATIC_LIBRARY))) |
|
198 |
$$(error directory of STATIC_LIBRARY should be specified using OUTPUT_DIR) |
|
199 |
endif |
|
200 |
||
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 |
|
204 |
||
205 |
ifneq (,$(findstring $(LIBRARY_PREFIX),$$($1_STATIC_LIBRARY))) |
|
206 |
$$(error STATIC_LIBRARY should be specified without LIBRARY_PREFIX: $(LIBRARY_PREFIX)) |
|
207 |
endif |
|
208 |
||
209 |
$1_BASENAME:=$(LIBRARY_PREFIX)$$($1_STATIC_LIBRARY)$(STATIC_LIBRARY_SUFFIX) |
|
210 |
$1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME) |
|
211 |
endif |
|
212 |
||
213 |
ifneq (,$$($1_PROGRAM)) |
|
214 |
ifeq (,$$($1_OUTPUT_DIR)) |
|
215 |
$$(error PROGRAM requires OUTPUT_DIR) |
|
216 |
endif |
|
217 |
||
218 |
ifneq ($$($1_PROGRAM),$(basename $$($1_PROGRAM))) |
|
219 |
$$(error directory of PROGRAM should be specified using OUTPUT_DIR) |
|
220 |
endif |
|
221 |
||
222 |
ifneq (,$(findstring $(EXE_SUFFIX),$$($1_PROGRAM))) |
|
223 |
$$(error PROGRAM should be specified without EXE_SUFFIX: $(EXE_SUFFIX)) |
|
224 |
endif |
|
225 |
||
226 |
$1_BASENAME:=$$($1_PROGRAM)$(EXE_SUFFIX) |
|
227 |
$1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME) |
|
228 |
||
229 |
endif |
|
230 |
||
231 |
ifeq (,$$($1_TARGET)) |
|
232 |
$$(error Neither PROGRAM, LIBRARY nor STATIC_LIBRARY has been specified for SetupNativeCompilation) |
|
233 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
234 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
235 |
ifeq (,$$($1_LANG)) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
236 |
$$(error You have to specify LANG for native compilation $1) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
237 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
238 |
ifeq (C,$$($1_LANG)) |
14111 | 239 |
ifeq ($$($1_LDEXE),) |
13132 | 240 |
$1_LDEXE:=$(LDEXE) |
14111 | 241 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
242 |
$1_LD:=$(LD) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
243 |
else |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
244 |
ifeq (C++,$$($1_LANG)) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
245 |
$1_LD:=$(LDCXX) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
246 |
$1_LDEXE:=$(LDEXECXX) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
247 |
else |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
248 |
$$(error Unknown native language $$($1_LANG) for $1) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
249 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
250 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
251 |
|
13132 | 252 |
ifeq ($$($1_CC),) |
253 |
$1_CC:=$(CC) |
|
254 |
endif |
|
255 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
256 |
# Make sure the dirs exist. |
14111 | 257 |
$$(eval $$(call MakeDir,$$($1_OBJECT_DIR) $$($1_OUTPUT_DIR))) |
258 |
$$(foreach d,$$($1_SRC), $$(if $$(wildcard $$d),,$$(error SRC specified to SetupNativeCompilation $1 contains missing directory $$d))) |
|
259 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
260 |
# Find all files in the source trees. Sort to remove duplicates. |
15051
d32ad37472e6
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14615
diff
changeset
|
261 |
$1_ALL_SRCS := $$(sort $$(call CacheFind,$$($1_SRC))) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
262 |
# Extract the C/C++ files. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
263 |
$1_EXCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_EXCLUDE_FILES))) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
264 |
$1_INCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_INCLUDE_FILES))) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
265 |
ifneq ($$($1_EXCLUDE_FILES),) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
266 |
$1_EXCLUDE_FILES:=$$(addprefix %,$$($1_EXCLUDE_FILES)) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
267 |
endif |
13132 | 268 |
$1_SRCS := $$(filter-out $$($1_EXCLUDE_FILES),$$(filter %.s %.c %.cpp %.m,$$($1_ALL_SRCS))) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
269 |
ifneq (,$$(strip $$($1_INCLUDE_FILES))) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
270 |
$1_SRCS := $$(filter $$($1_INCLUDE_FILES),$$($1_SRCS)) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
271 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
272 |
ifeq (,$$($1_SRCS)) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
273 |
$$(error No sources found for $1 when looking inside the dirs $$($1_SRC)) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
274 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
275 |
# There can be only a single bin dir root, no need to foreach over the roots. |
13132 | 276 |
$1_BINS := $$(wildcard $$($1_OBJECT_DIR)/*$(OBJ_SUFFIX)) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
277 |
# Now we have a list of all c/c++ files to compile: $$($1_SRCS) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
278 |
# and we have a list of all existing object files: $$($1_BINS) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
279 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
280 |
# Prepend the source/bin path to the filter expressions. Then do the filtering. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
281 |
ifneq ($$($1_INCLUDES),) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
282 |
$1_SRC_INCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_INCLUDES)))) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
283 |
$1_SRCS := $$(filter $$($1_SRC_INCLUDES),$$($1_SRCS)) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
284 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
285 |
ifneq ($$($1_EXCLUDES),) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
286 |
$1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES)))) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
287 |
$1_SRCS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_SRCS)) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
288 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
289 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
290 |
# Calculate the expected output from compiling the sources (sort to remove duplicates. Also provides |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
291 |
# a reproducable order on the input files to the linker). |
13132 | 292 |
$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)))))))) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
293 |
# Are there too many object files on disk? Perhaps because some source file was removed? |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
294 |
$1_SUPERFLOUS_OBJS:=$$(sort $$(filter-out $$($1_EXPECTED_OBJS),$$($1_BINS))) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
295 |
# Clean out the superfluous object files. |
14111 | 296 |
ifneq ($$($1_SUPERFLUOUS_OBJS),) |
297 |
$$(shell $(RM) -f $$($1_SUPERFLUOUS_OBJS)) |
|
298 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
299 |
|
13132 | 300 |
# Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables for CFLAGS. |
301 |
$1_EXTRA_CFLAGS:=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_CFLAGS_$(OPENJDK_TARGET_OS)) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
302 |
ifneq ($(DEBUG_LEVEL),release) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
303 |
# Pickup extra debug dependent variables for CFLAGS |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
304 |
$1_EXTRA_CFLAGS+=$$($1_CFLAGS_debug) |
13132 | 305 |
$1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)_debug) |
306 |
$1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS)_debug) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
307 |
else |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
308 |
$1_EXTRA_CFLAGS+=$$($1_CFLAGS_release) |
13132 | 309 |
$1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)_release) |
310 |
$1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS)_release) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
311 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
312 |
|
13132 | 313 |
# Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables for CXXFLAGS. |
314 |
$1_EXTRA_CXXFLAGS:=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_CXXFLAGS_$(OPENJDK_TARGET_OS)) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
315 |
ifneq ($(DEBUG_LEVEL),release) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
316 |
# Pickup extra debug dependent variables for CXXFLAGS |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
317 |
$1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_debug) |
13132 | 318 |
$1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)_debug) |
319 |
$1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS)_debug) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
320 |
else |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
321 |
$1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_release) |
13132 | 322 |
$1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)_release) |
323 |
$1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS)_release) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
324 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
325 |
|
13697 | 326 |
ifneq (,$$($1_DEBUG_SYMBOLS)) |
14615
2616975e69d3
8001753: build-infra: mismatch with full debug symbol control for hotspot
erikj
parents:
14111
diff
changeset
|
327 |
ifeq ($(ENABLE_DEBUG_SYMBOLS), true) |
17354
46c3a4b9ef6d
8015087: Provide debugging information for programs
andrew
parents:
17070
diff
changeset
|
328 |
ifdef OPENJDK |
46c3a4b9ef6d
8015087: Provide debugging information for programs
andrew
parents:
17070
diff
changeset
|
329 |
# Always add debug symbols |
13697 | 330 |
$1_EXTRA_CFLAGS+=$(CFLAGS_DEBUG_SYMBOLS) |
331 |
$1_EXTRA_CXXFLAGS+=$(CXXFLAGS_DEBUG_SYMBOLS) |
|
17354
46c3a4b9ef6d
8015087: Provide debugging information for programs
andrew
parents:
17070
diff
changeset
|
332 |
else |
46c3a4b9ef6d
8015087: Provide debugging information for programs
andrew
parents:
17070
diff
changeset
|
333 |
# Programs don't get the debug symbols added in the old build. It's not clear if |
46c3a4b9ef6d
8015087: Provide debugging information for programs
andrew
parents:
17070
diff
changeset
|
334 |
# this is intentional. |
46c3a4b9ef6d
8015087: Provide debugging information for programs
andrew
parents:
17070
diff
changeset
|
335 |
ifeq ($$($1_PROGRAM),) |
46c3a4b9ef6d
8015087: Provide debugging information for programs
andrew
parents:
17070
diff
changeset
|
336 |
$1_EXTRA_CFLAGS+=$(CFLAGS_DEBUG_SYMBOLS) |
46c3a4b9ef6d
8015087: Provide debugging information for programs
andrew
parents:
17070
diff
changeset
|
337 |
$1_EXTRA_CXXFLAGS+=$(CXXFLAGS_DEBUG_SYMBOLS) |
46c3a4b9ef6d
8015087: Provide debugging information for programs
andrew
parents:
17070
diff
changeset
|
338 |
endif |
13697 | 339 |
endif |
340 |
endif |
|
341 |
endif |
|
342 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
343 |
ifeq ($$($1_CXXFLAGS),) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
344 |
$1_CXXFLAGS:=$$($1_CFLAGS) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
345 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
346 |
ifeq ($$(strip $$($1_EXTRA_CXXFLAGS)),) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
347 |
$1_EXTRA_CXXFLAGS:=$$($1_EXTRA_CFLAGS) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
348 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
349 |
|
12801 | 350 |
ifneq (,$$($1_REORDER)) |
351 |
$1_EXTRA_CFLAGS += $$(C_FLAG_REORDER) |
|
352 |
$1_EXTRA_CXXFLAGS += $$(CXX_FLAG_REORDER) |
|
353 |
endif |
|
354 |
||
13132 | 355 |
ifeq (NONE, $$($1_OPTIMIZATION)) |
13697 | 356 |
$1_EXTRA_CFLAGS += $(C_O_FLAG_NONE) |
357 |
$1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_NONE) |
|
13132 | 358 |
else ifeq (LOW, $$($1_OPTIMIZATION)) |
13697 | 359 |
$1_EXTRA_CFLAGS += $(C_O_FLAG_NORM) |
360 |
$1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_NORM) |
|
13132 | 361 |
else ifeq (HIGH, $$($1_OPTIMIZATION)) |
13697 | 362 |
$1_EXTRA_CFLAGS += $(C_O_FLAG_HI) |
363 |
$1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_HI) |
|
13132 | 364 |
else ifeq (HIGHEST, $$($1_OPTIMIZATION)) |
13697 | 365 |
$1_EXTRA_CFLAGS += $(C_O_FLAG_HIGHEST) |
366 |
$1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_HIGHEST) |
|
13132 | 367 |
else ifneq (, $$($1_OPTIMIZATION)) |
13697 | 368 |
$$(error Unknown value for OPTIMIZATION: $$($1_OPTIMIZATION)) |
13132 | 369 |
endif |
370 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
371 |
# Now call add_native_source for each source file we are going to compile. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
372 |
$$(foreach p,$$($1_SRCS),\ |
13132 | 373 |
$$(eval $$(call add_native_source,$1,$$p,$$($1_OBJECT_DIR),\ |
374 |
$$($1_CFLAGS) $$($1_EXTRA_CFLAGS),$$($1_CC),\ |
|
375 |
$$($1_CXXFLAGS) $$($1_EXTRA_CXXFLAGS),$(CXX),$$($1_ASFLAGS)))) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
376 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
377 |
# On windows we need to create a resource file |
13697 | 378 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
379 |
ifneq (,$$($1_VERSIONINFO_RESOURCE)) |
13132 | 380 |
$1_RES:=$$($1_OBJECT_DIR)/$$($1_BASENAME).res |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
381 |
$$($1_RES): $$($1_VERSIONINFO_RESOURCE) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
382 |
$(RC) $$($1_RC_FLAGS) $(CC_OUT_OPTION)$$@ $$($1_VERSIONINFO_RESOURCE) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
383 |
endif |
12801 | 384 |
ifneq (,$$($1_MANIFEST)) |
13132 | 385 |
$1_GEN_MANIFEST:=$$($1_OBJECT_DIR)/$$($1_PROGRAM).manifest |
12801 | 386 |
IMVERSIONVALUE:=$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION).$(JDK_UPDATE_VERSION).$(COOKED_BUILD_NUMBER) |
387 |
$$($1_GEN_MANIFEST): $$($1_MANIFEST) |
|
388 |
$(SED) 's%IMVERSION%$$(IMVERSIONVALUE)%g;s%PROGRAM%$$($1_PROGRAM)%g' $$< > $$@ |
|
389 |
endif |
|
390 |
endif |
|
391 |
||
392 |
# mapfile doesnt seem to be implemented on macosx (yet??) |
|
13132 | 393 |
ifneq ($(OPENJDK_TARGET_OS),macosx) |
394 |
ifneq ($(OPENJDK_TARGET_OS),windows) |
|
395 |
$1_REAL_MAPFILE:=$$($1_MAPFILE) |
|
12801 | 396 |
ifneq (,$$($1_REORDER)) |
13132 | 397 |
$1_REAL_MAPFILE:=$$($1_OBJECT_DIR)/mapfile |
12801 | 398 |
|
399 |
$$($1_REAL_MAPFILE) : $$($1_MAPFILE) $$($1_REORDER) |
|
400 |
$$(MKDIR) -p $$(@D) |
|
401 |
$$(CP) $$($1_MAPFILE) $$@.tmp |
|
13132 | 402 |
$$(SED) -e 's=OUTPUTDIR=$$($1_OBJECT_DIR)=' $$($1_REORDER) >> $$@.tmp |
12801 | 403 |
$$(MV) $$@.tmp $$@ |
404 |
endif |
|
405 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
406 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
407 |
|
13697 | 408 |
# Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables |
409 |
# for LDFLAGS and LDFLAGS_SUFFIX |
|
13132 | 410 |
$1_EXTRA_LDFLAGS:=$$($1_LDFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_LDFLAGS_$(OPENJDK_TARGET_OS)) |
411 |
$1_EXTRA_LDFLAGS_SUFFIX:=$$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS_API)) $$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS)) |
|
12801 | 412 |
ifneq (,$$($1_REAL_MAPFILE)) |
13132 | 413 |
$1_EXTRA_LDFLAGS += $(call SET_SHARED_LIBRARY_MAPFILE,$$($1_REAL_MAPFILE)) |
12801 | 414 |
endif |
415 |
||
13132 | 416 |
$1 := $$($1_TARGET) |
417 |
ifneq (,$$($1_LIBRARY)) |
|
418 |
# Generating a dynamic library. |
|
419 |
$1_EXTRA_LDFLAGS+=$$(call SET_SHARED_LIBRARY_NAME,$$($1_BASENAME)) |
|
420 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
421 |
$1_EXTRA_LDFLAGS+="-implib:$$($1_OBJECT_DIR)/$$($1_LIBRARY).lib" |
|
422 |
endif |
|
423 |
||
17066 | 424 |
$1_EXTRA_LDFLAGS_SUFFIX += $(GLOBAL_LDFLAGS_SUFFIX) |
425 |
||
13132 | 426 |
ifneq (,$$($1_DEBUG_SYMBOLS)) |
14615
2616975e69d3
8001753: build-infra: mismatch with full debug symbol control for hotspot
erikj
parents:
14111
diff
changeset
|
427 |
ifeq ($(ENABLE_DEBUG_SYMBOLS), true) |
13132 | 428 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
429 |
$1_EXTRA_LDFLAGS+="-pdb:$$($1_OBJECT_DIR)/$$($1_LIBRARY).pdb" \ |
|
430 |
"-map:$$($1_OBJECT_DIR)/$$($1_LIBRARY).map" |
|
431 |
endif |
|
432 |
||
13697 | 433 |
ifneq ($$($1_OUTPUT_DIR),$$($1_OBJECT_DIR)) |
434 |
$$($1_OUTPUT_DIR)/% : $$($1_OBJECT_DIR)/% |
|
13132 | 435 |
$(CP) $$< $$@ |
13697 | 436 |
endif |
13132 | 437 |
|
20640
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
438 |
ifneq ($(OPENJDK_TARGET_OS), macosx) # OBJCOPY is not used on MacOS X |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
439 |
ifneq ($(OPENJDK_TARGET_OS), windows) # nor on Windows |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
440 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
441 |
# gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set. |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
442 |
# Use $(FIX_EMPTY_SEC_HDR_FLAGS) to clear the SHF_ALLOC flag (if set) from |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
443 |
# empty section headers until a fixed $(OBJCOPY) is available. |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
444 |
# An empty section header has sh_addr == 0 and sh_size == 0. |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
445 |
# This problem has only been seen on Solaris X64, but we call this tool |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
446 |
# on all Solaris builds just in case. |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
447 |
# |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
448 |
# $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections. |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
449 |
# Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available. |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
450 |
$$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo : $$($1_TARGET) \ |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
451 |
$(FIX_EMPTY_SEC_HDR_FLAGS) $(ADD_GNU_DEBUGLINK) |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
452 |
$(RM) $$@ |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
453 |
$(FIX_EMPTY_SEC_HDR_FLAGS) $(LOG_INFO) $$< |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
454 |
$(OBJCOPY) --only-keep-debug $$< $$@ |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
455 |
$(CD) $$(@D) && $(ADD_GNU_DEBUGLINK) $(LOG_INFO) $$(@F) $$< |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
456 |
else # not solaris |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
457 |
$$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo : $$($1_TARGET) |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
458 |
$(RM) $$@ |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
459 |
$(OBJCOPY) --only-keep-debug $$< $$@ |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
460 |
$(CD) $$(@D) && $(OBJCOPY) --add-gnu-debuglink=$$(@F) $$< |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
461 |
endif # Touch to not retrigger rule on rebuild |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
13132
diff
changeset
|
462 |
$(TOUCH) $$@ |
20640
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
463 |
endif # !windows |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
464 |
endif # !macosx |
13132 | 465 |
|
14615
2616975e69d3
8001753: build-infra: mismatch with full debug symbol control for hotspot
erikj
parents:
14111
diff
changeset
|
466 |
ifeq ($(ZIP_DEBUGINFO_FILES), true) |
20640
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
467 |
ifneq ($(OPENJDK_TARGET_OS), macosx) # no MacOS X support yet |
13132 | 468 |
$1 += $$($1_OUTPUT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz |
469 |
||
470 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
471 |
$$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz : $$($1_TARGET) |
|
472 |
$(CD) $$($1_OBJECT_DIR) \ |
|
473 |
&& $(ZIP) -q $$@ $$($1_LIBRARY).map $$($1_LIBRARY).pdb |
|
474 |
else |
|
475 |
$$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz : $$($1_TARGET) \ |
|
476 |
$$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo |
|
477 |
$(CD) $$($1_OBJECT_DIR) \ |
|
478 |
&& $(ZIP) -q $$@ $$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo |
|
479 |
endif |
|
20640
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
480 |
endif # no MacOS X support yet |
13132 | 481 |
else |
482 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
483 |
$1 += $$($1_OUTPUT_DIR)/$$($1_LIBRARY).map \ |
|
484 |
$$($1_OUTPUT_DIR)/$$($1_LIBRARY).pdb |
|
20640
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
485 |
else ifneq ($(OPENJDK_TARGET_OS), macosx) # MacOS X does not use .debuginfo files |
13132 | 486 |
$1 += $$($1_OUTPUT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo |
487 |
endif |
|
488 |
endif |
|
489 |
endif |
|
490 |
endif |
|
491 |
||
492 |
$$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_REAL_MAPFILE) |
|
493 |
$$(call LINKING_MSG,$$($1_BASENAME)) |
|
494 |
$$($1_LD) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(LD_OUT_OPTION)$$@ \ |
|
495 |
$$($1_EXPECTED_OBJS) $$($1_RES) $$($1_LDFLAGS_SUFFIX) \ |
|
496 |
$$($1_EXTRA_LDFLAGS_SUFFIX) |
|
497 |
||
498 |
endif |
|
499 |
||
500 |
ifneq (,$$($1_STATIC_LIBRARY)) |
|
501 |
# Generating a static library, ie object file archive. |
|
502 |
$$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) |
|
503 |
$$(call ARCHIVING_MSG,$$($1_LIBRARY)) |
|
504 |
$(AR) $$($1_AR_FLAGS) $(AR_OUT_OPTION)$$($1_TARGET) $$($1_EXPECTED_OBJS) \ |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
505 |
$$($1_RES) $$($1_LDFLAGS_SUFFIX) $$($1_EXTRA_LDFLAGS_SUFFIX) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
506 |
endif |
13132 | 507 |
|
508 |
ifneq (,$$($1_PROGRAM)) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
509 |
# A executable binary has been specified, setup the target for it. |
13132 | 510 |
ifneq (,$$($1_DEBUG_SYMBOLS)) |
14615
2616975e69d3
8001753: build-infra: mismatch with full debug symbol control for hotspot
erikj
parents:
14111
diff
changeset
|
511 |
ifeq ($(ENABLE_DEBUG_SYMBOLS), true) |
13132 | 512 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
513 |
$1_EXTRA_LDFLAGS+="-pdb:$$($1_OBJECT_DIR)/$$($1_PROGRAM).pdb" \ |
|
514 |
"-map:$$($1_OBJECT_DIR)/$$($1_PROGRAM).map" |
|
515 |
endif |
|
516 |
||
13697 | 517 |
ifneq ($$($1_OUTPUT_DIR),$$($1_OBJECT_DIR)) |
518 |
$$($1_OUTPUT_DIR)/% : $$($1_OBJECT_DIR)/% |
|
13132 | 519 |
$(CP) $$< $$@ |
13697 | 520 |
endif |
13132 | 521 |
|
20640
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
522 |
ifneq ($(OPENJDK_TARGET_OS), macosx) # OBJCOPY is not used on MacOS X |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
523 |
ifneq ($(OPENJDK_TARGET_OS), windows) # nor on Windows |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
524 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
525 |
# gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set. |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
526 |
# Use $(FIX_EMPTY_SEC_HDR_FLAGS) to clear the SHF_ALLOC flag (if set) from |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
527 |
# empty section headers until a fixed $(OBJCOPY) is available. |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
528 |
# An empty section header has sh_addr == 0 and sh_size == 0. |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
529 |
# This problem has only been seen on Solaris X64, but we call this tool |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
530 |
# on all Solaris builds just in case. |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
531 |
# |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
532 |
# $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections. |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
533 |
# Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available. |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
534 |
$$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo : $$($1_TARGET) \ |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
535 |
$(FIX_EMPTY_SEC_HDR_FLAGS) $(ADD_GNU_DEBUGLINK) |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
536 |
$(RM) $$@ |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
537 |
$(FIX_EMPTY_SEC_HDR_FLAGS) $(LOG_INFO) $$< |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
538 |
$(OBJCOPY) --only-keep-debug $$< $$@ |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
539 |
$(CD) $$(@D) && $(ADD_GNU_DEBUGLINK) $(LOG_INFO) $$(@F) $$< |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
540 |
else # not solaris |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
541 |
$$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo : $$($1_TARGET) |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
542 |
$(RM) $$@ |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
543 |
$(OBJCOPY) --only-keep-debug $$< $$@ |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
544 |
$(CD) $$(@D) && $(OBJCOPY) --add-gnu-debuglink=$$(@F) $$< |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
545 |
endif |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
546 |
$(TOUCH) $$@ |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
547 |
endif # !windows |
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
548 |
endif # !macosx |
13132 | 549 |
|
14615
2616975e69d3
8001753: build-infra: mismatch with full debug symbol control for hotspot
erikj
parents:
14111
diff
changeset
|
550 |
ifeq ($(ZIP_DEBUGINFO_FILES), true) |
20640
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
551 |
ifneq ($(OPENJDK_TARGET_OS), macosx) # no MacOS X support yet |
13132 | 552 |
$1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).diz |
553 |
||
554 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
555 |
$$($1_OBJECT_DIR)/$$($1_PROGRAM).diz : $$($1_TARGET) |
|
556 |
$(CD) $$($1_OBJECT_DIR) \ |
|
557 |
&& $(ZIP) -q $$@ $$($1_PROGRAM).map $$($1_PROGRAM).pdb |
|
558 |
else |
|
559 |
$$($1_OBJECT_DIR)/$$(PROGRAM_PREFIX)$$($1_PROGRAM).diz : $$($1_TARGET) \ |
|
560 |
$$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo |
|
561 |
$(CD) $$($1_OBJECT_DIR) \ |
|
562 |
&& $(ZIP) -q $$@ $$($1_PROGRAM).debuginfo |
|
563 |
endif |
|
20640
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
564 |
endif # no MacOS X support yet |
13132 | 565 |
else |
566 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
567 |
$1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).map \ |
|
568 |
$$($1_OUTPUT_DIR)/$$($1_PROGRAM).pdb |
|
20640
66c24722698e
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18019
diff
changeset
|
569 |
else ifneq ($(OPENJDK_TARGET_OS), macosx) # MacOS X does not use .debuginfo files |
13132 | 570 |
$1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).debuginfo |
571 |
endif |
|
572 |
endif |
|
573 |
endif |
|
574 |
endif |
|
575 |
||
17066 | 576 |
$1_EXTRA_LDFLAGS_SUFFIX += $(GLOBAL_LDFLAGS_SUFFIX) |
577 |
||
13132 | 578 |
$$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_GEN_MANIFEST) |
579 |
$$(call LINKING_EXE_MSG,$$($1_BASENAME)) |
|
580 |
$$($1_LDEXE) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(EXE_OUT_OPTION)$$($1_TARGET) \ |
|
12801 | 581 |
$$($1_EXPECTED_OBJS) $$($1_RES) $$($1_LDFLAGS_SUFFIX) \ |
582 |
$$($1_EXTRA_LDFLAGS_SUFFIX) |
|
583 |
ifneq (,$$($1_GEN_MANIFEST)) |
|
14111 | 584 |
$(MT) -nologo -manifest $$($1_GEN_MANIFEST) -outputresource:$$@;#1 |
12801 | 585 |
endif |
17661
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17354
diff
changeset
|
586 |
# 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
|
587 |
# silently fail otherwise. |
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17354
diff
changeset
|
588 |
ifneq (,$(CODESIGN)) |
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17354
diff
changeset
|
589 |
ifneq (,$$($1_CODESIGN)) |
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17354
diff
changeset
|
590 |
$(CODESIGN) -s openjdk_codesign $$@ |
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17354
diff
changeset
|
591 |
endif |
55c5e0f7b9cc
8013489: New build system does not run codesign on SA-related launchers on OS X
erikj
parents:
17354
diff
changeset
|
592 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
593 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
594 |
endef |