common/makefiles/NativeCompilation.gmk

Wed, 05 Jun 2013 15:20:35 -0700

author
katleman
date
Wed, 05 Jun 2013 15:20:35 -0700
changeset 731
27c51c6e31c1
parent 725
03e60e87d92a
child 738
0c540b1505e3
permissions
-rw-r--r--

6983966: remove lzma and upx from repository JDK8
Reviewed-by: tbell, paulk, ngthomas

     1 #
     2 # Copyright (c) 2011, 2012, 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 #
    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!
    30 ifeq  (,$(_MAKEBASE_GMK))
    31     $(error You must include MakeBase.gmk prior to including NativeCompilation.gmk)
    32 endif
    34 ifeq ($(COMPILER_TYPE),CC)
    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"
    39 else
    40     COMPILING_MSG=
    41     LINKING_MSG=
    42     LINKING_EXE_MSG=
    43     ARCHIVING_MSG=
    44 endif
    46 define add_native_source
    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
    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)
    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
    93         endif
    95         $$($1_$2_OBJ) : $2
    96         ifeq ($(COMPILER_TYPE),CC)
    97 		$$(call COMPILING_MSG,$2,$$($1_TARGET))
    98           # The Sun studio compiler doesn't output the full path to the object file in the
    99           # generated deps files. Fixing it with sed. If compiling assembly, don't try this.
   100           ifeq ($(COMPILER_NAME)$$(filter %.s,$2),ossc)
   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)
   103           else
   104 		$$($1_$2_COMP) $$($1_$2_FLAGS) $$($1_$2_DEP_FLAG) $$($1_$2_DEP) $(CC_OUT_OPTION)$$($1_$2_OBJ) $2
   105         endif
   106         endif
   107         # The Visual Studio compiler lacks a feature for generating make dependencies, but by
   108         # setting -showIncludes, all included files are printed. These are filtered out and 
   109         # parsed into make dependences.
   110         ifeq ($(COMPILER_TYPE),CL)
   111 		$$($1_$2_COMP) $$($1_$2_FLAGS) -showIncludes $$($1_$2_DEBUG_OUT_FLAGS) $(CC_OUT_OPTION)$$($1_$2_OBJ) $2 | $(TEE) $$($1_$2_DEP).raw | $(GREP) -v "^Note: including file:"
   112 		($(ECHO) $$@: \\ \
   113 		 && $(SED) -e '/^Note: including file:/!d' \
   114 			-e 's|Note: including file: *||' \
   115 			-e 's|\\|/|g' \
   116 			-e 's|^\([a-zA-Z]\):|/cygdrive/\1|g' \
   117 			-e '/$(subst /,\/,$(TOPDIR))/!d' \
   118 			-e 's|$$$$| \\|g' \
   119 			$$($1_$2_DEP).raw) > $$($1_$2_DEP)
   120         endif
   121     endif
   122 endef
   124 define SetupNativeCompilation
   125     # param 1 is for example BUILD_MYPACKAGE
   126     # param 2,3,4,5,6,7,8 are named args.
   127     #    SRC one or more directory roots to scan for C/C++ files.
   128     #    LANG C or C++
   129     #    CFLAGS the compiler flags to be used, used both for C and C++.
   130     #    CXXFLAGS the compiler flags to be used for c++, if set overrides CFLAGS.
   131     #    LDFLAGS the linker flags to be used, used both for C and C++.
   132     #    LDFLAGS_SUFFIX the linker flags to be added last on the commandline
   133     #        typically the libraries linked to.
   134     #    ARFLAGS the archiver flags to be used
   135     #    OBJECT_DIR the directory where we store the object files
   136     #    LIBRARY the resulting library file
   137     #    PROGRAM the resulting exec file
   138     #    INCLUDES only pick source from these directories
   139     #    EXCLUDES do not pick source from these directories
   140     #    INCLUDE_FILES only compile exactly these files!
   141     #    EXCLUDE_FILES with these names
   142     #    VERSIONINFO_RESOURCE Input file for RC. Setting this implies that RC will be run
   143     #    RC_FLAGS flags for RC.
   144     #    MAPFILE mapfile
   145     #    REORDER reorder file
   146     #    DEBUG_SYMBOLS add debug symbols (if configured on)
   147     #    CC the compiler to use, default is $(CC)
   148     #    LDEXE the linker to use for linking executables, default is $(LDEXE)
   149     #    OPTIMIZATION sets optimization level to NONE, LOW, HIGH, HIGHEST
   150     $(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))
   151     $(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))
   152     $(if $(27),$(error Internal makefile error: Too many arguments to SetupNativeCompilation, please update NativeCompilation.gmk))
   154     ifneq (,$$($1_BIN))
   155         $$(error BIN has been replaced with OBJECT_DIR)
   156     endif
   158     ifneq (,$$($1_LIB))
   159         $$(error LIB has been replaced with LIBRARY)
   160     endif
   162     ifneq (,$$($1_EXE))
   163         $$(error EXE has been replaced with PROGRAM)
   164     endif
   166     ifneq (,$$($1_LIBRARY))
   167         ifeq (,$$($1_OUTPUT_DIR))
   168             $$(error LIBRARY requires OUTPUT_DIR)
   169         endif
   171         ifneq ($$($1_LIBRARY),$(basename $$($1_LIBRARY)))
   172             $$(error directory of LIBRARY should be specified using OUTPUT_DIR)
   173         endif
   175         ifneq (,$(findstring $(SHARED_LIBRARY_SUFFIX),$$($1_LIBRARY)))
   176             $$(error LIBRARY should be specified without SHARED_LIBRARY_SUFFIX: $(SHARED_LIBRARY_SUFFIX))
   177         endif
   179         ifneq (,$(findstring $(LIBRARY_PREFIX),$$($1_LIBRARY)))
   180             $$(error LIBRARY should be specified without LIBRARY_PREFIX: $(LIBRARY_PREFIX))
   181         endif
   183         $1_BASENAME:=$(LIBRARY_PREFIX)$$($1_LIBRARY)$(SHARED_LIBRARY_SUFFIX)
   184         $1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME)
   186     endif
   188     ifneq (,$$($1_STATIC_LIBRARY))
   189         ifeq (,$$($1_OUTPUT_DIR))
   190             $$(error STATIC_LIBRARY requires OUTPUT_DIR)
   191         endif
   193         ifneq ($$($1_STATIC_LIBRARY),$(basename $$($1_STATIC_LIBRARY)))
   194             $$(error directory of STATIC_LIBRARY should be specified using OUTPUT_DIR)
   195         endif
   197         ifneq (,$(findstring $(STATIC_LIBRARY_SUFFIX),$$($1_STATIC_LIBRARY)))
   198             $$(error STATIC_LIBRARY should be specified without STATIC_LIBRARY_SUFFIX: $(STATIC_LIBRARY_SUFFIX))
   199         endif
   201         ifneq (,$(findstring $(LIBRARY_PREFIX),$$($1_STATIC_LIBRARY)))
   202             $$(error STATIC_LIBRARY should be specified without LIBRARY_PREFIX: $(LIBRARY_PREFIX))
   203         endif
   205         $1_BASENAME:=$(LIBRARY_PREFIX)$$($1_STATIC_LIBRARY)$(STATIC_LIBRARY_SUFFIX)
   206         $1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME)
   207     endif
   209     ifneq (,$$($1_PROGRAM))
   210         ifeq (,$$($1_OUTPUT_DIR))
   211             $$(error PROGRAM requires OUTPUT_DIR)
   212         endif
   214         ifneq ($$($1_PROGRAM),$(basename $$($1_PROGRAM)))
   215             $$(error directory of PROGRAM should be specified using OUTPUT_DIR)
   216         endif
   218         ifneq (,$(findstring $(EXE_SUFFIX),$$($1_PROGRAM)))
   219             $$(error PROGRAM should be specified without EXE_SUFFIX: $(EXE_SUFFIX))
   220         endif
   222         $1_BASENAME:=$$($1_PROGRAM)$(EXE_SUFFIX)
   223         $1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME)
   225     endif
   227     ifeq (,$$($1_TARGET))
   228         $$(error Neither PROGRAM, LIBRARY nor STATIC_LIBRARY has been specified for SetupNativeCompilation)
   229     endif
   231     ifeq (,$$($1_LANG))
   232         $$(error You have to specify LANG for native compilation $1)
   233     endif
   234     ifeq (C,$$($1_LANG))
   235         ifeq ($$($1_LDEXE),)
   236 	    $1_LDEXE:=$(LDEXE)
   237         endif
   238 	$1_LD:=$(LD)
   239     else
   240        ifeq (C++,$$($1_LANG))
   241            $1_LD:=$(LDCXX)
   242 	   $1_LDEXE:=$(LDEXECXX)
   243        else
   244            $$(error Unknown native language $$($1_LANG) for $1)
   245        endif
   246     endif
   248     ifeq ($$($1_CC),)
   249         $1_CC:=$(CC)
   250     endif
   252     # Make sure the dirs exist.
   253     $$(eval $$(call MakeDir,$$($1_OBJECT_DIR) $$($1_OUTPUT_DIR)))
   254     $$(foreach d,$$($1_SRC), $$(if $$(wildcard $$d),,$$(error SRC specified to SetupNativeCompilation $1 contains missing directory $$d)))
   256     # Find all files in the source trees. Sort to remove duplicates.
   257     $1_ALL_SRCS := $$(sort $$(call CacheFind,$$($1_SRC)))
   258     # Extract the C/C++ files.
   259     $1_EXCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_EXCLUDE_FILES)))
   260     $1_INCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_INCLUDE_FILES)))
   261     ifneq ($$($1_EXCLUDE_FILES),)
   262         $1_EXCLUDE_FILES:=$$(addprefix %,$$($1_EXCLUDE_FILES))
   263     endif
   264     $1_SRCS     := $$(filter-out $$($1_EXCLUDE_FILES),$$(filter %.s %.c %.cpp %.m,$$($1_ALL_SRCS)))
   265     ifneq (,$$(strip $$($1_INCLUDE_FILES)))
   266         $1_SRCS := $$(filter $$($1_INCLUDE_FILES),$$($1_SRCS))
   267     endif
   268     ifeq (,$$($1_SRCS))
   269         $$(error No sources found for $1 when looking inside the dirs $$($1_SRC))
   270     endif
   271     # There can be only a single bin dir root, no need to foreach over the roots.
   272     $1_BINS     := $$(wildcard $$($1_OBJECT_DIR)/*$(OBJ_SUFFIX))
   273     # Now we have a list of all c/c++ files to compile: $$($1_SRCS)
   274     # and we have a list of all existing object files: $$($1_BINS)
   276     # Prepend the source/bin path to the filter expressions. Then do the filtering.
   277     ifneq ($$($1_INCLUDES),)
   278         $1_SRC_INCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_INCLUDES))))
   279         $1_SRCS         := $$(filter $$($1_SRC_INCLUDES),$$($1_SRCS))
   280     endif
   281     ifneq ($$($1_EXCLUDES),)
   282         $1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES))))
   283         $1_SRCS         := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_SRCS))
   284     endif
   286     # Calculate the expected output from compiling the sources (sort to remove duplicates. Also provides
   287     # a reproducable order on the input files to the linker).
   288     $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))))))))
   289     # Are there too many object files on disk? Perhaps because some source file was removed?
   290     $1_SUPERFLOUS_OBJS:=$$(sort $$(filter-out $$($1_EXPECTED_OBJS),$$($1_BINS)))
   291     # Clean out the superfluous object files.
   292     ifneq ($$($1_SUPERFLUOUS_OBJS),)
   293         $$(shell $(RM) -f $$($1_SUPERFLUOUS_OBJS))
   294     endif
   296     # Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables for CFLAGS.
   297     $1_EXTRA_CFLAGS:=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_CFLAGS_$(OPENJDK_TARGET_OS))
   298     ifneq ($(DEBUG_LEVEL),release)
   299         # Pickup extra debug dependent variables for CFLAGS
   300         $1_EXTRA_CFLAGS+=$$($1_CFLAGS_debug)
   301         $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)_debug)
   302         $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS)_debug)
   303     else
   304         $1_EXTRA_CFLAGS+=$$($1_CFLAGS_release)
   305         $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)_release)
   306         $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS)_release)
   307     endif
   309     # Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables for CXXFLAGS.
   310     $1_EXTRA_CXXFLAGS:=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_CXXFLAGS_$(OPENJDK_TARGET_OS))
   311     ifneq ($(DEBUG_LEVEL),release)
   312         # Pickup extra debug dependent variables for CXXFLAGS
   313         $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_debug)
   314         $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)_debug)
   315         $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS)_debug)
   316     else
   317         $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_release)
   318         $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)_release)
   319         $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS)_release)
   320     endif
   322     ifneq (,$$($1_DEBUG_SYMBOLS))	
   323         ifeq ($(ENABLE_DEBUG_SYMBOLS), true)
   324 	    ifdef OPENJDK
   325 	        # Always add debug symbols
   326                 $1_EXTRA_CFLAGS+=$(CFLAGS_DEBUG_SYMBOLS)
   327                 $1_EXTRA_CXXFLAGS+=$(CXXFLAGS_DEBUG_SYMBOLS)
   328 	    else
   329                 # Programs don't get the debug symbols added in the old build. It's not clear if
   330                 # this is intentional.
   331                 ifeq ($$($1_PROGRAM),)
   332                     $1_EXTRA_CFLAGS+=$(CFLAGS_DEBUG_SYMBOLS)
   333                     $1_EXTRA_CXXFLAGS+=$(CXXFLAGS_DEBUG_SYMBOLS)
   334                 endif
   335             endif
   336         endif
   337     endif
   339     ifeq ($$($1_CXXFLAGS),)
   340         $1_CXXFLAGS:=$$($1_CFLAGS)
   341     endif
   342     ifeq ($$(strip $$($1_EXTRA_CXXFLAGS)),)
   343         $1_EXTRA_CXXFLAGS:=$$($1_EXTRA_CFLAGS)
   344     endif
   346     ifneq (,$$($1_REORDER))
   347           $1_EXTRA_CFLAGS += $$(C_FLAG_REORDER)
   348           $1_EXTRA_CXXFLAGS += $$(CXX_FLAG_REORDER)
   349     endif
   351     ifeq (NONE, $$($1_OPTIMIZATION))
   352         $1_EXTRA_CFLAGS += $(C_O_FLAG_NONE)
   353         $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_NONE)
   354     else ifeq (LOW, $$($1_OPTIMIZATION))
   355         $1_EXTRA_CFLAGS += $(C_O_FLAG_NORM)
   356         $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_NORM)
   357     else ifeq (HIGH, $$($1_OPTIMIZATION))
   358         $1_EXTRA_CFLAGS += $(C_O_FLAG_HI)
   359         $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_HI)
   360     else ifeq (HIGHEST, $$($1_OPTIMIZATION))
   361         $1_EXTRA_CFLAGS += $(C_O_FLAG_HIGHEST)
   362         $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_HIGHEST)
   363     else ifneq (, $$($1_OPTIMIZATION))
   364         $$(error Unknown value for OPTIMIZATION: $$($1_OPTIMIZATION))
   365     endif
   367     # Now call add_native_source for each source file we are going to compile.
   368     $$(foreach p,$$($1_SRCS),\
   369         $$(eval $$(call add_native_source,$1,$$p,$$($1_OBJECT_DIR),\
   370                         $$($1_CFLAGS) $$($1_EXTRA_CFLAGS),$$($1_CC),\
   371 			$$($1_CXXFLAGS) $$($1_EXTRA_CXXFLAGS),$(CXX),$$($1_ASFLAGS))))
   373     # On windows we need to create a resource file
   374     ifeq ($(OPENJDK_TARGET_OS), windows)
   375         ifneq (,$$($1_VERSIONINFO_RESOURCE))
   376             $1_RES:=$$($1_OBJECT_DIR)/$$($1_BASENAME).res
   377             $$($1_RES): $$($1_VERSIONINFO_RESOURCE)
   378 		$(RC) $$($1_RC_FLAGS) $(CC_OUT_OPTION)$$@ $$($1_VERSIONINFO_RESOURCE)
   379         endif
   380         ifneq (,$$($1_MANIFEST))
   381             $1_GEN_MANIFEST:=$$($1_OBJECT_DIR)/$$($1_PROGRAM).manifest
   382             IMVERSIONVALUE:=$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION).$(JDK_UPDATE_VERSION).$(COOKED_BUILD_NUMBER)
   383             $$($1_GEN_MANIFEST): $$($1_MANIFEST)
   384 		$(SED) 's%IMVERSION%$$(IMVERSIONVALUE)%g;s%PROGRAM%$$($1_PROGRAM)%g' $$< > $$@
   385         endif
   386     endif
   388     # mapfile doesnt seem to be implemented on macosx (yet??)
   389     ifneq ($(OPENJDK_TARGET_OS),macosx)
   390     ifneq ($(OPENJDK_TARGET_OS),windows)
   391         $1_REAL_MAPFILE:=$$($1_MAPFILE)
   392         ifneq (,$$($1_REORDER))
   393             $1_REAL_MAPFILE:=$$($1_OBJECT_DIR)/mapfile
   395             $$($1_REAL_MAPFILE) : $$($1_MAPFILE) $$($1_REORDER)
   396 		$$(MKDIR) -p $$(@D)
   397 		$$(CP) $$($1_MAPFILE) $$@.tmp
   398 		$$(SED) -e 's=OUTPUTDIR=$$($1_OBJECT_DIR)=' $$($1_REORDER) >> $$@.tmp
   399 		$$(MV) $$@.tmp $$@
   400         endif
   401     endif
   402     endif
   404     # Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables
   405     # for LDFLAGS and LDFLAGS_SUFFIX
   406     $1_EXTRA_LDFLAGS:=$$($1_LDFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_LDFLAGS_$(OPENJDK_TARGET_OS))
   407     $1_EXTRA_LDFLAGS_SUFFIX:=$$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS_API)) $$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS))
   408     ifneq (,$$($1_REAL_MAPFILE))
   409         $1_EXTRA_LDFLAGS += $(call SET_SHARED_LIBRARY_MAPFILE,$$($1_REAL_MAPFILE))
   410     endif
   412     $1 := $$($1_TARGET)
   413     ifneq (,$$($1_LIBRARY))
   414         # Generating a dynamic library.
   415         $1_EXTRA_LDFLAGS+=$$(call SET_SHARED_LIBRARY_NAME,$$($1_BASENAME))
   416         ifeq ($(OPENJDK_TARGET_OS), windows)
   417             $1_EXTRA_LDFLAGS+="-implib:$$($1_OBJECT_DIR)/$$($1_LIBRARY).lib"
   418         endif
   420         $1_EXTRA_LDFLAGS_SUFFIX += $(GLOBAL_LDFLAGS_SUFFIX)        
   422         ifneq (,$$($1_DEBUG_SYMBOLS))
   423             ifeq ($(ENABLE_DEBUG_SYMBOLS), true)
   424                 ifeq ($(OPENJDK_TARGET_OS), windows)
   425                     $1_EXTRA_LDFLAGS+="-pdb:$$($1_OBJECT_DIR)/$$($1_LIBRARY).pdb" \
   426 				      "-map:$$($1_OBJECT_DIR)/$$($1_LIBRARY).map"
   427                 endif
   429                 ifneq ($$($1_OUTPUT_DIR),$$($1_OBJECT_DIR))
   430                     $$($1_OUTPUT_DIR)/% : $$($1_OBJECT_DIR)/%
   431 			$(CP) $$< $$@
   432                 endif
   434                 ifeq ($(OPENJDK_TARGET_OS), solaris)
   435                     # gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set.
   436                     # Use $(FIX_EMPTY_SEC_HDR_FLAGS) to clear the SHF_ALLOC flag (if set) from
   437                     # empty section headers until a fixed $(OBJCOPY) is available.
   438                     # An empty section header has sh_addr == 0 and sh_size == 0.
   439                     # This problem has only been seen on Solaris X64, but we call this tool
   440                     # on all Solaris builds just in case.
   441                     #
   442                     # $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections.
   443                     # Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available.
   444                     $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo : $$($1_TARGET) \
   445 					$(FIX_EMPTY_SEC_HDR_FLAGS) $(ADD_GNU_DEBUGLINK)
   446 			$(RM) $$@
   447 			$(FIX_EMPTY_SEC_HDR_FLAGS) $(LOG_INFO) $$<
   448 			$(OBJCOPY) --only-keep-debug $$< $$@
   449 			$(CD) $$(@D) && $(ADD_GNU_DEBUGLINK) $(LOG_INFO) $$(@F) $$<
   450                 else # not solaris
   451                     $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo : $$($1_TARGET)
   452 			$(RM) $$@
   453 			$(OBJCOPY) --only-keep-debug $$< $$@
   454 			$(CD) $$(@D) && $(OBJCOPY) --add-gnu-debuglink=$$(@F) $$<
   455                 endif # Touch to not retrigger rule on rebuild
   456 			$(TOUCH) $$@
   458                 ifeq ($(ZIP_DEBUGINFO_FILES), true)
   459                     $1 += $$($1_OUTPUT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz
   461                     ifeq ($(OPENJDK_TARGET_OS), windows)
   462                         $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz : $$($1_TARGET)
   463 				$(CD) $$($1_OBJECT_DIR) \
   464 				&& $(ZIP) -q $$@ $$($1_LIBRARY).map $$($1_LIBRARY).pdb
   465                     else
   466                         $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz : $$($1_TARGET) \
   467 					$$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo
   468 				$(CD) $$($1_OBJECT_DIR) \
   469 				&& $(ZIP) -q $$@ $$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo 
   470                     endif
   471                 else
   472                     ifeq ($(OPENJDK_TARGET_OS), windows)
   473                         $1 += $$($1_OUTPUT_DIR)/$$($1_LIBRARY).map \
   474 			      $$($1_OUTPUT_DIR)/$$($1_LIBRARY).pdb
   475                     else
   476                         $1 += $$($1_OUTPUT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo
   477                     endif
   478                 endif
   479             endif
   480         endif
   482         $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_REAL_MAPFILE)
   483 		$$(call LINKING_MSG,$$($1_BASENAME))
   484 		$$($1_LD) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(LD_OUT_OPTION)$$@ \
   485 		$$($1_EXPECTED_OBJS) $$($1_RES) $$($1_LDFLAGS_SUFFIX) \
   486 		$$($1_EXTRA_LDFLAGS_SUFFIX)
   488     endif
   490     ifneq (,$$($1_STATIC_LIBRARY))
   491         # Generating a static library, ie object file archive.
   492         $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES)
   493 	        $$(call ARCHIVING_MSG,$$($1_LIBRARY))
   494 	        $(AR) $$($1_AR_FLAGS) $(AR_OUT_OPTION)$$($1_TARGET) $$($1_EXPECTED_OBJS) \
   495 			$$($1_RES) $$($1_LDFLAGS_SUFFIX) $$($1_EXTRA_LDFLAGS_SUFFIX)
   496     endif
   498     ifneq (,$$($1_PROGRAM))
   499         # A executable binary has been specified, setup the target for it.
   500         ifneq (,$$($1_DEBUG_SYMBOLS))
   501             ifeq ($(ENABLE_DEBUG_SYMBOLS), true)
   502                 ifeq ($(OPENJDK_TARGET_OS), windows)
   503                     $1_EXTRA_LDFLAGS+="-pdb:$$($1_OBJECT_DIR)/$$($1_PROGRAM).pdb" \
   504 				      "-map:$$($1_OBJECT_DIR)/$$($1_PROGRAM).map"
   505                 endif
   507                 ifneq ($$($1_OUTPUT_DIR),$$($1_OBJECT_DIR))
   508                     $$($1_OUTPUT_DIR)/% : $$($1_OBJECT_DIR)/%
   509 			$(CP) $$< $$@
   510                 endif
   512                 ifeq ($(OPENJDK_TARGET_OS), solaris)
   513                     # gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set.
   514                     # Use $(FIX_EMPTY_SEC_HDR_FLAGS) to clear the SHF_ALLOC flag (if set) from
   515                     # empty section headers until a fixed $(OBJCOPY) is available.
   516                     # An empty section header has sh_addr == 0 and sh_size == 0.
   517                     # This problem has only been seen on Solaris X64, but we call this tool
   518                     # on all Solaris builds just in case.
   519                     #
   520                     # $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections.
   521                     # Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available.
   522                     $$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo : $$($1_TARGET) \
   523 					$(FIX_EMPTY_SEC_HDR_FLAGS) $(ADD_GNU_DEBUGLINK)
   524 			$(RM) $$@
   525 			$(FIX_EMPTY_SEC_HDR_FLAGS) $(LOG_INFO) $$<
   526 			$(OBJCOPY) --only-keep-debug $$< $$@
   527 			$(CD) $$(@D) && $(ADD_GNU_DEBUGLINK) $(LOG_INFO) $$(@F) $$<
   528                 else # not solaris
   529                     $$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo : $$($1_TARGET)
   530 			$(RM) $$@
   531 			$(OBJCOPY) --only-keep-debug $$< $$@
   532 			$(CD) $$(@D) && $(OBJCOPY) --add-gnu-debuglink=$$(@F) $$<
   533                 endif
   534 			$(TOUCH) $$@
   536                 ifeq ($(ZIP_DEBUGINFO_FILES), true)
   537                     $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).diz
   539                     ifeq ($(OPENJDK_TARGET_OS), windows)
   540                         $$($1_OBJECT_DIR)/$$($1_PROGRAM).diz : $$($1_TARGET)
   541 				$(CD) $$($1_OBJECT_DIR) \
   542 				&& $(ZIP) -q $$@ $$($1_PROGRAM).map $$($1_PROGRAM).pdb
   543                     else
   544                         $$($1_OBJECT_DIR)/$$(PROGRAM_PREFIX)$$($1_PROGRAM).diz : $$($1_TARGET) \
   545 					$$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo
   546 				$(CD) $$($1_OBJECT_DIR) \
   547 				&& $(ZIP) -q $$@ $$($1_PROGRAM).debuginfo 
   548                     endif
   549                 else
   550                     ifeq ($(OPENJDK_TARGET_OS), windows)
   551                         $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).map \
   552 			      $$($1_OUTPUT_DIR)/$$($1_PROGRAM).pdb
   553                     else
   554                         $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).debuginfo
   555                     endif
   556                 endif
   557             endif
   558         endif
   560         $1_EXTRA_LDFLAGS_SUFFIX += $(GLOBAL_LDFLAGS_SUFFIX)
   562         $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_GEN_MANIFEST)
   563 	    	$$(call LINKING_EXE_MSG,$$($1_BASENAME))
   564 		$$($1_LDEXE) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(EXE_OUT_OPTION)$$($1_TARGET) \
   565 			$$($1_EXPECTED_OBJS) $$($1_RES) $$($1_LDFLAGS_SUFFIX) \
   566 			$$($1_EXTRA_LDFLAGS_SUFFIX)
   567         ifneq (,$$($1_GEN_MANIFEST))
   568 		$(MT) -nologo -manifest $$($1_GEN_MANIFEST) -outputresource:$$@;#1
   569         endif
   570         # This only works if the openjdk_codesign identity is present on the system. Let
   571         # silently fail otherwise.
   572         ifneq (,$(CODESIGN))
   573             ifneq (,$$($1_CODESIGN))
   574 		$(CODESIGN) -s openjdk_codesign $$@
   575             endif
   576         endif
   577     endif
   578 endef

mercurial