common/makefiles/NativeCompilation.gmk

Mon, 23 Jul 2012 12:37:58 -0700

author
cl
date
Mon, 23 Jul 2012 12:37:58 -0700
changeset 464
969c75896558
parent 459
3156dff953b1
child 478
2ba6f4da4bf3
permissions
-rw-r--r--

Added tag jdk8-b48 for changeset 3f6c72d1c2a6

     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 Compiling $1
    36     LINKING_MSG=echo Linking $1
    37     LINKING_EXE_MSG=echo Linking executable $1
    38     ARCHIVING_MSG=echo 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) -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) -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
    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) -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,$$(notdir $2))
    98 		$$($1_$2_COMP) $$($1_$2_FLAGS) $$($1_$2_DEP_FLAG) $$($1_$2_DEP) $(CC_OUT_OPTION)$$($1_$2_OBJ) $2
    99         endif
   100         ifeq ($(COMPILER_TYPE),CL)
   101 		$$(call COMPILING_MSG,$$(notdir $2))
   102 		$$($1_$2_COMP) $$($1_$2_FLAGS) $$($1_$2_DEBUG_OUT_FLAGS) $(CC_OUT_OPTION)$$($1_$2_OBJ) $2
   103         endif
   104     endif
   105 endef
   107 define SetupNativeCompilation
   108     # param 1 is for example BUILD_MYPACKAGE
   109     # param 2,3,4,5,6,7,8 are named args.
   110     #    SRC one or more directory roots to scan for C/C++ files.
   111     #    LANG C or C++
   112     #    CFLAGS the compiler flags to be used, used both for C and C++.
   113     #    CXXFLAGS the compiler flags to be used for c++, if set overrides CFLAGS.
   114     #    LDFLAGS the linker flags to be used, used both for C and C++.
   115     #    LDFLAGS_SUFFIX the linker flags to be added last on the commandline
   116     #        typically the libraries linked to.
   117     #    ARFLAGS the archiver flags to be used
   118     #    OBJECT_DIR the directory where we store the object files
   119     #    LIBRARY the resulting library file
   120     #    PROGRAM the resulting exec file
   121     #    INCLUDES only pick source from these directories
   122     #    EXCLUDES do not pick source from these directories
   123     #    INCLUDE_FILES only compile exactly these files!
   124     #    EXCLUDE_FILES with these names
   125     #    VERSIONINFO_RESOURCE Input file for RC. Setting this implies that RC will be run
   126     #    RC_FLAGS flags for RC.
   127     #    MAPFILE mapfile
   128     #    REORDER reorder file
   129     #    DEBUG_SYMBOLS add debug symbols (if configured on)
   130     #    CC the compiler to use, default is $(CC)
   131     #    LDEXE the linker to use for linking executables, default is $(LDEXE)
   132     $(if $2,$1_$(strip $2))
   133     $(if $3,$1_$(strip $3))
   134     $(if $4,$1_$(strip $4))
   135     $(if $5,$1_$(strip $5))
   136     $(if $6,$1_$(strip $6))
   137     $(if $7,$1_$(strip $7))
   138     $(if $8,$1_$(strip $8))
   139     $(if $9,$1_$(strip $9))
   140     $(if $(10),$1_$(strip $(10)))
   141     $(if $(11),$1_$(strip $(11)))
   142     $(if $(12),$1_$(strip $(12)))
   143     $(if $(13),$1_$(strip $(13)))
   144     $(if $(14),$1_$(strip $(14)))
   145     $(if $(15),$1_$(strip $(15)))
   146     $(if $(16),$1_$(strip $(16)))
   147     $(if $(17),$1_$(strip $(17)))
   148     $(if $(18),$1_$(strip $(18)))
   149     $(if $(19),$1_$(strip $(19)))
   150     $(if $(20),$1_$(strip $(20)))
   151     $(if $(21),$1_$(strip $(21)))
   152     $(if $(22),$(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     $$(shell $(MKDIR) -p $$($1_SRC) $$($1_OBJECT_DIR) $$($1_OUTPUT_DIR))
   254     # Find all files in the source trees. Sort to remove duplicates.
   255     $1_ALL_SRCS := $$(sort $$(foreach i,$$($1_SRC), $$(shell $(FIND) $$i -type f)))
   256     # Extract the C/C++ files.
   257     $1_EXCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_EXCLUDE_FILES)))
   258     $1_INCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_INCLUDE_FILES)))
   259     ifneq ($$($1_EXCLUDE_FILES),)
   260         $1_EXCLUDE_FILES:=$$(addprefix %,$$($1_EXCLUDE_FILES))
   261     endif
   262     $1_SRCS     := $$(filter-out $$($1_EXCLUDE_FILES),$$(filter %.s %.c %.cpp %.m,$$($1_ALL_SRCS)))
   263     ifneq (,$$(strip $$($1_INCLUDE_FILES)))
   264         $1_SRCS := $$(filter $$($1_INCLUDE_FILES),$$($1_SRCS))
   265     endif
   266     ifeq (,$$($1_SRCS))
   267         $$(error No sources found for $1 when looking inside the dirs $$($1_SRC))
   268     endif
   269     # There can be only a single bin dir root, no need to foreach over the roots.
   270     $1_BINS     := $$(wildcard $$($1_OBJECT_DIR)/*$(OBJ_SUFFIX))
   271     # Now we have a list of all c/c++ files to compile: $$($1_SRCS)
   272     # and we have a list of all existing object files: $$($1_BINS)
   274     # Prepend the source/bin path to the filter expressions. Then do the filtering.
   275     ifneq ($$($1_INCLUDES),)
   276         $1_SRC_INCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_INCLUDES))))
   277         $1_SRCS         := $$(filter $$($1_SRC_INCLUDES),$$($1_SRCS))
   278     endif
   279     ifneq ($$($1_EXCLUDES),)
   280         $1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES))))
   281         $1_SRCS         := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_SRCS))
   282     endif
   284     # Calculate the expected output from compiling the sources (sort to remove duplicates. Also provides
   285     # a reproducable order on the input files to the linker).
   286     $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))))))))
   287     # Are there too many object files on disk? Perhaps because some source file was removed?
   288     $1_SUPERFLOUS_OBJS:=$$(sort $$(filter-out $$($1_EXPECTED_OBJS),$$($1_BINS)))
   289     # Clean out the superfluous object files.
   290     $$(shell $(RM) -f $$($1_SUPERFLUOUS_OBJS))
   292     # Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables for CFLAGS.
   293     $1_EXTRA_CFLAGS:=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_CFLAGS_$(OPENJDK_TARGET_OS))
   294     ifneq ($(DEBUG_LEVEL),release)
   295         # Pickup extra debug dependent variables for CFLAGS
   296         $1_EXTRA_CFLAGS+=$$($1_CFLAGS_debug)
   297         $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)_debug)
   298         $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS)_debug)
   299     else
   300         $1_EXTRA_CFLAGS+=$$($1_CFLAGS_release)
   301         $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)_release)
   302         $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS)_release)
   303     endif
   305     # Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables for CXXFLAGS.
   306     $1_EXTRA_CXXFLAGS:=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_CXXFLAGS_$(OPENJDK_TARGET_OS))
   307     ifneq ($(DEBUG_LEVEL),release)
   308         # Pickup extra debug dependent variables for CXXFLAGS
   309         $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_debug)
   310         $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)_debug)
   311         $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS)_debug)
   312     else
   313         $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_release)
   314         $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)_release)
   315         $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS)_release)
   316     endif
   318     ifeq ($$($1_CXXFLAGS),)
   319         $1_CXXFLAGS:=$$($1_CFLAGS)
   320     endif
   321     ifeq ($$(strip $$($1_EXTRA_CXXFLAGS)),)
   322         $1_EXTRA_CXXFLAGS:=$$($1_EXTRA_CFLAGS)
   323     endif
   325     ifneq (,$$($1_REORDER))
   326           $1_EXTRA_CFLAGS += $$(C_FLAG_REORDER)
   327           $1_EXTRA_CXXFLAGS += $$(CXX_FLAG_REORDER)
   328     endif
   330     ifneq (no, $(ENABLE_DEBUG_SYMBOLS))
   331 	ifneq ($(OPENJDK_TARGET_OS), solaris)
   332 # <weird code />
   333 # There is very weird code in Defs-solaris.gmk that first sets variables as decribed below
   334 #   and then a couple of hundreds of line below resets them...
   335 #   this feels like a sure bug...but before this is confirmed, mimic this behaviour
   336 # (note: skip indenting this as it will surely be removed anyway)
   337 # <weird code />
   339         ifneq (,$$($1_DEBUG_SYMBOLS))
   340 		$1_OPTIMIZATION := LOW
   341 		$1_EXTRA_CFLAGS += $(CFLAGS_DEBUG_SYMBOLS)
   342 		$1_EXTRA_CXXFLAGS += $(CXXFLAGS_DEBUG_SYMBOLS)
   343         endif
   345 # <weird code />
   346 	endif
   347 # <weird code />
   348     endif
   350     ifeq (NONE, $$($1_OPTIMIZATION))
   351 	$1_EXTRA_CFLAGS += $$(C_O_FLAG_NONE)
   352 	$1_EXTRA_CXXFLAGS += $$(CXX_O_FLAG_NONE)
   353     else ifeq (LOW, $$($1_OPTIMIZATION))
   354 	$1_EXTRA_CFLAGS += $$(C_O_FLAG_NORM)
   355 	$1_EXTRA_CXXFLAGS += $$(CXX_O_FLAG_NORM)
   356     else ifeq (HIGH, $$($1_OPTIMIZATION))
   357 	$1_EXTRA_CFLAGS += $$(C_O_FLAG_HI)
   358 	$1_EXTRA_CXXFLAGS += $$(CXX_O_FLAG_HI)
   359     else ifeq (HIGHEST, $$($1_OPTIMIZATION))
   360 	$1_EXTRA_CFLAGS += $$(C_O_FLAG_HIGHEST)
   361 	$1_EXTRA_CXXFLAGS += $$(CXX_O_FLAG_HIGHEST)
   362     else ifneq (, $$($1_OPTIMIZATION))
   363 	$$(error Unknown value for OPTIMIZATION: $$($1_OPTIMIZATION))
   364     endif
   366     # Now create a list of the packages that are about to compile. Used when sending source
   367     # in a batch to the compiler.
   368     $$(shell $(RM) $$($1_OBJECT_DIR)/_the.list_of_sources)
   369     $$(eval $$(call ListPathsSafelyNow,$1_SRCS,\n, >> $$($1_OBJECT_DIR)/_the.list_of_sources))
   371     # Now call add_native_source for each source file we are going to compile.
   372     $$(foreach p,$$($1_SRCS),\
   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))))
   377     # On windows we need to create a resource file
   378     ifeq ($(OPENJDK_TARGET_OS_API), winapi)
   379         ifneq (,$$($1_VERSIONINFO_RESOURCE))
   380             $1_RES:=$$($1_OBJECT_DIR)/$$($1_BASENAME).res
   381             $$($1_RES): $$($1_VERSIONINFO_RESOURCE)
   382 		$(RC) $$($1_RC_FLAGS) $(CC_OUT_OPTION)$$@ $$($1_VERSIONINFO_RESOURCE)
   383         endif
   384         ifneq (,$$($1_MANIFEST))
   385             $1_GEN_MANIFEST:=$$($1_OBJECT_DIR)/$$($1_PROGRAM).manifest
   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
   392     # mapfile doesnt seem to be implemented on macosx (yet??)
   393     ifneq ($(OPENJDK_TARGET_CPU),ppc)
   394     ifneq ($(OPENJDK_TARGET_CPU),arm)
   395     ifneq ($(OPENJDK_TARGET_OS),macosx)
   396     ifneq ($(OPENJDK_TARGET_OS),windows)
   397         $1_REAL_MAPFILE:=$$($1_MAPFILE)
   398         ifneq (,$$($1_REORDER))
   399             $1_REAL_MAPFILE:=$$($1_OBJECT_DIR)/mapfile
   401             $$($1_REAL_MAPFILE) : $$($1_MAPFILE) $$($1_REORDER)
   402 		$$(MKDIR) -p $$(@D)
   403 		$$(CP) $$($1_MAPFILE) $$@.tmp
   404 		$$(SED) -e 's=OUTPUTDIR=$$($1_OBJECT_DIR)=' $$($1_REORDER) >> $$@.tmp
   405 		$$(MV) $$@.tmp $$@
   406         endif
   407     endif
   408     endif
   409     endif
   410     endif
   412     # Pickup extra OPENJDK_TARGET_OS_API dependent variables (posix or winapi) and 
   413     # (linux,solaris,windows,bsd) for LDFLAGS and LDFLAGS_SUFFIX
   414     $1_EXTRA_LDFLAGS:=$$($1_LDFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_LDFLAGS_$(OPENJDK_TARGET_OS))
   415     $1_EXTRA_LDFLAGS_SUFFIX:=$$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS_API)) $$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS))
   416     ifneq (,$$($1_REAL_MAPFILE))
   417         $1_EXTRA_LDFLAGS += $(call SET_SHARED_LIBRARY_MAPFILE,$$($1_REAL_MAPFILE))
   418     endif
   420     $1 := $$($1_TARGET)
   421     ifneq (,$$($1_LIBRARY))
   422         # Generating a dynamic library.
   423         $1_EXTRA_LDFLAGS+=$$(call SET_SHARED_LIBRARY_NAME,$$($1_BASENAME))
   424         ifeq ($(OPENJDK_TARGET_OS), windows)
   425             $1_EXTRA_LDFLAGS+="-implib:$$($1_OBJECT_DIR)/$$($1_LIBRARY).lib"
   426         endif
   428         ifneq (,$$($1_DEBUG_SYMBOLS))
   429             ifeq ($(ENABLE_DEBUG_SYMBOLS), yes)
   430                 ifeq ($(OPENJDK_TARGET_OS), windows)
   431                     $1_EXTRA_LDFLAGS+="-pdb:$$($1_OBJECT_DIR)/$$($1_LIBRARY).pdb" \
   432 				      "-map:$$($1_OBJECT_DIR)/$$($1_LIBRARY).map"
   433                 endif
   435                 $$($1_OUTPUT_DIR)/% : $$($1_OBJECT_DIR)/%
   436 			$(CP) $$< $$@
   439                 ifeq ($(OPENJDK_TARGET_OS), solaris)
   440                     # gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set.
   441                     # Use $(FIX_EMPTY_SEC_HDR_FLAGS) to clear the SHF_ALLOC flag (if set) from
   442                     # empty section headers until a fixed $(OBJCOPY) is available.
   443                     # An empty section header has sh_addr == 0 and sh_size == 0.
   444                     # This problem has only been seen on Solaris X64, but we call this tool
   445                     # on all Solaris builds just in case.
   446                     #
   447                     # $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections.
   448                     # Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available.
   449                     $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo : $$($1_TARGET) \
   450 					$(FIX_EMPTY_SEC_HDR_FLAGS) $(ADD_GNU_DEBUGLINK)
   451 			$(RM) $$@
   452 			$(FIX_EMPTY_SEC_HDR_FLAGS) $$<
   453 			$(OBJCOPY) --only-keep-debug $$< $$@
   454 			$(CD) $$(@D) && $(ADD_GNU_DEBUGLINK) $$(@F) $$<
   455                 else # not solaris
   456                     $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo : $$($1_TARGET)
   457 			$(RM) $$@
   458 			$(OBJCOPY) --only-keep-debug $$< $$@
   459 			$(CD) $$(@D) && $(OBJCOPY) --add-gnu-debuglink=$$(@F) $$<
   460                 endif # Touch to not retrigger rule on rebuild
   461 			$(TOUCH) $$@
   463                 ifeq ($(ZIP_DEBUGINFO_FILES), 1)
   464                     $1 += $$($1_OUTPUT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz
   466                     ifeq ($(OPENJDK_TARGET_OS), windows)
   467                         $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz : $$($1_TARGET)
   468 				$(CD) $$($1_OBJECT_DIR) \
   469 				&& $(ZIP) -q $$@ $$($1_LIBRARY).map $$($1_LIBRARY).pdb
   470                     else
   471                         $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz : $$($1_TARGET) \
   472 					$$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo
   473 				$(CD) $$($1_OBJECT_DIR) \
   474 				&& $(ZIP) -q $$@ $$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo 
   475                     endif
   476                 else
   477                     ifeq ($(OPENJDK_TARGET_OS), windows)
   478                         $1 += $$($1_OUTPUT_DIR)/$$($1_LIBRARY).map \
   479 			      $$($1_OUTPUT_DIR)/$$($1_LIBRARY).pdb
   480                     else
   481                         $1 += $$($1_OUTPUT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo
   482                     endif
   483                 endif
   484             endif
   485         endif
   487         $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_REAL_MAPFILE)
   488 		$$(call LINKING_MSG,$$($1_BASENAME))
   489 		$$($1_LD) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(LD_OUT_OPTION)$$@ \
   490 		$$($1_EXPECTED_OBJS) $$($1_RES) $$($1_LDFLAGS_SUFFIX) \
   491 		$$($1_EXTRA_LDFLAGS_SUFFIX)
   493     endif
   495     ifneq (,$$($1_STATIC_LIBRARY))
   496         # Generating a static library, ie object file archive.
   497         $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES)
   498 	        $$(call ARCHIVING_MSG,$$($1_LIBRARY))
   499 	        $(AR) $$($1_AR_FLAGS) $(AR_OUT_OPTION)$$($1_TARGET) $$($1_EXPECTED_OBJS) \
   500 			$$($1_RES) $$($1_LDFLAGS_SUFFIX) $$($1_EXTRA_LDFLAGS_SUFFIX)
   501     endif
   503     ifneq (,$$($1_PROGRAM))
   504         # A executable binary has been specified, setup the target for it.
   505         ifneq (,$$($1_DEBUG_SYMBOLS))
   506             ifeq ($(ENABLE_DEBUG_SYMBOLS), yes)
   507                 ifeq ($(OPENJDK_TARGET_OS), windows)
   508                     $1_EXTRA_LDFLAGS+="-pdb:$$($1_OBJECT_DIR)/$$($1_PROGRAM).pdb" \
   509 				      "-map:$$($1_OBJECT_DIR)/$$($1_PROGRAM).map"
   510                 endif
   512                 $$($1_OUTPUT_DIR)/% : $$($1_OBJECT_DIR)/%
   513 			$(CP) $$< $$@
   515                 ifeq ($(OPENJDK_TARGET_OS), solaris)
   516                     # gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set.
   517                     # Use $(FIX_EMPTY_SEC_HDR_FLAGS) to clear the SHF_ALLOC flag (if set) from
   518                     # empty section headers until a fixed $(OBJCOPY) is available.
   519                     # An empty section header has sh_addr == 0 and sh_size == 0.
   520                     # This problem has only been seen on Solaris X64, but we call this tool
   521                     # on all Solaris builds just in case.
   522                     #
   523                     # $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections.
   524                     # Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available.
   525                     $$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo : $$($1_TARGET) \
   526 					$(FIX_EMPTY_SEC_HDR_FLAGS) $(ADD_GNU_DEBUGLINK)
   527 			$(RM) $$@
   528 			$(FIX_EMPTY_SEC_HDR_FLAGS) $$<
   529 			$(OBJCOPY) --only-keep-debug $$< $$@
   530 			$(CD) $$(@D) && $(ADD_GNU_DEBUGLINK) $$(@F) $$<
   531                 else # not solaris
   532                     $$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo : $$($1_TARGET)
   533 			$(RM) $$@
   534 			$(OBJCOPY) --only-keep-debug $$< $$@
   535 			$(CD) $$(@D) && $(OBJCOPY) --add-gnu-debuglink=$$(@F) $$<
   536                 endif
   537 			$(TOUCH) $$@
   539                 ifeq ($(ZIP_DEBUGINFO_FILES), 1)
   540                     $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).diz
   542                     ifeq ($(OPENJDK_TARGET_OS), windows)
   543                         $$($1_OBJECT_DIR)/$$($1_PROGRAM).diz : $$($1_TARGET)
   544 				$(CD) $$($1_OBJECT_DIR) \
   545 				&& $(ZIP) -q $$@ $$($1_PROGRAM).map $$($1_PROGRAM).pdb
   546                     else
   547                         $$($1_OBJECT_DIR)/$$(PROGRAM_PREFIX)$$($1_PROGRAM).diz : $$($1_TARGET) \
   548 					$$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo
   549 				$(CD) $$($1_OBJECT_DIR) \
   550 				&& $(ZIP) -q $$@ $$($1_PROGRAM).debuginfo 
   551                     endif
   552                 else
   553                     ifeq ($(OPENJDK_TARGET_OS), windows)
   554                         $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).map \
   555 			      $$($1_OUTPUT_DIR)/$$($1_PROGRAM).pdb
   556                     else
   557                         $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).debuginfo
   558                     endif
   559                 endif
   560             endif
   561         endif
   563         $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_GEN_MANIFEST)
   564 	    	$$(call LINKING_EXE_MSG,$$($1_BASENAME))
   565 		$$($1_LDEXE) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(EXE_OUT_OPTION)$$($1_TARGET) \
   566 			$$($1_EXPECTED_OBJS) $$($1_RES) $$($1_LDFLAGS_SUFFIX) \
   567 			$$($1_EXTRA_LDFLAGS_SUFFIX)
   568         ifneq (,$$($1_GEN_MANIFEST))
   569 		$(MT) -nologo /manifest $$($1_GEN_MANIFEST) /outputresource:$$@;#1
   570         endif
   572     endif
   573 endef

mercurial