NativeCompilation.gmk revision 1383:64b748017ca7
1#
2# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# This code is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License version 2 only, as
7# published by the Free Software Foundation.  Oracle designates this
8# particular file as subject to the "Classpath" exception as provided
9# by Oracle in the LICENSE file that accompanied this code.
10#
11# This code is distributed in the hope that it will be useful, but WITHOUT
12# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14# version 2 for more details (a copy is included in the LICENSE file that
15# accompanied this code).
16#
17# You should have received a copy of the GNU General Public License version
18# 2 along with this work; if not, write to the Free Software Foundation,
19# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20#
21# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22# or visit www.oracle.com if you need additional information or have any
23# questions.
24#
25
26# When you read this source. Remember that $(sort ...) has the side effect
27# of removing duplicates. It is actually this side effect that is
28# desired whenever sort is used below!
29
30ifndef _NATIVE_COMPILATION_GMK
31_NATIVE_COMPILATION_GMK := 1
32
33ifeq (,$(_MAKEBASE_GMK))
34  $(error You must include MakeBase.gmk prior to including NativeCompilation.gmk)
35endif
36
37# Extensions of files handled by this macro.
38NATIVE_SOURCE_EXTENSIONS := %.s %.c %.cpp %.m %.mm
39
40# Replaces native source extensions with the object file extension in a string.
41# Param 1: the string containing source file names with extensions
42# The surrounding strip is needed to keep additional whitespace out
43define replace_with_obj_extension
44$(strip \
45  $(foreach extension, $(NATIVE_SOURCE_EXTENSIONS), \
46      $(patsubst $(extension),%$(OBJ_SUFFIX),$(filter $(extension),$1))) \
47)
48endef
49
50ifeq ($(OPENJDK_BUILD_OS_ENV), windows.cygwin)
51  UNIX_PATH_PREFIX := /cygdrive
52else ifeq ($(OPENJDK_BUILD_OS_ENV), windows.msys)
53  UNIX_PATH_PREFIX :=
54endif
55
56# This pattern is used to transform the output of the microsoft CL compiler
57# into a make syntax dependency file (.d)
58WINDOWS_SHOWINCLUDE_SED_PATTERN := \
59    -e '/^Note: including file:/!d' \
60    -e 's|Note: including file: *||' \
61    -e 's|\\|/|g' \
62    -e 's|^\([a-zA-Z]\):|$(UNIX_PATH_PREFIX)/\1|g' \
63    -e '\|$(TOPDIR)|I !d' \
64    -e 's|$$$$| \\|g' \
65    #
66
67# This pattern is used to transform a dependency file (.d) to a list
68# of make targets for dependent files (.d.targets)
69DEPENDENCY_TARGET_SED_PATTERN := \
70    -e 's/\#.*//' \
71    -e 's/^[^:]*: *//' \
72    -e 's/ *\\$$$$//' \
73    -e '/^$$$$/ d' \
74    -e 's/$$$$/ :/' \
75    #
76
77define add_native_source
78  # param 1 = BUILD_MYPACKAGE
79  # parma 2 = the source file name (..../alfa.c or .../beta.cpp)
80  # param 3 = the bin dir that stores all .o (.obj) and .d files.
81  # param 4 = the c flags to the compiler
82  # param 5 = the c compiler
83  # param 6 = the c++ flags to the compiler
84  # param 7 = the c++ compiler
85  # param 8 = the flags to the assembler
86
87  ifneq (,$$(filter %.c,$2))
88    # Compile as a C file
89    $1_$2_FLAGS=$(CFLAGS_CCACHE) $4 $$($1_$(notdir $2)_CFLAGS) -DTHIS_FILE='"$$(<F)"' -c
90    $1_$2_COMP=$5
91    $1_$2_DEP_FLAG:=$(C_FLAG_DEPS)
92  else ifneq (,$$(filter %.m,$2))
93    # Compile as an Objective-C file
94    $1_$2_FLAGS=-x objective-c $(CFLAGS_CCACHE) $4 $$($1_$(notdir $2)_CFLAGS) -DTHIS_FILE='"$$(<F)"' -c
95    $1_$2_COMP=$5
96    $1_$2_DEP_FLAG:=$(C_FLAG_DEPS)
97  else ifneq (,$$(filter %.s,$2))
98    # Compile as assembler file
99    $1_$2_FLAGS=$8 -DTHIS_FILE='"$$(<F)"'
100    $1_$2_COMP=$(AS)
101    $1_$2_DEP_FLAG:=
102  else ifneq (,$$(filter %.cpp,$2)$$(filter %.mm,$2))
103    # Compile as a C++ or Objective-C++ file
104    $1_$2_FLAGS=$(CFLAGS_CCACHE) $6 $$($1_$(notdir $2)_CXXFLAGS) -DTHIS_FILE='"$$(<F)"' -c
105    $1_$2_COMP=$7
106    $1_$2_DEP_FLAG:=$(CXX_FLAG_DEPS)
107  else
108    $$(error Internal error in NativeCompilation.gmk: no compiler for file $2)
109  endif
110  # Generate the .o (.obj) file name and place it in the bin dir.
111  $1_$2_OBJ := $3/$$(call replace_with_obj_extension, $$(notdir $2))
112  # Only continue if this object file hasn't been processed already. This lets the first found
113  # source file override any other with the same name.
114  ifeq (,$$(findstring $$($1_$2_OBJ),$$($1_ALL_OBJS)))
115    $1_ALL_OBJS+=$$($1_$2_OBJ)
116    ifeq (,$$(filter %.s,$2))
117      # And this is the dependency file for this obj file.
118      $1_$2_DEP:=$$(patsubst %$(OBJ_SUFFIX),%.d,$$($1_$2_OBJ))
119      # The dependency target file lists all dependencies as empty targets
120      # to avoid make error "No rule to make target" for removed files
121      $1_$2_DEP_TARGETS:=$$(patsubst %$(OBJ_SUFFIX),%.d.targets,$$($1_$2_OBJ))
122
123      # Include previously generated dependency information. (if it exists)
124      -include $$($1_$2_DEP)
125      -include $$($1_$2_DEP_TARGETS)
126
127      ifeq ($(TOOLCHAIN_TYPE), microsoft)
128        $1_$2_DEBUG_OUT_FLAGS:=-Fd$$(patsubst %$(OBJ_SUFFIX),%.pdb,$$($1_$2_OBJ)) \
129            -Fm$$(patsubst %$(OBJ_SUFFIX),%.map,$$($1_$2_OBJ))
130      endif
131    endif
132
133    $$($1_$2_OBJ) : $2 $$($1_COMPILE_VARDEPS_FILE) | $$($1_BUILD_INFO)
134	$(ECHO) $(LOG_INFO) "Compiling $$(notdir $2) (for $$(notdir $$($1_TARGET)))"
135        ifneq ($(TOOLCHAIN_TYPE), microsoft)
136          # The Solaris studio compiler doesn't output the full path to the object file in the
137          # generated deps files. Fixing it with sed. If compiling assembly, don't try this.
138          ifeq ($(TOOLCHAIN_TYPE)$$(filter %.s,$2), solstudio)
139	    $$($1_$2_COMP) $$($1_$2_FLAGS) $$($1_$2_DEP_FLAG) $$($1_$2_DEP).tmp $(CC_OUT_OPTION)$$($1_$2_OBJ) $2
140	    $(SED) 's|^$$(@F):|$$@:|' $$($1_$2_DEP).tmp > $$($1_$2_DEP)
141          else
142	    $$($1_$2_COMP) $$($1_$2_FLAGS) $$($1_$2_DEP_FLAG) $$($1_$2_DEP) $(CC_OUT_OPTION)$$($1_$2_OBJ) $2
143          endif
144        endif
145        # The Visual Studio compiler lacks a feature for generating make dependencies, but by
146        # setting -showIncludes, all included files are printed. These are filtered out and
147        # parsed into make dependences.
148        ifeq ($(TOOLCHAIN_TYPE), microsoft)
149	  ($$($1_$2_COMP) $$($1_$2_FLAGS) -showIncludes $$($1_$2_DEBUG_OUT_FLAGS) \
150	      $(CC_OUT_OPTION)$$($1_$2_OBJ) $2 ; echo $$$$? > $$($1_$2_DEP).exitvalue) \
151	      | $(TEE) $$($1_$2_DEP).raw | $(GREP) -v -e "^Note: including file:" \
152	      -e "^$(notdir $2)$$$$" || test "$$$$?" = "1" ; \
153	      exit `cat $$($1_$2_DEP).exitvalue`
154	  $(RM) $$($1_$2_DEP).exitvalue
155	  ($(ECHO) $$@: \\ \
156	  && $(SED) $(WINDOWS_SHOWINCLUDE_SED_PATTERN) $$($1_$2_DEP).raw) | $(SORT) -u > $$($1_$2_DEP)
157        endif
158        # Create a dependency target file from the dependency file.
159        # Solution suggested by http://make.mad-scientist.net/papers/advanced-auto-dependency-generation/
160        ifneq ($$($1_$2_DEP),)
161	  $(SED) $(DEPENDENCY_TARGET_SED_PATTERN) $$($1_$2_DEP) > $$($1_$2_DEP_TARGETS)
162        endif
163  endif
164endef
165
166# Setup make rules for creating a native binary (a shared library or an
167# executable).
168#
169# Parameter 1 is the name of the rule. This name is used as variable prefix,
170# and the targets generated are listed in a variable by that name.
171#
172# Remaining parameters are named arguments. These include:
173#   SRC one or more directory roots to scan for C/C++ files.
174#   LANG C or C++
175#   CFLAGS the compiler flags to be used, used both for C and C++.
176#   CXXFLAGS the compiler flags to be used for c++, if set overrides CFLAGS.
177#   LDFLAGS the linker flags to be used, used both for C and C++.
178#   LDFLAGS_SUFFIX the linker flags to be added last on the commandline
179#       typically the libraries linked to.
180#   ARFLAGS the archiver flags to be used
181#   OBJECT_DIR the directory where we store the object files
182#   LIBRARY the resulting library file
183#   PROGRAM the resulting exec file
184#   INCLUDES only pick source from these directories
185#   EXCLUDES do not pick source from these directories
186#   INCLUDE_FILES only compile exactly these files!
187#   EXCLUDE_FILES with these names
188#   EXTRA_FILES List of extra files not in any of the SRC dirs
189#   VERSIONINFO_RESOURCE Input file for RC. Setting this implies that RC will be run
190#   RC_FLAGS flags for RC.
191#   MAPFILE mapfile
192#   REORDER reorder file
193#   DEBUG_SYMBOLS add debug symbols (if configured on)
194#   CC the compiler to use, default is $(CC)
195#   LDEXE the linker to use for linking executables, default is $(LDEXE)
196#   OPTIMIZATION sets optimization level to NONE, LOW, HIGH, HIGHEST
197#   DISABLED_WARNINGS_<toolchain> Disable the given warnings for the specified toolchain
198SetupNativeCompilation = $(NamedParamsMacroTemplate)
199define SetupNativeCompilationBody
200
201  ifneq (,$$($1_BIN))
202    $$(error BIN has been replaced with OBJECT_DIR)
203  endif
204
205  ifneq (,$$($1_LIB))
206    $$(error LIB has been replaced with LIBRARY)
207  endif
208
209  ifneq (,$$($1_EXE))
210    $$(error EXE has been replaced with PROGRAM)
211  endif
212
213  ifneq (,$$($1_LIBRARY))
214    ifeq (,$$($1_OUTPUT_DIR))
215      $$(error LIBRARY requires OUTPUT_DIR)
216    endif
217
218    ifneq ($$($1_LIBRARY),$(basename $$($1_LIBRARY)))
219      $$(error directory of LIBRARY should be specified using OUTPUT_DIR)
220    endif
221
222    ifneq (,$(findstring $(SHARED_LIBRARY_SUFFIX),$$($1_LIBRARY)))
223      $$(error LIBRARY should be specified without SHARED_LIBRARY_SUFFIX: $(SHARED_LIBRARY_SUFFIX))
224    endif
225
226    ifneq (,$(findstring $(LIBRARY_PREFIX),$$($1_LIBRARY)))
227      $$(error LIBRARY should be specified without LIBRARY_PREFIX: $(LIBRARY_PREFIX))
228    endif
229
230    ifeq ($$($1_SUFFIX), )
231      $1_SUFFIX := $(SHARED_LIBRARY_SUFFIX)
232    endif
233
234    $1_BASENAME:=$(LIBRARY_PREFIX)$$($1_LIBRARY)$$($1_SUFFIX)
235    $1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME)
236    $1_NOSUFFIX:=$(LIBRARY_PREFIX)$$($1_LIBRARY)
237  endif
238
239  ifneq (,$$($1_STATIC_LIBRARY))
240    ifeq (,$$($1_OUTPUT_DIR))
241      $$(error STATIC_LIBRARY requires OUTPUT_DIR)
242    endif
243
244    ifneq ($$($1_STATIC_LIBRARY),$(basename $$($1_STATIC_LIBRARY)))
245      $$(error directory of STATIC_LIBRARY should be specified using OUTPUT_DIR)
246    endif
247
248    ifneq (,$(findstring $(STATIC_LIBRARY_SUFFIX),$$($1_STATIC_LIBRARY)))
249      $$(error STATIC_LIBRARY should be specified without STATIC_LIBRARY_SUFFIX: $(STATIC_LIBRARY_SUFFIX))
250    endif
251
252    ifneq (,$(findstring $(LIBRARY_PREFIX),$$($1_STATIC_LIBRARY)))
253      $$(error STATIC_LIBRARY should be specified without LIBRARY_PREFIX: $(LIBRARY_PREFIX))
254    endif
255
256    ifeq ($$($1_SUFFIX), )
257      $1_SUFFIX := $(STATIC_LIBRARY_SUFFIX)
258    endif
259
260    $1_BASENAME:=$(LIBRARY_PREFIX)$$($1_STATIC_LIBRARY)$$($1_SUFFIX)
261    $1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME)
262    $1_NOSUFFIX:=$(LIBRARY_PREFIX)$$($1_STATIC_LIBRARY)
263  endif
264
265  ifneq (,$$($1_PROGRAM))
266    ifeq (,$$($1_OUTPUT_DIR))
267      $$(error PROGRAM requires OUTPUT_DIR)
268    endif
269
270    ifneq ($$($1_PROGRAM),$(basename $$($1_PROGRAM)))
271      $$(error directory of PROGRAM should be specified using OUTPUT_DIR)
272    endif
273
274    ifneq (,$(findstring $(EXE_SUFFIX),$$($1_PROGRAM)))
275      $$(error PROGRAM should be specified without EXE_SUFFIX: $(EXE_SUFFIX))
276    endif
277
278    ifeq ($$($1_SUFFIX), )
279      $1_SUFFIX := $(EXE_SUFFIX)
280    endif
281
282    $1_BASENAME:=$$($1_PROGRAM)$$($1_SUFFIX)
283    $1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME)
284    $1_NOSUFFIX:=$$($1_PROGRAM)
285  endif
286
287  ifeq (,$$($1_TARGET))
288    $$(error Neither PROGRAM, LIBRARY nor STATIC_LIBRARY has been specified for SetupNativeCompilation)
289  endif
290
291  ifeq (,$$($1_LANG))
292    $$(error You have to specify LANG for native compilation $1)
293  endif
294  ifeq (C,$$($1_LANG))
295    ifeq ($$($1_LDEXE),)
296      $1_LDEXE:=$(LDEXE)
297    endif
298    ifeq ($$($1_LD),)
299      $1_LD:=$(LD)
300    endif
301  else
302    ifeq (C++,$$($1_LANG))
303      ifeq ($$($1_LD),)
304        $1_LD:=$(LDCXX)
305      endif
306      ifeq ($$($1_LDEXE),)
307        $1_LDEXE:=$(LDEXECXX)
308      endif
309    else
310      $$(error Unknown native language $$($1_LANG) for $1)
311    endif
312  endif
313
314  ifeq ($$($1_CC),)
315    $1_CC:=$(CC)
316  endif
317  ifeq ($$($1_CXX),)
318    $1_CXX:=$(CXX)
319  endif
320
321  # Make sure the dirs exist.
322  $$(call MakeDir,$$($1_OBJECT_DIR) $$($1_OUTPUT_DIR))
323  $$(foreach d,$$($1_SRC), $$(if $$(wildcard $$d),,$$(error SRC specified to SetupNativeCompilation $1 contains missing directory $$d)))
324
325  # Find all files in the source trees. Sort to remove duplicates.
326  $1_ALL_SRCS := $$(sort $$(call CacheFind,$$($1_SRC)))
327  # Extract the C/C++ files.
328  $1_EXCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_EXCLUDE_FILES)))
329  $1_INCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_INCLUDE_FILES)))
330  ifneq ($$($1_EXCLUDE_FILES),)
331    $1_EXCLUDE_FILES:=$$(addprefix %,$$($1_EXCLUDE_FILES))
332  endif
333  $1_SRCS := $$(filter-out $$($1_EXCLUDE_FILES),$$(filter $$(NATIVE_SOURCE_EXTENSIONS),$$($1_ALL_SRCS)))
334  ifneq (,$$(strip $$($1_INCLUDE_FILES)))
335    $1_SRCS := $$(filter $$($1_INCLUDE_FILES),$$($1_SRCS))
336  endif
337  ifeq (,$$($1_SRCS))
338    $$(error No sources found for $1 when looking inside the dirs $$($1_SRC))
339  endif
340  # There can be only a single bin dir root, no need to foreach over the roots.
341  $1_BINS := $$(wildcard $$($1_OBJECT_DIR)/*$(OBJ_SUFFIX))
342  # Now we have a list of all c/c++ files to compile: $$($1_SRCS)
343  # and we have a list of all existing object files: $$($1_BINS)
344
345  # Prepend the source/bin path to the filter expressions. Then do the filtering.
346  ifneq ($$($1_INCLUDES),)
347    $1_SRC_INCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_INCLUDES))))
348    $1_SRCS := $$(filter $$($1_SRC_INCLUDES),$$($1_SRCS))
349  endif
350  ifneq ($$($1_EXCLUDES),)
351    $1_SRC_EXCLUDES := $$(addsuffix /%,$$($1_EXCLUDES))
352    $1_SRC_EXCLUDES += $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES))))
353    $1_SRCS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_SRCS))
354  endif
355
356  $1_SRCS += $$($1_EXTRA_FILES)
357
358  # Calculate the expected output from compiling the sources (sort to remove duplicates. Also provides
359  # a reproducable order on the input files to the linker).
360  $1_EXPECTED_OBJS_FILENAMES := $$(call replace_with_obj_extension, $$(notdir $$($1_SRCS)))
361  $1_EXPECTED_OBJS:=$$(sort $$(addprefix $$($1_OBJECT_DIR)/,$$($1_EXPECTED_OBJS_FILENAMES)))
362  # Are there too many object files on disk? Perhaps because some source file was removed?
363  $1_SUPERFLOUS_OBJS:=$$(sort $$(filter-out $$($1_EXPECTED_OBJS),$$($1_BINS)))
364  # Clean out the superfluous object files.
365  ifneq ($$($1_SUPERFLUOUS_OBJS),)
366    $$(shell $(RM) -f $$($1_SUPERFLUOUS_OBJS))
367  endif
368
369  # Pickup extra OPENJDK_TARGET_OS_TYPE and/or OPENJDK_TARGET_OS dependent variables for CFLAGS.
370  $1_EXTRA_CFLAGS:=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_TYPE)) $$($1_CFLAGS_$(OPENJDK_TARGET_OS))
371  ifneq ($(DEBUG_LEVEL),release)
372    # Pickup extra debug dependent variables for CFLAGS
373    $1_EXTRA_CFLAGS+=$$($1_CFLAGS_debug)
374    $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_TYPE)_debug)
375    $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS)_debug)
376  else
377    $1_EXTRA_CFLAGS+=$$($1_CFLAGS_release)
378    $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_TYPE)_release)
379    $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS)_release)
380  endif
381
382  # Pickup extra OPENJDK_TARGET_OS_TYPE and/or OPENJDK_TARGET_OS dependent variables for CXXFLAGS.
383  $1_EXTRA_CXXFLAGS:=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_TYPE)) $$($1_CXXFLAGS_$(OPENJDK_TARGET_OS))
384  ifneq ($(DEBUG_LEVEL),release)
385    # Pickup extra debug dependent variables for CXXFLAGS
386    $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_debug)
387    $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_TYPE)_debug)
388    $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS)_debug)
389  else
390    $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_release)
391    $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_TYPE)_release)
392    $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS)_release)
393  endif
394
395  # Pick up disabled warnings, if possible on this platform.
396  ifneq ($(DISABLE_WARNING_PREFIX),)
397    $1_EXTRA_CFLAGS += $$(addprefix $(DISABLE_WARNING_PREFIX), $$($1_DISABLED_WARNINGS_$(TOOLCHAIN_TYPE)))
398    $1_EXTRA_CXXFLAGS += $$(addprefix $(DISABLE_WARNING_PREFIX), $$($1_DISABLED_WARNINGS_$(TOOLCHAIN_TYPE)))
399  endif
400
401  ifeq ($$($1_DEBUG_SYMBOLS), true)
402    ifeq ($(ENABLE_DEBUG_SYMBOLS), true)
403      ifdef OPENJDK
404        # Always add debug symbols
405        $1_EXTRA_CFLAGS+=$(CFLAGS_DEBUG_SYMBOLS)
406        $1_EXTRA_CXXFLAGS+=$(CXXFLAGS_DEBUG_SYMBOLS)
407      else
408        # Programs don't get the debug symbols added in the old build. It's not clear if
409        # this is intentional.
410        ifeq ($$($1_PROGRAM),)
411          $1_EXTRA_CFLAGS+=$(CFLAGS_DEBUG_SYMBOLS)
412          $1_EXTRA_CXXFLAGS+=$(CXXFLAGS_DEBUG_SYMBOLS)
413        endif
414      endif
415    endif
416  endif
417
418  ifeq ($$($1_CXXFLAGS),)
419    $1_CXXFLAGS:=$$($1_CFLAGS)
420  endif
421  ifeq ($$(strip $$($1_EXTRA_CXXFLAGS)),)
422    $1_EXTRA_CXXFLAGS:=$$($1_EXTRA_CFLAGS)
423  endif
424
425  ifneq (,$$($1_REORDER))
426    $1_EXTRA_CFLAGS += $$(C_FLAG_REORDER)
427    $1_EXTRA_CXXFLAGS += $$(CXX_FLAG_REORDER)
428  endif
429
430  ifeq (NONE, $$($1_OPTIMIZATION))
431    $1_EXTRA_CFLAGS += $(C_O_FLAG_NONE)
432    $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_NONE)
433  else ifeq (LOW, $$($1_OPTIMIZATION))
434    $1_EXTRA_CFLAGS += $(C_O_FLAG_NORM)
435    $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_NORM)
436  else ifeq (HIGH, $$($1_OPTIMIZATION))
437    $1_EXTRA_CFLAGS += $(C_O_FLAG_HI)
438    $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_HI)
439  else ifeq (HIGHEST, $$($1_OPTIMIZATION))
440    $1_EXTRA_CFLAGS += $(C_O_FLAG_HIGHEST)
441    $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_HIGHEST)
442  else ifneq (, $$($1_OPTIMIZATION))
443    $$(error Unknown value for OPTIMIZATION: $$($1_OPTIMIZATION))
444  endif
445
446  $1_BUILD_INFO := $$($1_OBJECT_DIR)/_build-info.marker
447
448  # Track variable changes for all variables that affect the compilation command
449  # lines for all object files in this setup. This includes at least all the
450  # variables used in the call to add_native_source below.
451  $1_COMPILE_VARDEPS := $$($1_CFLAGS) $$($1_EXTRA_CFLAGS) $(SYSROOT_CFLAGS) \
452      $$($1_CXXFLAGS) $$($1_EXTRA_CXXFLAGS) \
453      $$($1_CC) $$($1_CXX) $$($1_ASFLAGS) \
454      $$(foreach s, $$($1_SRCS), \
455          $$($1_$$(notdir $$s)_CFLAGS) $$($1_$$(notdir $$s)_CXXFLAGS))
456  $1_COMPILE_VARDEPS_FILE := $$(call DependOnVariable, $1_COMPILE_VARDEPS, \
457      $$($1_OBJECT_DIR)/$$($1_NOSUFFIX).comp.vardeps)
458
459  # Now call add_native_source for each source file we are going to compile.
460  $$(foreach p,$$($1_SRCS), \
461      $$(eval $$(call add_native_source,$1,$$p,$$($1_OBJECT_DIR), \
462          $$($1_CFLAGS) $$($1_EXTRA_CFLAGS) $(SYSROOT_CFLAGS), \
463          $$($1_CC), \
464          $$($1_CXXFLAGS) $$($1_EXTRA_CXXFLAGS) $(SYSROOT_CFLAGS), \
465          $$($1_CXX), $$($1_ASFLAGS))))
466
467  # Setup rule for printing progress info when compiling source files.
468  # This is a rough heuristic and may not always print accurate information.
469  $$($1_BUILD_INFO): $$($1_SRCS) $$($1_COMPILE_VARDEPS_FILE)
470        ifeq ($$(wildcard $$($1_TARGET)),)
471	  $(ECHO) 'Creating $$($1_BASENAME) from $$(words $$(filter-out %.vardeps, $$?)) file(s)'
472        else
473	  $(ECHO) $$(strip 'Updating $$($1_BASENAME)' \
474	      $$(if $$(filter-out %.vardeps, $$?), \
475	        'from $$(words $$(filter-out %.vardeps, $$?)) file(s)') \
476	      $$(if $$(filter %.vardeps, $$?), 'due to makefile changes'))
477        endif
478	$(TOUCH) $$@
479
480  # On windows we need to create a resource file
481  ifeq ($(OPENJDK_TARGET_OS), windows)
482    ifneq (,$$($1_VERSIONINFO_RESOURCE))
483      $1_RES:=$$($1_OBJECT_DIR)/$$($1_BASENAME).res
484      $1_RES_DEP:=$$($1_RES).d
485      $1_RES_DEP_TARGETS:=$$($1_RES).d.targets
486      -include $$($1_RES_DEP)
487      -include $$($1_RES_DEP_TARGETS)
488
489      $1_RES_VARDEPS := $(RC) $$($1_RC_FLAGS)
490      $1_RES_VARDEPS_FILE := $$(call DependOnVariable, $1_RES_VARDEPS, \
491          $$($1_RES).vardeps)
492
493      $$($1_RES): $$($1_VERSIONINFO_RESOURCE) $$($1_RES_VARDEPS_FILE)
494		$(ECHO) $(LOG_INFO) "Compiling resource $$(notdir $$($1_VERSIONINFO_RESOURCE)) (for $$(notdir $$($1_TARGET)))"
495		$(RC) $$($1_RC_FLAGS) $(SYSROOT_CFLAGS) $(CC_OUT_OPTION)$$@ \
496		    $$($1_VERSIONINFO_RESOURCE)
497                # Windows RC compiler does not support -showIncludes, so we mis-use CL for this.
498		$(CC) $$($1_RC_FLAGS) $(SYSROOT_CFLAGS) -showIncludes -nologo -TC \
499		    $(CC_OUT_OPTION)$$($1_RES_DEP).obj $$($1_VERSIONINFO_RESOURCE) > $$($1_RES_DEP).raw 2>&1 || exit 0
500		($(ECHO) $$($1_RES): \\ \
501		&& $(SED) $(WINDOWS_SHOWINCLUDE_SED_PATTERN) $$($1_RES_DEP).raw) > $$($1_RES_DEP)
502		$(SED) $(DEPENDENCY_TARGET_SED_PATTERN) $$($1_RES_DEP) > $$($1_RES_DEP_TARGETS)
503    endif
504    ifneq (,$$($1_MANIFEST))
505      $1_GEN_MANIFEST:=$$($1_OBJECT_DIR)/$$($1_PROGRAM).manifest
506      IMVERSIONVALUE:=$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION).$(JDK_UPDATE_VERSION).$(COOKED_BUILD_NUMBER)
507      $1_MANIFEST_VARDEPS_FILE := $$(call DependOnVariable, IMVERSIONVALUE, \
508          $$($1_GEN_MANIFEST).vardeps)
509      $$($1_GEN_MANIFEST): $$($1_MANIFEST) $$($1_MANIFEST_VARDEPS_FILE)
510		$(SED) 's%IMVERSION%$$(IMVERSIONVALUE)%g;s%PROGRAM%$$($1_PROGRAM)%g' $$< > $$@
511    endif
512  endif
513
514  # mapfile doesnt seem to be implemented on macosx (yet??)
515  ifneq ($(OPENJDK_TARGET_OS),macosx)
516    ifneq ($(OPENJDK_TARGET_OS),windows)
517      $1_REAL_MAPFILE:=$$($1_MAPFILE)
518      ifneq (,$$($1_REORDER))
519        $1_REAL_MAPFILE:=$$($1_OBJECT_DIR)/mapfile
520
521        $$($1_REAL_MAPFILE) : $$($1_MAPFILE) $$($1_REORDER)
522		$$(MKDIR) -p $$(@D)
523		$$(CP) $$($1_MAPFILE) $$@.tmp
524		$$(SED) -e 's=OUTPUTDIR=$$($1_OBJECT_DIR)=' $$($1_REORDER) >> $$@.tmp
525		$$(MV) $$@.tmp $$@
526      endif
527    endif
528  endif
529
530  # Pickup extra OPENJDK_TARGET_OS_TYPE and/or OPENJDK_TARGET_OS dependent variables
531  # for LDFLAGS and LDFLAGS_SUFFIX
532  $1_EXTRA_LDFLAGS:=$$($1_LDFLAGS_$(OPENJDK_TARGET_OS_TYPE)) $$($1_LDFLAGS_$(OPENJDK_TARGET_OS))
533  $1_EXTRA_LDFLAGS_SUFFIX:=$$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS_TYPE)) $$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS))
534  ifneq (,$$($1_REAL_MAPFILE))
535    $1_EXTRA_LDFLAGS += $(call SET_SHARED_LIBRARY_MAPFILE,$$($1_REAL_MAPFILE))
536  endif
537
538  # Need to make sure TARGET is first on list
539  $1 := $$($1_TARGET)
540  ifeq ($$($1_STATIC_LIBRARY),)
541    ifeq ($$($1_DEBUG_SYMBOLS), true)
542      ifeq ($(ENABLE_DEBUG_SYMBOLS), true)
543        ifneq ($(OPENJDK_TARGET_OS), macosx) # no MacOS X support yet
544          ifneq ($$($1_OUTPUT_DIR),$$($1_OBJECT_DIR))
545            # The dependency on TARGET is needed on windows for debuginfo files
546            # to be rebuilt properly.
547            $$($1_OUTPUT_DIR)/% : $$($1_OBJECT_DIR)/% $$($1_TARGET)
548		$(CP) $$< $$@
549          endif
550
551          # Generate debuginfo files.
552          ifeq ($(OPENJDK_TARGET_OS), windows)
553            $1_EXTRA_LDFLAGS += "-pdb:$$($1_OBJECT_DIR)/$$($1_NOSUFFIX).pdb" \
554                "-map:$$($1_OBJECT_DIR)/$$($1_NOSUFFIX).map"
555            $1_DEBUGINFO_FILES := $$($1_OBJECT_DIR)/$$($1_NOSUFFIX).pdb \
556                $$($1_OBJECT_DIR)/$$($1_NOSUFFIX).map
557
558          else ifeq ($(OPENJDK_TARGET_OS), solaris)
559            $1_DEBUGINFO_FILES := $$($1_OBJECT_DIR)/$$($1_NOSUFFIX).debuginfo
560            # Setup the command line creating debuginfo files, to be run after linking.
561            # It cannot be run separately since it updates the original target file
562            #
563            # gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set.
564            # Use $(FIX_EMPTY_SEC_HDR_FLAGS) to clear the SHF_ALLOC flag (if set) from
565            # empty section headers until a fixed $(OBJCOPY) is available.
566            # An empty section header has sh_addr == 0 and sh_size == 0.
567            # This problem has only been seen on Solaris X64, but we call this tool
568            # on all Solaris builds just in case.
569            #
570            # $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections.
571            # Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available.
572            $1_CREATE_DEBUGINFO_CMDS := \
573                $(FIX_EMPTY_SEC_HDR_FLAGS) $(LOG_INFO) $$($1_TARGET) $$(NEWLINE) \
574                $(OBJCOPY) --only-keep-debug $$($1_TARGET) $$($1_DEBUGINFO_FILES) $$(NEWLINE) \
575                $(CD) $$($1_OUTPUT_DIR) && \
576                    $(ADD_GNU_DEBUGLINK) $(LOG_INFO) $$($1_DEBUGINFO_FILES) $$($1_TARGET)
577            $1_DEBUGINFO_EXTRA_DEPS := $(FIX_EMPTY_SEC_HDR_FLAGS) $(ADD_GNU_DEBUGLINK)
578
579          else ifeq ($(OPENJDK_TARGET_OS), linux)
580            $1_DEBUGINFO_FILES := $$($1_OBJECT_DIR)/$$($1_NOSUFFIX).debuginfo
581            # Setup the command line creating debuginfo files, to be run after linking.
582            # It cannot be run separately since it updates the original target file
583            $1_CREATE_DEBUGINFO_CMDS := \
584                $(OBJCOPY) --only-keep-debug $$($1_TARGET) $$($1_DEBUGINFO_FILES) $$(NEWLINE) \
585                $(CD) $$($1_OUTPUT_DIR) && \
586                    $(OBJCOPY) --add-gnu-debuglink=$$($1_DEBUGINFO_FILES) $$($1_TARGET)
587
588          endif # No MacOS X support
589
590          # This dependency dance ensures that debug info files get rebuilt
591          # properly if deleted.
592          $$($1_TARGET): $$($1_DEBUGINFO_FILES)
593          $$($1_DEBUGINFO_FILES): $$($1_EXPECTED_OBJS)
594
595          ifeq ($(ZIP_DEBUGINFO_FILES), true)
596            $1_DEBUGINFO_ZIP := $$($1_OBJECT_DIR)/$$($1_NOSUFFIX).diz
597            $1 += $$(subst $$($1_OBJECT_DIR),$$($1_OUTPUT_DIR),$$($1_DEBUGINFO_ZIP))
598
599            # The dependency on TARGET is needed for debuginfo files
600            # to be rebuilt properly.
601            $$($1_DEBUGINFO_ZIP): $$($1_DEBUGINFO_FILES) $$($1_TARGET)
602		$(CD) $$($1_OBJECT_DIR) \
603		&& $(ZIP) -q $$@ $$(notdir $$($1_DEBUGINFO_FILES))
604
605          else
606            $1 += $$(subst $$($1_OBJECT_DIR),$$($1_OUTPUT_DIR),$$($1_DEBUGINFO_FILES))
607          endif
608        endif
609      endif # !MacOS X
610    endif # $1_DEBUG_SYMBOLS
611  endif # !STATIC_LIBRARY
612
613  ifneq (,$$($1_LIBRARY))
614    # Generating a dynamic library.
615    $1_EXTRA_LDFLAGS += $$(call SET_SHARED_LIBRARY_NAME,$$($1_BASENAME))
616    ifeq ($(OPENJDK_TARGET_OS), windows)
617      $1_EXTRA_LDFLAGS += "-implib:$$($1_OBJECT_DIR)/$$($1_LIBRARY).lib"
618    endif
619
620    $1_EXTRA_LDFLAGS_SUFFIX += $(GLOBAL_LDFLAGS_SUFFIX)
621
622    $1_VARDEPS := $$($1_LD) $(SYSROOT_LDFLAGS) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) \
623        $$($1_LDFLAGS_SUFFIX) $$($1_EXTRA_LDFLAGS_SUFFIX)
624    $1_VARDEPS_FILE := $$(call DependOnVariable, $1_VARDEPS, \
625        $$($1_OBJECT_DIR)/$$($1_NOSUFFIX).vardeps)
626
627    $$($1_TARGET): $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_REAL_MAPFILE) \
628        $$($1_DEBUGINFO_EXTRA_DEPS) $$($1_VARDEPS_FILE)
629		$(ECHO) $(LOG_INFO) "Linking $$($1_BASENAME)"
630		$$($1_LD) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(SYSROOT_LDFLAGS) \
631		    $(LD_OUT_OPTION)$$@ \
632		    $$($1_EXPECTED_OBJS) $$($1_RES) \
633		    $$($1_LDFLAGS_SUFFIX) $$($1_EXTRA_LDFLAGS_SUFFIX)
634		$$($1_CREATE_DEBUGINFO_CMDS)
635                # Touch target to make sure it has a later time stamp than the debug
636                # symbol files to avoid unnecessary relinking on rebuild.
637                ifeq ($(OPENJDK_TARGET_OS), windows)
638		  $(TOUCH) $$@
639                endif
640
641  endif
642
643  ifneq (,$$($1_STATIC_LIBRARY))
644    $1_VARDEPS := $(AR) $$($1_ARFLAGS) $$($1_LDFLAGS_SUFFIX) $$($1_EXTRA_LDFLAGS_SUFFIX)
645    $1_VARDEPS_FILE := $$(call DependOnVariable, $1_VARDEPS, \
646        $$($1_OBJECT_DIR)/$$($1_NOSUFFIX).vardeps)
647
648    # Generating a static library, ie object file archive.
649    $$($1_TARGET): $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_VARDEPS_FILE)
650	$(ECHO) $(LOG_INFO) "Archiving $$($1_STATIC_LIBRARY)"
651	$(AR) $$($1_ARFLAGS) $(AR_OUT_OPTION)$$($1_TARGET) $$($1_EXPECTED_OBJS) \
652	    $$($1_RES) $$($1_LDFLAGS_SUFFIX) $$($1_EXTRA_LDFLAGS_SUFFIX)
653  endif
654
655  ifneq (,$$($1_PROGRAM))
656    # A executable binary has been specified, setup the target for it.
657    $1_EXTRA_LDFLAGS_SUFFIX += $(GLOBAL_LDFLAGS_SUFFIX)
658
659    $1_VARDEPS := $$($1_LDEXE) $(SYSROOT_LDFLAGS) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) \
660        $$($1_LDFLAGS_SUFFIX) $$($1_EXTRA_LDFLAGS_SUFFIX)
661    $1_VARDEPS_FILE := $$(call DependOnVariable, $1_VARDEPS, \
662        $$($1_OBJECT_DIR)/$$($1_NOSUFFIX).vardeps)
663
664    $$($1_TARGET): $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_GEN_MANIFEST) \
665        $$($1_DEBUGINFO_EXTRA_DEPS) $$($1_VARDEPS_FILE)
666		$(ECHO) $(LOG_INFO) "Linking executable $$($1_BASENAME)"
667		$$($1_LDEXE) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(SYSROOT_LDFLAGS) \
668		    $(EXE_OUT_OPTION)$$($1_TARGET) \
669		    $$($1_EXPECTED_OBJS) $$($1_RES) \
670		    $$($1_LDFLAGS_SUFFIX) $$($1_EXTRA_LDFLAGS_SUFFIX)
671                ifneq (,$$($1_GEN_MANIFEST))
672		  $(MT) -nologo -manifest $$($1_GEN_MANIFEST) -outputresource:$$@;#1
673                endif
674                # This only works if the openjdk_codesign identity is present on the system. Let
675                # silently fail otherwise.
676                ifneq (,$(CODESIGN))
677                  ifneq (,$$($1_CODESIGN))
678		    $(CODESIGN) -s openjdk_codesign $$@
679                  endif
680                endif
681		$$($1_CREATE_DEBUGINFO_CMDS)
682                # Touch target to make sure it has a later time stamp than the debug
683                # symbol files to avoid unnecessary relinking on rebuild.
684                ifeq ($(OPENJDK_TARGET_OS), windows)
685		  $(TOUCH) $$@
686                endif
687
688  endif
689endef
690
691endif # _NATIVE_COMPILATION_GMK
692