common/makefiles/NativeCompilation.gmk

Wed, 29 May 2013 14:01:04 +0200

author
erikj
date
Wed, 29 May 2013 14:01:04 +0200
changeset 725
03e60e87d92a
parent 715
cb51fb4789ac
child 738
0c540b1505e3
permissions
-rw-r--r--

8013489: New build system does not run codesign on SA-related launchers on OS X
Reviewed-by: sla, tbell

ohair@425 1 #
ohair@425 2 # Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
ohair@425 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ohair@425 4 #
ohair@425 5 # This code is free software; you can redistribute it and/or modify it
ohair@425 6 # under the terms of the GNU General Public License version 2 only, as
ohair@425 7 # published by the Free Software Foundation. Oracle designates this
ohair@425 8 # particular file as subject to the "Classpath" exception as provided
ohair@425 9 # by Oracle in the LICENSE file that accompanied this code.
ohair@425 10 #
ohair@425 11 # This code is distributed in the hope that it will be useful, but WITHOUT
ohair@425 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ohair@425 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ohair@425 14 # version 2 for more details (a copy is included in the LICENSE file that
ohair@425 15 # accompanied this code).
ohair@425 16 #
ohair@425 17 # You should have received a copy of the GNU General Public License version
ohair@425 18 # 2 along with this work; if not, write to the Free Software Foundation,
ohair@425 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ohair@425 20 #
ohair@425 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@425 22 # or visit www.oracle.com if you need additional information or have any
ohair@425 23 # questions.
ohair@425 24 #
ohair@425 25
ohair@425 26 # When you read this source. Remember that $(sort ...) has the side effect
ohair@425 27 # of removing duplicates. It is actually this side effect that is
ohair@425 28 # desired whenever sort is used below!
ohair@425 29
ohair@425 30 ifeq (,$(_MAKEBASE_GMK))
erikj@445 31 $(error You must include MakeBase.gmk prior to including NativeCompilation.gmk)
ohair@425 32 endif
ohair@425 33
ohair@425 34 ifeq ($(COMPILER_TYPE),CC)
ohair@494 35 COMPILING_MSG=echo $(LOG_INFO) "Compiling $(notdir $1) (for $(notdir $2))"
ohair@494 36 LINKING_MSG=echo $(LOG_INFO) "Linking $1"
ohair@494 37 LINKING_EXE_MSG=echo $(LOG_INFO) "Linking executable $1"
ohair@494 38 ARCHIVING_MSG=echo $(LOG_INFO) "Archiving $1"
ohair@425 39 else
ohair@425 40 COMPILING_MSG=
ohair@425 41 LINKING_MSG=
ohair@425 42 LINKING_EXE_MSG=
ohair@425 43 ARCHIVING_MSG=
ohair@425 44 endif
ohair@425 45
ohair@425 46 define add_native_source
ohair@425 47 # param 1 = BUILD_MYPACKAGE
ohair@425 48 # parma 2 = the source file name (..../alfa.c or .../beta.cpp)
ohair@425 49 # param 3 = the bin dir that stores all .o (.obj) and .d files.
ohair@425 50 # param 4 = the c flags to the compiler
ohair@425 51 # param 5 = the c compiler
ohair@425 52 # param 6 = the c++ flags to the compiler
ohair@425 53 # param 7 = the c++ compiler
erikj@458 54 # param 8 = the flags to the assembler
ohair@425 55
ohair@425 56 ifneq (,$$(filter %.c,$2))
ohair@425 57 # Compile as a C file
ohair@478 58 $1_$2_FLAGS=$4 $$($1_$(notdir $2)_CFLAGS) -DTHIS_FILE='"$$(<F)"' -c
ohair@425 59 $1_$2_COMP=$5
erikj@445 60 $1_$2_DEP_FLAG:=$(C_FLAG_DEPS)
erikj@445 61 else ifneq (,$$(filter %.m,$2))
erikj@445 62 # Compile as a objective-c file
ohair@478 63 $1_$2_FLAGS=-x objective-c $4 $$($1_$(notdir $2)_CFLAGS) -DTHIS_FILE='"$$(<F)"' -c
erikj@445 64 $1_$2_COMP=$5
erikj@445 65 $1_$2_DEP_FLAG:=$(C_FLAG_DEPS)
erikj@458 66 else ifneq (,$$(filter %.s,$2))
erikj@458 67 # Compile as assembler file
ohair@478 68 $1_$2_FLAGS=$8 -DTHIS_FILE='"$$(<F)"'
erikj@458 69 $1_$2_COMP=$(AS)
erikj@458 70 $1_$2_DEP_FLAG:=
ohair@425 71 else
ohair@425 72 # Compile as a C++ file
ohair@478 73 $1_$2_FLAGS=$6 $$($1_$(notdir $2)_CXXFLAGS) -DTHIS_FILE='"$$(<F)"' -c
ohair@425 74 $1_$2_COMP=$7
erikj@445 75 $1_$2_DEP_FLAG:=$(CXX_FLAG_DEPS)
ohair@425 76 endif
ohair@425 77 # Generate the .o (.obj) file name and place it in the bin dir.
erikj@458 78 $1_$2_OBJ:=$3/$$(patsubst %.cpp,%$(OBJ_SUFFIX),$$(patsubst %.c,%$(OBJ_SUFFIX),$$(patsubst %.m,%$(OBJ_SUFFIX),$$(patsubst %.s,%$(OBJ_SUFFIX),$$(notdir $2)))))
ohair@425 79 # Only continue if this object file hasn't been processed already. This lets the first found
ohair@425 80 # source file override any other with the same name.
ohair@425 81 ifeq (,$$(findstring $$($1_$2_OBJ),$$($1_OBJS_SO_FAR)))
ohair@425 82 $1_OBJS_SO_FAR+=$$($1_$2_OBJ)
erikj@458 83 ifeq (,$$(filter %.s,$2))
erikj@458 84 # And this is the dependency file for this obj file.
erikj@458 85 $1_$2_DEP:=$$(patsubst %$(OBJ_SUFFIX),%.d,$$($1_$2_OBJ))
erikj@458 86 # Include previously generated dependency information. (if it exists)
erikj@458 87 -include $$($1_$2_DEP)
ohair@425 88
erikj@458 89 ifeq ($(COMPILER_TYPE),CL)
erikj@458 90 $1_$2_DEBUG_OUT_FLAGS:=-Fd$$(patsubst %$(OBJ_SUFFIX),%.pdb,$$($1_$2_OBJ)) \
erikj@458 91 -Fm$$(patsubst %$(OBJ_SUFFIX),%.map,$$($1_$2_OBJ))
erikj@458 92 endif
ohair@425 93 endif
ohair@425 94
ohair@425 95 $$($1_$2_OBJ) : $2
ohair@425 96 ifeq ($(COMPILER_TYPE),CC)
ohair@494 97 $$(call COMPILING_MSG,$2,$$($1_TARGET))
erikj@699 98 # The Sun studio compiler doesn't output the full path to the object file in the
erikj@699 99 # generated deps files. Fixing it with sed. If compiling assembly, don't try this.
erikj@699 100 ifeq ($(COMPILER_NAME)$$(filter %.s,$2),ossc)
erikj@699 101 $$($1_$2_COMP) $$($1_$2_FLAGS) $$($1_$2_DEP_FLAG) $$($1_$2_DEP).tmp $(CC_OUT_OPTION)$$($1_$2_OBJ) $2
erikj@699 102 $(SED) 's|^$$(@F):|$$@:|' $$($1_$2_DEP).tmp > $$($1_$2_DEP)
erikj@699 103 else
erikj@458 104 $$($1_$2_COMP) $$($1_$2_FLAGS) $$($1_$2_DEP_FLAG) $$($1_$2_DEP) $(CC_OUT_OPTION)$$($1_$2_OBJ) $2
ohair@425 105 endif
erikj@699 106 endif
erikj@699 107 # The Visual Studio compiler lacks a feature for generating make dependencies, but by
erikj@699 108 # setting -showIncludes, all included files are printed. These are filtered out and
erikj@699 109 # parsed into make dependences.
ohair@425 110 ifeq ($(COMPILER_TYPE),CL)
erikj@699 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:"
erikj@699 112 ($(ECHO) $$@: \\ \
erikj@699 113 && $(SED) -e '/^Note: including file:/!d' \
erikj@699 114 -e 's|Note: including file: *||' \
erikj@699 115 -e 's|\\|/|g' \
erikj@699 116 -e 's|^\([a-zA-Z]\):|/cygdrive/\1|g' \
erikj@699 117 -e '/$(subst /,\/,$(TOPDIR))/!d' \
erikj@699 118 -e 's|$$$$| \\|g' \
erikj@699 119 $$($1_$2_DEP).raw) > $$($1_$2_DEP)
ohair@425 120 endif
ohair@425 121 endif
ohair@425 122 endef
ohair@425 123
ohair@425 124 define SetupNativeCompilation
ohair@425 125 # param 1 is for example BUILD_MYPACKAGE
ohair@425 126 # param 2,3,4,5,6,7,8 are named args.
ohair@425 127 # SRC one or more directory roots to scan for C/C++ files.
ohair@425 128 # LANG C or C++
ohair@425 129 # CFLAGS the compiler flags to be used, used both for C and C++.
ohair@425 130 # CXXFLAGS the compiler flags to be used for c++, if set overrides CFLAGS.
ohair@425 131 # LDFLAGS the linker flags to be used, used both for C and C++.
ohair@425 132 # LDFLAGS_SUFFIX the linker flags to be added last on the commandline
ohair@425 133 # typically the libraries linked to.
ohair@425 134 # ARFLAGS the archiver flags to be used
erikj@458 135 # OBJECT_DIR the directory where we store the object files
erikj@458 136 # LIBRARY the resulting library file
erikj@458 137 # PROGRAM the resulting exec file
ohair@425 138 # INCLUDES only pick source from these directories
ohair@425 139 # EXCLUDES do not pick source from these directories
ohair@425 140 # INCLUDE_FILES only compile exactly these files!
ohair@425 141 # EXCLUDE_FILES with these names
ohair@425 142 # VERSIONINFO_RESOURCE Input file for RC. Setting this implies that RC will be run
ohair@425 143 # RC_FLAGS flags for RC.
erikj@445 144 # MAPFILE mapfile
erikj@445 145 # REORDER reorder file
erikj@458 146 # DEBUG_SYMBOLS add debug symbols (if configured on)
erikj@458 147 # CC the compiler to use, default is $(CC)
erikj@458 148 # LDEXE the linker to use for linking executables, default is $(LDEXE)
ohair@478 149 # OPTIMIZATION sets optimization level to NONE, LOW, HIGH, HIGHEST
erikj@725 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))
erikj@725 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))
erikj@725 152 $(if $(27),$(error Internal makefile error: Too many arguments to SetupNativeCompilation, please update NativeCompilation.gmk))
erikj@458 153
erikj@458 154 ifneq (,$$($1_BIN))
erikj@458 155 $$(error BIN has been replaced with OBJECT_DIR)
erikj@458 156 endif
erikj@458 157
erikj@458 158 ifneq (,$$($1_LIB))
erikj@458 159 $$(error LIB has been replaced with LIBRARY)
erikj@458 160 endif
erikj@458 161
erikj@458 162 ifneq (,$$($1_EXE))
erikj@458 163 $$(error EXE has been replaced with PROGRAM)
erikj@458 164 endif
erikj@458 165
erikj@458 166 ifneq (,$$($1_LIBRARY))
erikj@458 167 ifeq (,$$($1_OUTPUT_DIR))
erikj@458 168 $$(error LIBRARY requires OUTPUT_DIR)
erikj@458 169 endif
erikj@458 170
erikj@458 171 ifneq ($$($1_LIBRARY),$(basename $$($1_LIBRARY)))
erikj@458 172 $$(error directory of LIBRARY should be specified using OUTPUT_DIR)
erikj@458 173 endif
erikj@458 174
erikj@458 175 ifneq (,$(findstring $(SHARED_LIBRARY_SUFFIX),$$($1_LIBRARY)))
erikj@458 176 $$(error LIBRARY should be specified without SHARED_LIBRARY_SUFFIX: $(SHARED_LIBRARY_SUFFIX))
erikj@458 177 endif
erikj@458 178
erikj@458 179 ifneq (,$(findstring $(LIBRARY_PREFIX),$$($1_LIBRARY)))
erikj@458 180 $$(error LIBRARY should be specified without LIBRARY_PREFIX: $(LIBRARY_PREFIX))
erikj@458 181 endif
erikj@458 182
erikj@458 183 $1_BASENAME:=$(LIBRARY_PREFIX)$$($1_LIBRARY)$(SHARED_LIBRARY_SUFFIX)
erikj@458 184 $1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME)
erikj@458 185
erikj@458 186 endif
erikj@458 187
erikj@458 188 ifneq (,$$($1_STATIC_LIBRARY))
erikj@458 189 ifeq (,$$($1_OUTPUT_DIR))
erikj@458 190 $$(error STATIC_LIBRARY requires OUTPUT_DIR)
erikj@458 191 endif
erikj@458 192
erikj@458 193 ifneq ($$($1_STATIC_LIBRARY),$(basename $$($1_STATIC_LIBRARY)))
erikj@458 194 $$(error directory of STATIC_LIBRARY should be specified using OUTPUT_DIR)
erikj@458 195 endif
erikj@458 196
erikj@458 197 ifneq (,$(findstring $(STATIC_LIBRARY_SUFFIX),$$($1_STATIC_LIBRARY)))
erikj@458 198 $$(error STATIC_LIBRARY should be specified without STATIC_LIBRARY_SUFFIX: $(STATIC_LIBRARY_SUFFIX))
erikj@458 199 endif
erikj@458 200
erikj@458 201 ifneq (,$(findstring $(LIBRARY_PREFIX),$$($1_STATIC_LIBRARY)))
erikj@458 202 $$(error STATIC_LIBRARY should be specified without LIBRARY_PREFIX: $(LIBRARY_PREFIX))
erikj@458 203 endif
erikj@458 204
erikj@458 205 $1_BASENAME:=$(LIBRARY_PREFIX)$$($1_STATIC_LIBRARY)$(STATIC_LIBRARY_SUFFIX)
erikj@458 206 $1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME)
erikj@458 207 endif
erikj@458 208
erikj@458 209 ifneq (,$$($1_PROGRAM))
erikj@458 210 ifeq (,$$($1_OUTPUT_DIR))
erikj@458 211 $$(error PROGRAM requires OUTPUT_DIR)
erikj@458 212 endif
erikj@458 213
erikj@458 214 ifneq ($$($1_PROGRAM),$(basename $$($1_PROGRAM)))
erikj@458 215 $$(error directory of PROGRAM should be specified using OUTPUT_DIR)
erikj@458 216 endif
erikj@458 217
erikj@458 218 ifneq (,$(findstring $(EXE_SUFFIX),$$($1_PROGRAM)))
erikj@458 219 $$(error PROGRAM should be specified without EXE_SUFFIX: $(EXE_SUFFIX))
erikj@458 220 endif
erikj@458 221
erikj@458 222 $1_BASENAME:=$$($1_PROGRAM)$(EXE_SUFFIX)
erikj@458 223 $1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME)
erikj@458 224
erikj@458 225 endif
erikj@458 226
erikj@458 227 ifeq (,$$($1_TARGET))
erikj@458 228 $$(error Neither PROGRAM, LIBRARY nor STATIC_LIBRARY has been specified for SetupNativeCompilation)
erikj@458 229 endif
ohair@425 230
ohair@425 231 ifeq (,$$($1_LANG))
ohair@425 232 $$(error You have to specify LANG for native compilation $1)
ohair@425 233 endif
ohair@425 234 ifeq (C,$$($1_LANG))
ohair@494 235 ifeq ($$($1_LDEXE),)
erikj@458 236 $1_LDEXE:=$(LDEXE)
ohair@494 237 endif
ohair@425 238 $1_LD:=$(LD)
ohair@425 239 else
ohair@425 240 ifeq (C++,$$($1_LANG))
ohair@425 241 $1_LD:=$(LDCXX)
ohair@425 242 $1_LDEXE:=$(LDEXECXX)
ohair@425 243 else
ohair@425 244 $$(error Unknown native language $$($1_LANG) for $1)
ohair@425 245 endif
ohair@425 246 endif
ohair@425 247
erikj@458 248 ifeq ($$($1_CC),)
erikj@458 249 $1_CC:=$(CC)
erikj@458 250 endif
erikj@458 251
ohair@425 252 # Make sure the dirs exist.
ohair@494 253 $$(eval $$(call MakeDir,$$($1_OBJECT_DIR) $$($1_OUTPUT_DIR)))
ohair@494 254 $$(foreach d,$$($1_SRC), $$(if $$(wildcard $$d),,$$(error SRC specified to SetupNativeCompilation $1 contains missing directory $$d)))
ohair@494 255
ohair@425 256 # Find all files in the source trees. Sort to remove duplicates.
erikj@557 257 $1_ALL_SRCS := $$(sort $$(call CacheFind,$$($1_SRC)))
ohair@425 258 # Extract the C/C++ files.
ohair@425 259 $1_EXCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_EXCLUDE_FILES)))
ohair@425 260 $1_INCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_INCLUDE_FILES)))
ohair@425 261 ifneq ($$($1_EXCLUDE_FILES),)
ohair@425 262 $1_EXCLUDE_FILES:=$$(addprefix %,$$($1_EXCLUDE_FILES))
ohair@425 263 endif
erikj@458 264 $1_SRCS := $$(filter-out $$($1_EXCLUDE_FILES),$$(filter %.s %.c %.cpp %.m,$$($1_ALL_SRCS)))
ohair@425 265 ifneq (,$$(strip $$($1_INCLUDE_FILES)))
ohair@425 266 $1_SRCS := $$(filter $$($1_INCLUDE_FILES),$$($1_SRCS))
ohair@425 267 endif
ohair@425 268 ifeq (,$$($1_SRCS))
ohair@425 269 $$(error No sources found for $1 when looking inside the dirs $$($1_SRC))
ohair@425 270 endif
ohair@425 271 # There can be only a single bin dir root, no need to foreach over the roots.
erikj@458 272 $1_BINS := $$(wildcard $$($1_OBJECT_DIR)/*$(OBJ_SUFFIX))
ohair@425 273 # Now we have a list of all c/c++ files to compile: $$($1_SRCS)
ohair@425 274 # and we have a list of all existing object files: $$($1_BINS)
ohair@425 275
ohair@425 276 # Prepend the source/bin path to the filter expressions. Then do the filtering.
ohair@425 277 ifneq ($$($1_INCLUDES),)
ohair@425 278 $1_SRC_INCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_INCLUDES))))
ohair@425 279 $1_SRCS := $$(filter $$($1_SRC_INCLUDES),$$($1_SRCS))
ohair@425 280 endif
ohair@425 281 ifneq ($$($1_EXCLUDES),)
ohair@425 282 $1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES))))
ohair@425 283 $1_SRCS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_SRCS))
ohair@425 284 endif
ohair@425 285
ohair@425 286 # Calculate the expected output from compiling the sources (sort to remove duplicates. Also provides
ohair@425 287 # a reproducable order on the input files to the linker).
erikj@458 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))))))))
ohair@425 289 # Are there too many object files on disk? Perhaps because some source file was removed?
ohair@425 290 $1_SUPERFLOUS_OBJS:=$$(sort $$(filter-out $$($1_EXPECTED_OBJS),$$($1_BINS)))
ohair@425 291 # Clean out the superfluous object files.
ohair@494 292 ifneq ($$($1_SUPERFLUOUS_OBJS),)
ohair@494 293 $$(shell $(RM) -f $$($1_SUPERFLUOUS_OBJS))
ohair@494 294 endif
ohair@425 295
erikj@458 296 # Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables for CFLAGS.
erikj@458 297 $1_EXTRA_CFLAGS:=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_CFLAGS_$(OPENJDK_TARGET_OS))
ohair@425 298 ifneq ($(DEBUG_LEVEL),release)
ohair@425 299 # Pickup extra debug dependent variables for CFLAGS
ohair@425 300 $1_EXTRA_CFLAGS+=$$($1_CFLAGS_debug)
erikj@458 301 $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)_debug)
erikj@458 302 $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS)_debug)
ohair@425 303 else
ohair@425 304 $1_EXTRA_CFLAGS+=$$($1_CFLAGS_release)
erikj@458 305 $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)_release)
erikj@458 306 $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS)_release)
ohair@425 307 endif
ohair@425 308
erikj@458 309 # Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables for CXXFLAGS.
erikj@458 310 $1_EXTRA_CXXFLAGS:=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_CXXFLAGS_$(OPENJDK_TARGET_OS))
ohair@425 311 ifneq ($(DEBUG_LEVEL),release)
ohair@425 312 # Pickup extra debug dependent variables for CXXFLAGS
ohair@425 313 $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_debug)
erikj@458 314 $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)_debug)
erikj@458 315 $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS)_debug)
ohair@425 316 else
ohair@425 317 $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_release)
erikj@458 318 $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)_release)
erikj@458 319 $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS)_release)
ohair@425 320 endif
ohair@425 321
ohair@478 322 ifneq (,$$($1_DEBUG_SYMBOLS))
erikj@533 323 ifeq ($(ENABLE_DEBUG_SYMBOLS), true)
andrew@715 324 ifdef OPENJDK
andrew@715 325 # Always add debug symbols
ohair@478 326 $1_EXTRA_CFLAGS+=$(CFLAGS_DEBUG_SYMBOLS)
ohair@478 327 $1_EXTRA_CXXFLAGS+=$(CXXFLAGS_DEBUG_SYMBOLS)
andrew@715 328 else
andrew@715 329 # Programs don't get the debug symbols added in the old build. It's not clear if
andrew@715 330 # this is intentional.
andrew@715 331 ifeq ($$($1_PROGRAM),)
andrew@715 332 $1_EXTRA_CFLAGS+=$(CFLAGS_DEBUG_SYMBOLS)
andrew@715 333 $1_EXTRA_CXXFLAGS+=$(CXXFLAGS_DEBUG_SYMBOLS)
andrew@715 334 endif
ohair@478 335 endif
ohair@478 336 endif
ohair@478 337 endif
ohair@478 338
ohair@425 339 ifeq ($$($1_CXXFLAGS),)
ohair@425 340 $1_CXXFLAGS:=$$($1_CFLAGS)
ohair@425 341 endif
ohair@425 342 ifeq ($$(strip $$($1_EXTRA_CXXFLAGS)),)
ohair@425 343 $1_EXTRA_CXXFLAGS:=$$($1_EXTRA_CFLAGS)
ohair@425 344 endif
ohair@425 345
erikj@445 346 ifneq (,$$($1_REORDER))
erikj@445 347 $1_EXTRA_CFLAGS += $$(C_FLAG_REORDER)
erikj@445 348 $1_EXTRA_CXXFLAGS += $$(CXX_FLAG_REORDER)
erikj@445 349 endif
erikj@445 350
erikj@458 351 ifeq (NONE, $$($1_OPTIMIZATION))
ohair@478 352 $1_EXTRA_CFLAGS += $(C_O_FLAG_NONE)
ohair@478 353 $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_NONE)
erikj@458 354 else ifeq (LOW, $$($1_OPTIMIZATION))
ohair@478 355 $1_EXTRA_CFLAGS += $(C_O_FLAG_NORM)
ohair@478 356 $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_NORM)
erikj@458 357 else ifeq (HIGH, $$($1_OPTIMIZATION))
ohair@478 358 $1_EXTRA_CFLAGS += $(C_O_FLAG_HI)
ohair@478 359 $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_HI)
erikj@458 360 else ifeq (HIGHEST, $$($1_OPTIMIZATION))
ohair@478 361 $1_EXTRA_CFLAGS += $(C_O_FLAG_HIGHEST)
ohair@478 362 $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_HIGHEST)
erikj@458 363 else ifneq (, $$($1_OPTIMIZATION))
ohair@478 364 $$(error Unknown value for OPTIMIZATION: $$($1_OPTIMIZATION))
erikj@458 365 endif
erikj@458 366
ohair@425 367 # Now call add_native_source for each source file we are going to compile.
ohair@425 368 $$(foreach p,$$($1_SRCS),\
erikj@458 369 $$(eval $$(call add_native_source,$1,$$p,$$($1_OBJECT_DIR),\
erikj@458 370 $$($1_CFLAGS) $$($1_EXTRA_CFLAGS),$$($1_CC),\
erikj@458 371 $$($1_CXXFLAGS) $$($1_EXTRA_CXXFLAGS),$(CXX),$$($1_ASFLAGS))))
ohair@425 372
ohair@425 373 # On windows we need to create a resource file
ohair@478 374 ifeq ($(OPENJDK_TARGET_OS), windows)
ohair@425 375 ifneq (,$$($1_VERSIONINFO_RESOURCE))
erikj@458 376 $1_RES:=$$($1_OBJECT_DIR)/$$($1_BASENAME).res
ohair@425 377 $$($1_RES): $$($1_VERSIONINFO_RESOURCE)
ohair@425 378 $(RC) $$($1_RC_FLAGS) $(CC_OUT_OPTION)$$@ $$($1_VERSIONINFO_RESOURCE)
ohair@425 379 endif
erikj@445 380 ifneq (,$$($1_MANIFEST))
erikj@458 381 $1_GEN_MANIFEST:=$$($1_OBJECT_DIR)/$$($1_PROGRAM).manifest
erikj@445 382 IMVERSIONVALUE:=$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION).$(JDK_UPDATE_VERSION).$(COOKED_BUILD_NUMBER)
erikj@445 383 $$($1_GEN_MANIFEST): $$($1_MANIFEST)
erikj@445 384 $(SED) 's%IMVERSION%$$(IMVERSIONVALUE)%g;s%PROGRAM%$$($1_PROGRAM)%g' $$< > $$@
erikj@445 385 endif
erikj@445 386 endif
erikj@445 387
erikj@445 388 # mapfile doesnt seem to be implemented on macosx (yet??)
erikj@458 389 ifneq ($(OPENJDK_TARGET_OS),macosx)
erikj@458 390 ifneq ($(OPENJDK_TARGET_OS),windows)
erikj@458 391 $1_REAL_MAPFILE:=$$($1_MAPFILE)
erikj@445 392 ifneq (,$$($1_REORDER))
erikj@458 393 $1_REAL_MAPFILE:=$$($1_OBJECT_DIR)/mapfile
erikj@445 394
erikj@445 395 $$($1_REAL_MAPFILE) : $$($1_MAPFILE) $$($1_REORDER)
erikj@445 396 $$(MKDIR) -p $$(@D)
erikj@445 397 $$(CP) $$($1_MAPFILE) $$@.tmp
erikj@458 398 $$(SED) -e 's=OUTPUTDIR=$$($1_OBJECT_DIR)=' $$($1_REORDER) >> $$@.tmp
erikj@445 399 $$(MV) $$@.tmp $$@
erikj@445 400 endif
erikj@445 401 endif
ohair@425 402 endif
erikj@445 403
ohair@478 404 # Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables
ohair@478 405 # for LDFLAGS and LDFLAGS_SUFFIX
erikj@458 406 $1_EXTRA_LDFLAGS:=$$($1_LDFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_LDFLAGS_$(OPENJDK_TARGET_OS))
erikj@458 407 $1_EXTRA_LDFLAGS_SUFFIX:=$$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS_API)) $$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS))
erikj@458 408 ifneq (,$$($1_REAL_MAPFILE))
erikj@458 409 $1_EXTRA_LDFLAGS += $(call SET_SHARED_LIBRARY_MAPFILE,$$($1_REAL_MAPFILE))
erikj@458 410 endif
erikj@458 411
erikj@458 412 $1 := $$($1_TARGET)
erikj@458 413 ifneq (,$$($1_LIBRARY))
erikj@458 414 # Generating a dynamic library.
erikj@458 415 $1_EXTRA_LDFLAGS+=$$(call SET_SHARED_LIBRARY_NAME,$$($1_BASENAME))
erikj@458 416 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 417 $1_EXTRA_LDFLAGS+="-implib:$$($1_OBJECT_DIR)/$$($1_LIBRARY).lib"
erikj@458 418 endif
erikj@458 419
aharlap@703 420 $1_EXTRA_LDFLAGS_SUFFIX += $(GLOBAL_LDFLAGS_SUFFIX)
aharlap@703 421
erikj@458 422 ifneq (,$$($1_DEBUG_SYMBOLS))
erikj@533 423 ifeq ($(ENABLE_DEBUG_SYMBOLS), true)
erikj@458 424 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 425 $1_EXTRA_LDFLAGS+="-pdb:$$($1_OBJECT_DIR)/$$($1_LIBRARY).pdb" \
erikj@458 426 "-map:$$($1_OBJECT_DIR)/$$($1_LIBRARY).map"
erikj@458 427 endif
erikj@458 428
ohair@478 429 ifneq ($$($1_OUTPUT_DIR),$$($1_OBJECT_DIR))
ohair@478 430 $$($1_OUTPUT_DIR)/% : $$($1_OBJECT_DIR)/%
erikj@458 431 $(CP) $$< $$@
ohair@478 432 endif
erikj@458 433
erikj@458 434 ifeq ($(OPENJDK_TARGET_OS), solaris)
erikj@458 435 # gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set.
erikj@458 436 # Use $(FIX_EMPTY_SEC_HDR_FLAGS) to clear the SHF_ALLOC flag (if set) from
erikj@458 437 # empty section headers until a fixed $(OBJCOPY) is available.
erikj@458 438 # An empty section header has sh_addr == 0 and sh_size == 0.
erikj@458 439 # This problem has only been seen on Solaris X64, but we call this tool
erikj@458 440 # on all Solaris builds just in case.
erikj@458 441 #
erikj@458 442 # $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections.
erikj@458 443 # Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available.
erikj@458 444 $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo : $$($1_TARGET) \
erikj@458 445 $(FIX_EMPTY_SEC_HDR_FLAGS) $(ADD_GNU_DEBUGLINK)
erikj@458 446 $(RM) $$@
ohair@494 447 $(FIX_EMPTY_SEC_HDR_FLAGS) $(LOG_INFO) $$<
erikj@458 448 $(OBJCOPY) --only-keep-debug $$< $$@
ohair@494 449 $(CD) $$(@D) && $(ADD_GNU_DEBUGLINK) $(LOG_INFO) $$(@F) $$<
erikj@458 450 else # not solaris
erikj@458 451 $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo : $$($1_TARGET)
erikj@458 452 $(RM) $$@
erikj@458 453 $(OBJCOPY) --only-keep-debug $$< $$@
erikj@459 454 $(CD) $$(@D) && $(OBJCOPY) --add-gnu-debuglink=$$(@F) $$<
erikj@459 455 endif # Touch to not retrigger rule on rebuild
erikj@459 456 $(TOUCH) $$@
erikj@458 457
erikj@533 458 ifeq ($(ZIP_DEBUGINFO_FILES), true)
erikj@458 459 $1 += $$($1_OUTPUT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz
erikj@458 460
erikj@458 461 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 462 $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz : $$($1_TARGET)
erikj@458 463 $(CD) $$($1_OBJECT_DIR) \
erikj@458 464 && $(ZIP) -q $$@ $$($1_LIBRARY).map $$($1_LIBRARY).pdb
erikj@458 465 else
erikj@458 466 $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz : $$($1_TARGET) \
erikj@458 467 $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo
erikj@458 468 $(CD) $$($1_OBJECT_DIR) \
erikj@458 469 && $(ZIP) -q $$@ $$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo
erikj@458 470 endif
erikj@458 471 else
erikj@458 472 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 473 $1 += $$($1_OUTPUT_DIR)/$$($1_LIBRARY).map \
erikj@458 474 $$($1_OUTPUT_DIR)/$$($1_LIBRARY).pdb
erikj@458 475 else
erikj@458 476 $1 += $$($1_OUTPUT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo
erikj@458 477 endif
erikj@458 478 endif
erikj@458 479 endif
erikj@458 480 endif
erikj@458 481
erikj@458 482 $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_REAL_MAPFILE)
erikj@458 483 $$(call LINKING_MSG,$$($1_BASENAME))
erikj@458 484 $$($1_LD) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(LD_OUT_OPTION)$$@ \
erikj@458 485 $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_LDFLAGS_SUFFIX) \
erikj@458 486 $$($1_EXTRA_LDFLAGS_SUFFIX)
erikj@458 487
erikj@458 488 endif
erikj@458 489
erikj@458 490 ifneq (,$$($1_STATIC_LIBRARY))
erikj@458 491 # Generating a static library, ie object file archive.
erikj@458 492 $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES)
erikj@458 493 $$(call ARCHIVING_MSG,$$($1_LIBRARY))
erikj@458 494 $(AR) $$($1_AR_FLAGS) $(AR_OUT_OPTION)$$($1_TARGET) $$($1_EXPECTED_OBJS) \
ohair@425 495 $$($1_RES) $$($1_LDFLAGS_SUFFIX) $$($1_EXTRA_LDFLAGS_SUFFIX)
ohair@425 496 endif
erikj@458 497
erikj@458 498 ifneq (,$$($1_PROGRAM))
ohair@425 499 # A executable binary has been specified, setup the target for it.
erikj@458 500 ifneq (,$$($1_DEBUG_SYMBOLS))
erikj@533 501 ifeq ($(ENABLE_DEBUG_SYMBOLS), true)
erikj@458 502 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 503 $1_EXTRA_LDFLAGS+="-pdb:$$($1_OBJECT_DIR)/$$($1_PROGRAM).pdb" \
erikj@458 504 "-map:$$($1_OBJECT_DIR)/$$($1_PROGRAM).map"
erikj@458 505 endif
erikj@458 506
ohair@478 507 ifneq ($$($1_OUTPUT_DIR),$$($1_OBJECT_DIR))
ohair@478 508 $$($1_OUTPUT_DIR)/% : $$($1_OBJECT_DIR)/%
erikj@458 509 $(CP) $$< $$@
ohair@478 510 endif
erikj@458 511
erikj@458 512 ifeq ($(OPENJDK_TARGET_OS), solaris)
erikj@458 513 # gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set.
erikj@458 514 # Use $(FIX_EMPTY_SEC_HDR_FLAGS) to clear the SHF_ALLOC flag (if set) from
erikj@458 515 # empty section headers until a fixed $(OBJCOPY) is available.
erikj@458 516 # An empty section header has sh_addr == 0 and sh_size == 0.
erikj@458 517 # This problem has only been seen on Solaris X64, but we call this tool
erikj@458 518 # on all Solaris builds just in case.
erikj@458 519 #
erikj@458 520 # $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections.
erikj@458 521 # Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available.
erikj@458 522 $$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo : $$($1_TARGET) \
erikj@458 523 $(FIX_EMPTY_SEC_HDR_FLAGS) $(ADD_GNU_DEBUGLINK)
erikj@458 524 $(RM) $$@
ohair@494 525 $(FIX_EMPTY_SEC_HDR_FLAGS) $(LOG_INFO) $$<
erikj@458 526 $(OBJCOPY) --only-keep-debug $$< $$@
ohair@494 527 $(CD) $$(@D) && $(ADD_GNU_DEBUGLINK) $(LOG_INFO) $$(@F) $$<
erikj@458 528 else # not solaris
erikj@458 529 $$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo : $$($1_TARGET)
erikj@458 530 $(RM) $$@
erikj@458 531 $(OBJCOPY) --only-keep-debug $$< $$@
erikj@459 532 $(CD) $$(@D) && $(OBJCOPY) --add-gnu-debuglink=$$(@F) $$<
erikj@458 533 endif
erikj@459 534 $(TOUCH) $$@
erikj@458 535
erikj@533 536 ifeq ($(ZIP_DEBUGINFO_FILES), true)
erikj@458 537 $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).diz
erikj@458 538
erikj@458 539 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 540 $$($1_OBJECT_DIR)/$$($1_PROGRAM).diz : $$($1_TARGET)
erikj@458 541 $(CD) $$($1_OBJECT_DIR) \
erikj@458 542 && $(ZIP) -q $$@ $$($1_PROGRAM).map $$($1_PROGRAM).pdb
erikj@458 543 else
erikj@458 544 $$($1_OBJECT_DIR)/$$(PROGRAM_PREFIX)$$($1_PROGRAM).diz : $$($1_TARGET) \
erikj@458 545 $$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo
erikj@458 546 $(CD) $$($1_OBJECT_DIR) \
erikj@458 547 && $(ZIP) -q $$@ $$($1_PROGRAM).debuginfo
erikj@458 548 endif
erikj@458 549 else
erikj@458 550 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 551 $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).map \
erikj@458 552 $$($1_OUTPUT_DIR)/$$($1_PROGRAM).pdb
erikj@458 553 else
erikj@458 554 $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).debuginfo
erikj@458 555 endif
erikj@458 556 endif
erikj@458 557 endif
erikj@458 558 endif
erikj@458 559
aharlap@703 560 $1_EXTRA_LDFLAGS_SUFFIX += $(GLOBAL_LDFLAGS_SUFFIX)
aharlap@703 561
erikj@458 562 $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_GEN_MANIFEST)
erikj@458 563 $$(call LINKING_EXE_MSG,$$($1_BASENAME))
erikj@458 564 $$($1_LDEXE) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(EXE_OUT_OPTION)$$($1_TARGET) \
erikj@445 565 $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_LDFLAGS_SUFFIX) \
erikj@445 566 $$($1_EXTRA_LDFLAGS_SUFFIX)
erikj@445 567 ifneq (,$$($1_GEN_MANIFEST))
ohair@494 568 $(MT) -nologo -manifest $$($1_GEN_MANIFEST) -outputresource:$$@;#1
erikj@445 569 endif
erikj@725 570 # This only works if the openjdk_codesign identity is present on the system. Let
erikj@725 571 # silently fail otherwise.
erikj@725 572 ifneq (,$(CODESIGN))
erikj@725 573 ifneq (,$$($1_CODESIGN))
erikj@725 574 $(CODESIGN) -s openjdk_codesign $$@
erikj@725 575 endif
erikj@725 576 endif
ohair@425 577 endif
ohair@425 578 endef

mercurial