common/makefiles/NativeCompilation.gmk

Tue, 28 May 2013 20:03:21 +0200

author
jqzuo
date
Tue, 28 May 2013 20:03:21 +0200
changeset 721
78852ce176db
parent 707
892a0196d10c
child 715
cb51fb4789ac
permissions
-rw-r--r--

8014762: Add JMC configure option mapping to Jprt.gmk
Summary: Need to add the mapping between JPRT env var and configure flag for JMC, from ALT_JMC_ZIP_DIR to --with-jmc-zip-dir (same pattern as for Javafx)
Reviewed-by: tbell, erikj
Contributed-by: klara.ward@oracle.com

     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, $(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))
   152     $(if $(26),$(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             # Programs don't get the debug symbols added in the old build. It's not clear if
   325             # this is intentional.
   326             ifeq ($$($1_PROGRAM),)
   327                 $1_EXTRA_CFLAGS+=$(CFLAGS_DEBUG_SYMBOLS)
   328                 $1_EXTRA_CXXFLAGS+=$(CXXFLAGS_DEBUG_SYMBOLS)
   329             endif
   330         endif
   331     endif
   333     ifeq ($$($1_CXXFLAGS),)
   334         $1_CXXFLAGS:=$$($1_CFLAGS)
   335     endif
   336     ifeq ($$(strip $$($1_EXTRA_CXXFLAGS)),)
   337         $1_EXTRA_CXXFLAGS:=$$($1_EXTRA_CFLAGS)
   338     endif
   340     ifneq (,$$($1_REORDER))
   341           $1_EXTRA_CFLAGS += $$(C_FLAG_REORDER)
   342           $1_EXTRA_CXXFLAGS += $$(CXX_FLAG_REORDER)
   343     endif
   345     ifeq (NONE, $$($1_OPTIMIZATION))
   346         $1_EXTRA_CFLAGS += $(C_O_FLAG_NONE)
   347         $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_NONE)
   348     else ifeq (LOW, $$($1_OPTIMIZATION))
   349         $1_EXTRA_CFLAGS += $(C_O_FLAG_NORM)
   350         $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_NORM)
   351     else ifeq (HIGH, $$($1_OPTIMIZATION))
   352         $1_EXTRA_CFLAGS += $(C_O_FLAG_HI)
   353         $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_HI)
   354     else ifeq (HIGHEST, $$($1_OPTIMIZATION))
   355         $1_EXTRA_CFLAGS += $(C_O_FLAG_HIGHEST)
   356         $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_HIGHEST)
   357     else ifneq (, $$($1_OPTIMIZATION))
   358         $$(error Unknown value for OPTIMIZATION: $$($1_OPTIMIZATION))
   359     endif
   361     # Now call add_native_source for each source file we are going to compile.
   362     $$(foreach p,$$($1_SRCS),\
   363         $$(eval $$(call add_native_source,$1,$$p,$$($1_OBJECT_DIR),\
   364                         $$($1_CFLAGS) $$($1_EXTRA_CFLAGS),$$($1_CC),\
   365 			$$($1_CXXFLAGS) $$($1_EXTRA_CXXFLAGS),$(CXX),$$($1_ASFLAGS))))
   367     # On windows we need to create a resource file
   368     ifeq ($(OPENJDK_TARGET_OS), windows)
   369         ifneq (,$$($1_VERSIONINFO_RESOURCE))
   370             $1_RES:=$$($1_OBJECT_DIR)/$$($1_BASENAME).res
   371             $$($1_RES): $$($1_VERSIONINFO_RESOURCE)
   372 		$(RC) $$($1_RC_FLAGS) $(CC_OUT_OPTION)$$@ $$($1_VERSIONINFO_RESOURCE)
   373         endif
   374         ifneq (,$$($1_MANIFEST))
   375             $1_GEN_MANIFEST:=$$($1_OBJECT_DIR)/$$($1_PROGRAM).manifest
   376             IMVERSIONVALUE:=$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION).$(JDK_UPDATE_VERSION).$(COOKED_BUILD_NUMBER)
   377             $$($1_GEN_MANIFEST): $$($1_MANIFEST)
   378 		$(SED) 's%IMVERSION%$$(IMVERSIONVALUE)%g;s%PROGRAM%$$($1_PROGRAM)%g' $$< > $$@
   379         endif
   380     endif
   382     # mapfile doesnt seem to be implemented on macosx (yet??)
   383     ifneq ($(OPENJDK_TARGET_OS),macosx)
   384     ifneq ($(OPENJDK_TARGET_OS),windows)
   385         $1_REAL_MAPFILE:=$$($1_MAPFILE)
   386         ifneq (,$$($1_REORDER))
   387             $1_REAL_MAPFILE:=$$($1_OBJECT_DIR)/mapfile
   389             $$($1_REAL_MAPFILE) : $$($1_MAPFILE) $$($1_REORDER)
   390 		$$(MKDIR) -p $$(@D)
   391 		$$(CP) $$($1_MAPFILE) $$@.tmp
   392 		$$(SED) -e 's=OUTPUTDIR=$$($1_OBJECT_DIR)=' $$($1_REORDER) >> $$@.tmp
   393 		$$(MV) $$@.tmp $$@
   394         endif
   395     endif
   396     endif
   398     # Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables
   399     # for LDFLAGS and LDFLAGS_SUFFIX
   400     $1_EXTRA_LDFLAGS:=$$($1_LDFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_LDFLAGS_$(OPENJDK_TARGET_OS))
   401     $1_EXTRA_LDFLAGS_SUFFIX:=$$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS_API)) $$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS))
   402     ifneq (,$$($1_REAL_MAPFILE))
   403         $1_EXTRA_LDFLAGS += $(call SET_SHARED_LIBRARY_MAPFILE,$$($1_REAL_MAPFILE))
   404     endif
   406     $1 := $$($1_TARGET)
   407     ifneq (,$$($1_LIBRARY))
   408         # Generating a dynamic library.
   409         $1_EXTRA_LDFLAGS+=$$(call SET_SHARED_LIBRARY_NAME,$$($1_BASENAME))
   410         ifeq ($(OPENJDK_TARGET_OS), windows)
   411             $1_EXTRA_LDFLAGS+="-implib:$$($1_OBJECT_DIR)/$$($1_LIBRARY).lib"
   412         endif
   414         $1_EXTRA_LDFLAGS_SUFFIX += $(GLOBAL_LDFLAGS_SUFFIX)        
   416         ifneq (,$$($1_DEBUG_SYMBOLS))
   417             ifeq ($(ENABLE_DEBUG_SYMBOLS), true)
   418                 ifeq ($(OPENJDK_TARGET_OS), windows)
   419                     $1_EXTRA_LDFLAGS+="-pdb:$$($1_OBJECT_DIR)/$$($1_LIBRARY).pdb" \
   420 				      "-map:$$($1_OBJECT_DIR)/$$($1_LIBRARY).map"
   421                 endif
   423                 ifneq ($$($1_OUTPUT_DIR),$$($1_OBJECT_DIR))
   424                     $$($1_OUTPUT_DIR)/% : $$($1_OBJECT_DIR)/%
   425 			$(CP) $$< $$@
   426                 endif
   428                 ifeq ($(OPENJDK_TARGET_OS), solaris)
   429                     # gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set.
   430                     # Use $(FIX_EMPTY_SEC_HDR_FLAGS) to clear the SHF_ALLOC flag (if set) from
   431                     # empty section headers until a fixed $(OBJCOPY) is available.
   432                     # An empty section header has sh_addr == 0 and sh_size == 0.
   433                     # This problem has only been seen on Solaris X64, but we call this tool
   434                     # on all Solaris builds just in case.
   435                     #
   436                     # $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections.
   437                     # Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available.
   438                     $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo : $$($1_TARGET) \
   439 					$(FIX_EMPTY_SEC_HDR_FLAGS) $(ADD_GNU_DEBUGLINK)
   440 			$(RM) $$@
   441 			$(FIX_EMPTY_SEC_HDR_FLAGS) $(LOG_INFO) $$<
   442 			$(OBJCOPY) --only-keep-debug $$< $$@
   443 			$(CD) $$(@D) && $(ADD_GNU_DEBUGLINK) $(LOG_INFO) $$(@F) $$<
   444                 else # not solaris
   445                     $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo : $$($1_TARGET)
   446 			$(RM) $$@
   447 			$(OBJCOPY) --only-keep-debug $$< $$@
   448 			$(CD) $$(@D) && $(OBJCOPY) --add-gnu-debuglink=$$(@F) $$<
   449                 endif # Touch to not retrigger rule on rebuild
   450 			$(TOUCH) $$@
   452                 ifeq ($(ZIP_DEBUGINFO_FILES), true)
   453                     $1 += $$($1_OUTPUT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz
   455                     ifeq ($(OPENJDK_TARGET_OS), windows)
   456                         $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz : $$($1_TARGET)
   457 				$(CD) $$($1_OBJECT_DIR) \
   458 				&& $(ZIP) -q $$@ $$($1_LIBRARY).map $$($1_LIBRARY).pdb
   459                     else
   460                         $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz : $$($1_TARGET) \
   461 					$$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo
   462 				$(CD) $$($1_OBJECT_DIR) \
   463 				&& $(ZIP) -q $$@ $$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo 
   464                     endif
   465                 else
   466                     ifeq ($(OPENJDK_TARGET_OS), windows)
   467                         $1 += $$($1_OUTPUT_DIR)/$$($1_LIBRARY).map \
   468 			      $$($1_OUTPUT_DIR)/$$($1_LIBRARY).pdb
   469                     else
   470                         $1 += $$($1_OUTPUT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo
   471                     endif
   472                 endif
   473             endif
   474         endif
   476         $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_REAL_MAPFILE)
   477 		$$(call LINKING_MSG,$$($1_BASENAME))
   478 		$$($1_LD) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(LD_OUT_OPTION)$$@ \
   479 		$$($1_EXPECTED_OBJS) $$($1_RES) $$($1_LDFLAGS_SUFFIX) \
   480 		$$($1_EXTRA_LDFLAGS_SUFFIX)
   482     endif
   484     ifneq (,$$($1_STATIC_LIBRARY))
   485         # Generating a static library, ie object file archive.
   486         $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES)
   487 	        $$(call ARCHIVING_MSG,$$($1_LIBRARY))
   488 	        $(AR) $$($1_AR_FLAGS) $(AR_OUT_OPTION)$$($1_TARGET) $$($1_EXPECTED_OBJS) \
   489 			$$($1_RES) $$($1_LDFLAGS_SUFFIX) $$($1_EXTRA_LDFLAGS_SUFFIX)
   490     endif
   492     ifneq (,$$($1_PROGRAM))
   493         # A executable binary has been specified, setup the target for it.
   494         ifneq (,$$($1_DEBUG_SYMBOLS))
   495             ifeq ($(ENABLE_DEBUG_SYMBOLS), true)
   496                 ifeq ($(OPENJDK_TARGET_OS), windows)
   497                     $1_EXTRA_LDFLAGS+="-pdb:$$($1_OBJECT_DIR)/$$($1_PROGRAM).pdb" \
   498 				      "-map:$$($1_OBJECT_DIR)/$$($1_PROGRAM).map"
   499                 endif
   501                 ifneq ($$($1_OUTPUT_DIR),$$($1_OBJECT_DIR))
   502                     $$($1_OUTPUT_DIR)/% : $$($1_OBJECT_DIR)/%
   503 			$(CP) $$< $$@
   504                 endif
   506                 ifeq ($(OPENJDK_TARGET_OS), solaris)
   507                     # gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set.
   508                     # Use $(FIX_EMPTY_SEC_HDR_FLAGS) to clear the SHF_ALLOC flag (if set) from
   509                     # empty section headers until a fixed $(OBJCOPY) is available.
   510                     # An empty section header has sh_addr == 0 and sh_size == 0.
   511                     # This problem has only been seen on Solaris X64, but we call this tool
   512                     # on all Solaris builds just in case.
   513                     #
   514                     # $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections.
   515                     # Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available.
   516                     $$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo : $$($1_TARGET) \
   517 					$(FIX_EMPTY_SEC_HDR_FLAGS) $(ADD_GNU_DEBUGLINK)
   518 			$(RM) $$@
   519 			$(FIX_EMPTY_SEC_HDR_FLAGS) $(LOG_INFO) $$<
   520 			$(OBJCOPY) --only-keep-debug $$< $$@
   521 			$(CD) $$(@D) && $(ADD_GNU_DEBUGLINK) $(LOG_INFO) $$(@F) $$<
   522                 else # not solaris
   523                     $$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo : $$($1_TARGET)
   524 			$(RM) $$@
   525 			$(OBJCOPY) --only-keep-debug $$< $$@
   526 			$(CD) $$(@D) && $(OBJCOPY) --add-gnu-debuglink=$$(@F) $$<
   527                 endif
   528 			$(TOUCH) $$@
   530                 ifeq ($(ZIP_DEBUGINFO_FILES), true)
   531                     $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).diz
   533                     ifeq ($(OPENJDK_TARGET_OS), windows)
   534                         $$($1_OBJECT_DIR)/$$($1_PROGRAM).diz : $$($1_TARGET)
   535 				$(CD) $$($1_OBJECT_DIR) \
   536 				&& $(ZIP) -q $$@ $$($1_PROGRAM).map $$($1_PROGRAM).pdb
   537                     else
   538                         $$($1_OBJECT_DIR)/$$(PROGRAM_PREFIX)$$($1_PROGRAM).diz : $$($1_TARGET) \
   539 					$$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo
   540 				$(CD) $$($1_OBJECT_DIR) \
   541 				&& $(ZIP) -q $$@ $$($1_PROGRAM).debuginfo 
   542                     endif
   543                 else
   544                     ifeq ($(OPENJDK_TARGET_OS), windows)
   545                         $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).map \
   546 			      $$($1_OUTPUT_DIR)/$$($1_PROGRAM).pdb
   547                     else
   548                         $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).debuginfo
   549                     endif
   550                 endif
   551             endif
   552         endif
   554         $1_EXTRA_LDFLAGS_SUFFIX += $(GLOBAL_LDFLAGS_SUFFIX)
   556         $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_GEN_MANIFEST)
   557 	    	$$(call LINKING_EXE_MSG,$$($1_BASENAME))
   558 		$$($1_LDEXE) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(EXE_OUT_OPTION)$$($1_TARGET) \
   559 			$$($1_EXPECTED_OBJS) $$($1_RES) $$($1_LDFLAGS_SUFFIX) \
   560 			$$($1_EXTRA_LDFLAGS_SUFFIX)
   561         ifneq (,$$($1_GEN_MANIFEST))
   562 		$(MT) -nologo -manifest $$($1_GEN_MANIFEST) -outputresource:$$@;#1
   563         endif
   565     endif
   566 endef

mercurial