common/makefiles/NativeCompilation.gmk

Tue, 18 Sep 2012 11:29:16 -0700

author
ohair
date
Tue, 18 Sep 2012 11:29:16 -0700
changeset 478
2ba6f4da4bf3
parent 459
3156dff953b1
child 494
e64f2cb57d05
permissions
-rw-r--r--

7197849: Update new build-infra makefiles
Reviewed-by: ihse, erikj, ohrstrom, 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@425 35 COMPILING_MSG=echo Compiling $1
ohair@425 36 LINKING_MSG=echo Linking $1
ohair@425 37 LINKING_EXE_MSG=echo Linking executable $1
ohair@425 38 ARCHIVING_MSG=echo 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@425 97 $$(call COMPILING_MSG,$$(notdir $2))
erikj@458 98 $$($1_$2_COMP) $$($1_$2_FLAGS) $$($1_$2_DEP_FLAG) $$($1_$2_DEP) $(CC_OUT_OPTION)$$($1_$2_OBJ) $2
ohair@425 99 endif
ohair@425 100 ifeq ($(COMPILER_TYPE),CL)
erikj@458 101 $$($1_$2_COMP) $$($1_$2_FLAGS) $$($1_$2_DEBUG_OUT_FLAGS) $(CC_OUT_OPTION)$$($1_$2_OBJ) $2
ohair@425 102 endif
ohair@425 103 endif
ohair@425 104 endef
ohair@425 105
ohair@425 106 define SetupNativeCompilation
ohair@425 107 # param 1 is for example BUILD_MYPACKAGE
ohair@425 108 # param 2,3,4,5,6,7,8 are named args.
ohair@425 109 # SRC one or more directory roots to scan for C/C++ files.
ohair@425 110 # LANG C or C++
ohair@425 111 # CFLAGS the compiler flags to be used, used both for C and C++.
ohair@425 112 # CXXFLAGS the compiler flags to be used for c++, if set overrides CFLAGS.
ohair@425 113 # LDFLAGS the linker flags to be used, used both for C and C++.
ohair@425 114 # LDFLAGS_SUFFIX the linker flags to be added last on the commandline
ohair@425 115 # typically the libraries linked to.
ohair@425 116 # ARFLAGS the archiver flags to be used
erikj@458 117 # OBJECT_DIR the directory where we store the object files
erikj@458 118 # LIBRARY the resulting library file
erikj@458 119 # PROGRAM the resulting exec file
ohair@425 120 # INCLUDES only pick source from these directories
ohair@425 121 # EXCLUDES do not pick source from these directories
ohair@425 122 # INCLUDE_FILES only compile exactly these files!
ohair@425 123 # EXCLUDE_FILES with these names
ohair@425 124 # VERSIONINFO_RESOURCE Input file for RC. Setting this implies that RC will be run
ohair@425 125 # RC_FLAGS flags for RC.
erikj@445 126 # MAPFILE mapfile
erikj@445 127 # REORDER reorder file
erikj@458 128 # DEBUG_SYMBOLS add debug symbols (if configured on)
erikj@458 129 # CC the compiler to use, default is $(CC)
erikj@458 130 # LDEXE the linker to use for linking executables, default is $(LDEXE)
ohair@478 131 # OPTIMIZATION sets optimization level to NONE, LOW, HIGH, HIGHEST
ohair@425 132 $(if $2,$1_$(strip $2))
ohair@425 133 $(if $3,$1_$(strip $3))
ohair@425 134 $(if $4,$1_$(strip $4))
ohair@425 135 $(if $5,$1_$(strip $5))
ohair@425 136 $(if $6,$1_$(strip $6))
ohair@425 137 $(if $7,$1_$(strip $7))
ohair@425 138 $(if $8,$1_$(strip $8))
ohair@425 139 $(if $9,$1_$(strip $9))
ohair@425 140 $(if $(10),$1_$(strip $(10)))
ohair@425 141 $(if $(11),$1_$(strip $(11)))
ohair@425 142 $(if $(12),$1_$(strip $(12)))
ohair@425 143 $(if $(13),$1_$(strip $(13)))
ohair@425 144 $(if $(14),$1_$(strip $(14)))
ohair@425 145 $(if $(15),$1_$(strip $(15)))
ohair@425 146 $(if $(16),$1_$(strip $(16)))
ohair@425 147 $(if $(17),$1_$(strip $(17)))
ohair@425 148 $(if $(18),$1_$(strip $(18)))
ohair@425 149 $(if $(19),$1_$(strip $(19)))
ohair@425 150 $(if $(20),$1_$(strip $(20)))
erikj@458 151 $(if $(21),$1_$(strip $(21)))
ohair@478 152 $(if $(22),$1_$(strip $(22)))
ohair@478 153 $(if $(23),$1_$(strip $(23)))
ohair@478 154 $(if $(24),$1_$(strip $(24)))
ohair@478 155 $(if $(25),$1_$(strip $(25)))
ohair@478 156 $(if $(26),$(error Internal makefile error: Too many arguments to SetupNativeCompilation, please update NativeCompilation.gmk))
erikj@458 157
erikj@458 158 ifneq (,$$($1_BIN))
erikj@458 159 $$(error BIN has been replaced with OBJECT_DIR)
erikj@458 160 endif
erikj@458 161
erikj@458 162 ifneq (,$$($1_LIB))
erikj@458 163 $$(error LIB has been replaced with LIBRARY)
erikj@458 164 endif
erikj@458 165
erikj@458 166 ifneq (,$$($1_EXE))
erikj@458 167 $$(error EXE has been replaced with PROGRAM)
erikj@458 168 endif
erikj@458 169
erikj@458 170 ifneq (,$$($1_LIBRARY))
erikj@458 171 ifeq (,$$($1_OUTPUT_DIR))
erikj@458 172 $$(error LIBRARY requires OUTPUT_DIR)
erikj@458 173 endif
erikj@458 174
erikj@458 175 ifneq ($$($1_LIBRARY),$(basename $$($1_LIBRARY)))
erikj@458 176 $$(error directory of LIBRARY should be specified using OUTPUT_DIR)
erikj@458 177 endif
erikj@458 178
erikj@458 179 ifneq (,$(findstring $(SHARED_LIBRARY_SUFFIX),$$($1_LIBRARY)))
erikj@458 180 $$(error LIBRARY should be specified without SHARED_LIBRARY_SUFFIX: $(SHARED_LIBRARY_SUFFIX))
erikj@458 181 endif
erikj@458 182
erikj@458 183 ifneq (,$(findstring $(LIBRARY_PREFIX),$$($1_LIBRARY)))
erikj@458 184 $$(error LIBRARY should be specified without LIBRARY_PREFIX: $(LIBRARY_PREFIX))
erikj@458 185 endif
erikj@458 186
erikj@458 187 $1_BASENAME:=$(LIBRARY_PREFIX)$$($1_LIBRARY)$(SHARED_LIBRARY_SUFFIX)
erikj@458 188 $1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME)
erikj@458 189
erikj@458 190 endif
erikj@458 191
erikj@458 192 ifneq (,$$($1_STATIC_LIBRARY))
erikj@458 193 ifeq (,$$($1_OUTPUT_DIR))
erikj@458 194 $$(error STATIC_LIBRARY requires OUTPUT_DIR)
erikj@458 195 endif
erikj@458 196
erikj@458 197 ifneq ($$($1_STATIC_LIBRARY),$(basename $$($1_STATIC_LIBRARY)))
erikj@458 198 $$(error directory of STATIC_LIBRARY should be specified using OUTPUT_DIR)
erikj@458 199 endif
erikj@458 200
erikj@458 201 ifneq (,$(findstring $(STATIC_LIBRARY_SUFFIX),$$($1_STATIC_LIBRARY)))
erikj@458 202 $$(error STATIC_LIBRARY should be specified without STATIC_LIBRARY_SUFFIX: $(STATIC_LIBRARY_SUFFIX))
erikj@458 203 endif
erikj@458 204
erikj@458 205 ifneq (,$(findstring $(LIBRARY_PREFIX),$$($1_STATIC_LIBRARY)))
erikj@458 206 $$(error STATIC_LIBRARY should be specified without LIBRARY_PREFIX: $(LIBRARY_PREFIX))
erikj@458 207 endif
erikj@458 208
erikj@458 209 $1_BASENAME:=$(LIBRARY_PREFIX)$$($1_STATIC_LIBRARY)$(STATIC_LIBRARY_SUFFIX)
erikj@458 210 $1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME)
erikj@458 211 endif
erikj@458 212
erikj@458 213 ifneq (,$$($1_PROGRAM))
erikj@458 214 ifeq (,$$($1_OUTPUT_DIR))
erikj@458 215 $$(error PROGRAM requires OUTPUT_DIR)
erikj@458 216 endif
erikj@458 217
erikj@458 218 ifneq ($$($1_PROGRAM),$(basename $$($1_PROGRAM)))
erikj@458 219 $$(error directory of PROGRAM should be specified using OUTPUT_DIR)
erikj@458 220 endif
erikj@458 221
erikj@458 222 ifneq (,$(findstring $(EXE_SUFFIX),$$($1_PROGRAM)))
erikj@458 223 $$(error PROGRAM should be specified without EXE_SUFFIX: $(EXE_SUFFIX))
erikj@458 224 endif
erikj@458 225
erikj@458 226 $1_BASENAME:=$$($1_PROGRAM)$(EXE_SUFFIX)
erikj@458 227 $1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME)
erikj@458 228
erikj@458 229 endif
erikj@458 230
erikj@458 231 ifeq (,$$($1_TARGET))
erikj@458 232 $$(error Neither PROGRAM, LIBRARY nor STATIC_LIBRARY has been specified for SetupNativeCompilation)
erikj@458 233 endif
ohair@425 234
ohair@425 235 ifeq (,$$($1_LANG))
ohair@425 236 $$(error You have to specify LANG for native compilation $1)
ohair@425 237 endif
ohair@425 238 ifeq (C,$$($1_LANG))
erikj@458 239 ifeq ($$($1_LDEXE),)
erikj@458 240 $1_LDEXE:=$(LDEXE)
erikj@458 241 endif
ohair@425 242 $1_LD:=$(LD)
ohair@425 243 else
ohair@425 244 ifeq (C++,$$($1_LANG))
ohair@425 245 $1_LD:=$(LDCXX)
ohair@425 246 $1_LDEXE:=$(LDEXECXX)
ohair@425 247 else
ohair@425 248 $$(error Unknown native language $$($1_LANG) for $1)
ohair@425 249 endif
ohair@425 250 endif
ohair@425 251
erikj@458 252 ifeq ($$($1_CC),)
erikj@458 253 $1_CC:=$(CC)
erikj@458 254 endif
erikj@458 255
ohair@425 256 # Make sure the dirs exist.
erikj@458 257 $$(shell $(MKDIR) -p $$($1_SRC) $$($1_OBJECT_DIR) $$($1_OUTPUT_DIR))
ohair@425 258 # Find all files in the source trees. Sort to remove duplicates.
ohair@425 259 $1_ALL_SRCS := $$(sort $$(foreach i,$$($1_SRC), $$(shell $(FIND) $$i -type f)))
ohair@425 260 # Extract the C/C++ files.
ohair@425 261 $1_EXCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_EXCLUDE_FILES)))
ohair@425 262 $1_INCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_INCLUDE_FILES)))
ohair@425 263 ifneq ($$($1_EXCLUDE_FILES),)
ohair@425 264 $1_EXCLUDE_FILES:=$$(addprefix %,$$($1_EXCLUDE_FILES))
ohair@425 265 endif
erikj@458 266 $1_SRCS := $$(filter-out $$($1_EXCLUDE_FILES),$$(filter %.s %.c %.cpp %.m,$$($1_ALL_SRCS)))
ohair@425 267 ifneq (,$$(strip $$($1_INCLUDE_FILES)))
ohair@425 268 $1_SRCS := $$(filter $$($1_INCLUDE_FILES),$$($1_SRCS))
ohair@425 269 endif
ohair@425 270 ifeq (,$$($1_SRCS))
ohair@425 271 $$(error No sources found for $1 when looking inside the dirs $$($1_SRC))
ohair@425 272 endif
ohair@425 273 # There can be only a single bin dir root, no need to foreach over the roots.
erikj@458 274 $1_BINS := $$(wildcard $$($1_OBJECT_DIR)/*$(OBJ_SUFFIX))
ohair@425 275 # Now we have a list of all c/c++ files to compile: $$($1_SRCS)
ohair@425 276 # and we have a list of all existing object files: $$($1_BINS)
ohair@425 277
ohair@425 278 # Prepend the source/bin path to the filter expressions. Then do the filtering.
ohair@425 279 ifneq ($$($1_INCLUDES),)
ohair@425 280 $1_SRC_INCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_INCLUDES))))
ohair@425 281 $1_SRCS := $$(filter $$($1_SRC_INCLUDES),$$($1_SRCS))
ohair@425 282 endif
ohair@425 283 ifneq ($$($1_EXCLUDES),)
ohair@425 284 $1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES))))
ohair@425 285 $1_SRCS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_SRCS))
ohair@425 286 endif
ohair@425 287
ohair@425 288 # Calculate the expected output from compiling the sources (sort to remove duplicates. Also provides
ohair@425 289 # a reproducable order on the input files to the linker).
erikj@458 290 $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 291 # Are there too many object files on disk? Perhaps because some source file was removed?
ohair@425 292 $1_SUPERFLOUS_OBJS:=$$(sort $$(filter-out $$($1_EXPECTED_OBJS),$$($1_BINS)))
ohair@425 293 # Clean out the superfluous object files.
ohair@425 294 $$(shell $(RM) -f $$($1_SUPERFLUOUS_OBJS))
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))
ohair@478 323 ifeq ($(ENABLE_DEBUG_SYMBOLS), yes)
ohair@478 324 # Programs don't get the debug symbols added in the old build. It's not clear if
ohair@478 325 # this is intentional.
ohair@478 326 ifeq ($$($1_PROGRAM),)
ohair@478 327 $1_EXTRA_CFLAGS+=$(CFLAGS_DEBUG_SYMBOLS)
ohair@478 328 $1_EXTRA_CXXFLAGS+=$(CXXFLAGS_DEBUG_SYMBOLS)
ohair@478 329 endif
ohair@478 330 endif
ohair@478 331 endif
ohair@478 332
ohair@425 333 ifeq ($$($1_CXXFLAGS),)
ohair@425 334 $1_CXXFLAGS:=$$($1_CFLAGS)
ohair@425 335 endif
ohair@425 336 ifeq ($$(strip $$($1_EXTRA_CXXFLAGS)),)
ohair@425 337 $1_EXTRA_CXXFLAGS:=$$($1_EXTRA_CFLAGS)
ohair@425 338 endif
ohair@425 339
erikj@445 340 ifneq (,$$($1_REORDER))
erikj@445 341 $1_EXTRA_CFLAGS += $$(C_FLAG_REORDER)
erikj@445 342 $1_EXTRA_CXXFLAGS += $$(CXX_FLAG_REORDER)
erikj@445 343 endif
erikj@445 344
erikj@458 345 ifeq (NONE, $$($1_OPTIMIZATION))
ohair@478 346 $1_EXTRA_CFLAGS += $(C_O_FLAG_NONE)
ohair@478 347 $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_NONE)
erikj@458 348 else ifeq (LOW, $$($1_OPTIMIZATION))
ohair@478 349 $1_EXTRA_CFLAGS += $(C_O_FLAG_NORM)
ohair@478 350 $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_NORM)
erikj@458 351 else ifeq (HIGH, $$($1_OPTIMIZATION))
ohair@478 352 $1_EXTRA_CFLAGS += $(C_O_FLAG_HI)
ohair@478 353 $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_HI)
erikj@458 354 else ifeq (HIGHEST, $$($1_OPTIMIZATION))
ohair@478 355 $1_EXTRA_CFLAGS += $(C_O_FLAG_HIGHEST)
ohair@478 356 $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_HIGHEST)
erikj@458 357 else ifneq (, $$($1_OPTIMIZATION))
ohair@478 358 $$(error Unknown value for OPTIMIZATION: $$($1_OPTIMIZATION))
erikj@458 359 endif
erikj@458 360
ohair@425 361 # Now create a list of the packages that are about to compile. Used when sending source
ohair@425 362 # in a batch to the compiler.
erikj@458 363 $$(shell $(RM) $$($1_OBJECT_DIR)/_the.list_of_sources)
erikj@458 364 $$(eval $$(call ListPathsSafelyNow,$1_SRCS,\n, >> $$($1_OBJECT_DIR)/_the.list_of_sources))
ohair@425 365
ohair@425 366 # Now call add_native_source for each source file we are going to compile.
ohair@425 367 $$(foreach p,$$($1_SRCS),\
erikj@458 368 $$(eval $$(call add_native_source,$1,$$p,$$($1_OBJECT_DIR),\
erikj@458 369 $$($1_CFLAGS) $$($1_EXTRA_CFLAGS),$$($1_CC),\
erikj@458 370 $$($1_CXXFLAGS) $$($1_EXTRA_CXXFLAGS),$(CXX),$$($1_ASFLAGS))))
ohair@425 371
ohair@425 372 # On windows we need to create a resource file
ohair@478 373 ifeq ($(OPENJDK_TARGET_OS), windows)
ohair@425 374 ifneq (,$$($1_VERSIONINFO_RESOURCE))
erikj@458 375 $1_RES:=$$($1_OBJECT_DIR)/$$($1_BASENAME).res
ohair@425 376 $$($1_RES): $$($1_VERSIONINFO_RESOURCE)
ohair@425 377 $(RC) $$($1_RC_FLAGS) $(CC_OUT_OPTION)$$@ $$($1_VERSIONINFO_RESOURCE)
ohair@425 378 endif
erikj@445 379 ifneq (,$$($1_MANIFEST))
erikj@458 380 $1_GEN_MANIFEST:=$$($1_OBJECT_DIR)/$$($1_PROGRAM).manifest
erikj@445 381 IMVERSIONVALUE:=$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION).$(JDK_UPDATE_VERSION).$(COOKED_BUILD_NUMBER)
erikj@445 382 $$($1_GEN_MANIFEST): $$($1_MANIFEST)
erikj@445 383 $(SED) 's%IMVERSION%$$(IMVERSIONVALUE)%g;s%PROGRAM%$$($1_PROGRAM)%g' $$< > $$@
erikj@445 384 endif
erikj@445 385 endif
erikj@445 386
erikj@445 387 # mapfile doesnt seem to be implemented on macosx (yet??)
erikj@458 388 ifneq ($(OPENJDK_TARGET_CPU),ppc)
erikj@458 389 ifneq ($(OPENJDK_TARGET_CPU),arm)
erikj@458 390 ifneq ($(OPENJDK_TARGET_OS),macosx)
erikj@458 391 ifneq ($(OPENJDK_TARGET_OS),windows)
erikj@458 392 $1_REAL_MAPFILE:=$$($1_MAPFILE)
erikj@445 393 ifneq (,$$($1_REORDER))
erikj@458 394 $1_REAL_MAPFILE:=$$($1_OBJECT_DIR)/mapfile
erikj@445 395
erikj@445 396 $$($1_REAL_MAPFILE) : $$($1_MAPFILE) $$($1_REORDER)
erikj@445 397 $$(MKDIR) -p $$(@D)
erikj@445 398 $$(CP) $$($1_MAPFILE) $$@.tmp
erikj@458 399 $$(SED) -e 's=OUTPUTDIR=$$($1_OBJECT_DIR)=' $$($1_REORDER) >> $$@.tmp
erikj@445 400 $$(MV) $$@.tmp $$@
erikj@445 401 endif
erikj@445 402 endif
ohair@425 403 endif
erikj@458 404 endif
erikj@445 405 endif
erikj@445 406
ohair@478 407 # Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables
ohair@478 408 # for LDFLAGS and LDFLAGS_SUFFIX
erikj@458 409 $1_EXTRA_LDFLAGS:=$$($1_LDFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_LDFLAGS_$(OPENJDK_TARGET_OS))
erikj@458 410 $1_EXTRA_LDFLAGS_SUFFIX:=$$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS_API)) $$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS))
erikj@458 411 ifneq (,$$($1_REAL_MAPFILE))
erikj@458 412 $1_EXTRA_LDFLAGS += $(call SET_SHARED_LIBRARY_MAPFILE,$$($1_REAL_MAPFILE))
erikj@458 413 endif
erikj@458 414
erikj@458 415 $1 := $$($1_TARGET)
erikj@458 416 ifneq (,$$($1_LIBRARY))
erikj@458 417 # Generating a dynamic library.
erikj@458 418 $1_EXTRA_LDFLAGS+=$$(call SET_SHARED_LIBRARY_NAME,$$($1_BASENAME))
erikj@458 419 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 420 $1_EXTRA_LDFLAGS+="-implib:$$($1_OBJECT_DIR)/$$($1_LIBRARY).lib"
erikj@458 421 endif
erikj@458 422
erikj@458 423 ifneq (,$$($1_DEBUG_SYMBOLS))
erikj@458 424 ifeq ($(ENABLE_DEBUG_SYMBOLS), yes)
erikj@458 425 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 426 $1_EXTRA_LDFLAGS+="-pdb:$$($1_OBJECT_DIR)/$$($1_LIBRARY).pdb" \
erikj@458 427 "-map:$$($1_OBJECT_DIR)/$$($1_LIBRARY).map"
erikj@458 428 endif
erikj@458 429
ohair@478 430 ifneq ($$($1_OUTPUT_DIR),$$($1_OBJECT_DIR))
ohair@478 431 $$($1_OUTPUT_DIR)/% : $$($1_OBJECT_DIR)/%
erikj@458 432 $(CP) $$< $$@
ohair@478 433 endif
erikj@458 434
erikj@458 435 ifeq ($(OPENJDK_TARGET_OS), solaris)
erikj@458 436 # gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set.
erikj@458 437 # Use $(FIX_EMPTY_SEC_HDR_FLAGS) to clear the SHF_ALLOC flag (if set) from
erikj@458 438 # empty section headers until a fixed $(OBJCOPY) is available.
erikj@458 439 # An empty section header has sh_addr == 0 and sh_size == 0.
erikj@458 440 # This problem has only been seen on Solaris X64, but we call this tool
erikj@458 441 # on all Solaris builds just in case.
erikj@458 442 #
erikj@458 443 # $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections.
erikj@458 444 # Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available.
erikj@458 445 $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo : $$($1_TARGET) \
erikj@458 446 $(FIX_EMPTY_SEC_HDR_FLAGS) $(ADD_GNU_DEBUGLINK)
erikj@458 447 $(RM) $$@
erikj@458 448 $(FIX_EMPTY_SEC_HDR_FLAGS) $$<
erikj@458 449 $(OBJCOPY) --only-keep-debug $$< $$@
erikj@459 450 $(CD) $$(@D) && $(ADD_GNU_DEBUGLINK) $$(@F) $$<
erikj@458 451 else # not solaris
erikj@458 452 $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo : $$($1_TARGET)
erikj@458 453 $(RM) $$@
erikj@458 454 $(OBJCOPY) --only-keep-debug $$< $$@
erikj@459 455 $(CD) $$(@D) && $(OBJCOPY) --add-gnu-debuglink=$$(@F) $$<
erikj@459 456 endif # Touch to not retrigger rule on rebuild
erikj@459 457 $(TOUCH) $$@
erikj@458 458
erikj@458 459 ifeq ($(ZIP_DEBUGINFO_FILES), 1)
erikj@458 460 $1 += $$($1_OUTPUT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz
erikj@458 461
erikj@458 462 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 463 $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz : $$($1_TARGET)
erikj@458 464 $(CD) $$($1_OBJECT_DIR) \
erikj@458 465 && $(ZIP) -q $$@ $$($1_LIBRARY).map $$($1_LIBRARY).pdb
erikj@458 466 else
erikj@458 467 $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz : $$($1_TARGET) \
erikj@458 468 $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo
erikj@458 469 $(CD) $$($1_OBJECT_DIR) \
erikj@458 470 && $(ZIP) -q $$@ $$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo
erikj@458 471 endif
erikj@458 472 else
erikj@458 473 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 474 $1 += $$($1_OUTPUT_DIR)/$$($1_LIBRARY).map \
erikj@458 475 $$($1_OUTPUT_DIR)/$$($1_LIBRARY).pdb
erikj@458 476 else
erikj@458 477 $1 += $$($1_OUTPUT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo
erikj@458 478 endif
erikj@458 479 endif
erikj@458 480 endif
erikj@458 481 endif
erikj@458 482
erikj@458 483 $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_REAL_MAPFILE)
erikj@458 484 $$(call LINKING_MSG,$$($1_BASENAME))
erikj@458 485 $$($1_LD) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(LD_OUT_OPTION)$$@ \
erikj@458 486 $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_LDFLAGS_SUFFIX) \
erikj@458 487 $$($1_EXTRA_LDFLAGS_SUFFIX)
erikj@458 488
erikj@458 489 endif
erikj@458 490
erikj@458 491 ifneq (,$$($1_STATIC_LIBRARY))
erikj@458 492 # Generating a static library, ie object file archive.
erikj@458 493 $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES)
erikj@458 494 $$(call ARCHIVING_MSG,$$($1_LIBRARY))
erikj@458 495 $(AR) $$($1_AR_FLAGS) $(AR_OUT_OPTION)$$($1_TARGET) $$($1_EXPECTED_OBJS) \
ohair@425 496 $$($1_RES) $$($1_LDFLAGS_SUFFIX) $$($1_EXTRA_LDFLAGS_SUFFIX)
ohair@425 497 endif
erikj@458 498
erikj@458 499 ifneq (,$$($1_PROGRAM))
ohair@425 500 # A executable binary has been specified, setup the target for it.
erikj@458 501 ifneq (,$$($1_DEBUG_SYMBOLS))
erikj@458 502 ifeq ($(ENABLE_DEBUG_SYMBOLS), yes)
erikj@458 503 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 504 $1_EXTRA_LDFLAGS+="-pdb:$$($1_OBJECT_DIR)/$$($1_PROGRAM).pdb" \
erikj@458 505 "-map:$$($1_OBJECT_DIR)/$$($1_PROGRAM).map"
erikj@458 506 endif
erikj@458 507
ohair@478 508 ifneq ($$($1_OUTPUT_DIR),$$($1_OBJECT_DIR))
ohair@478 509 $$($1_OUTPUT_DIR)/% : $$($1_OBJECT_DIR)/%
erikj@458 510 $(CP) $$< $$@
ohair@478 511 endif
erikj@458 512
erikj@458 513 ifeq ($(OPENJDK_TARGET_OS), solaris)
erikj@458 514 # gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set.
erikj@458 515 # Use $(FIX_EMPTY_SEC_HDR_FLAGS) to clear the SHF_ALLOC flag (if set) from
erikj@458 516 # empty section headers until a fixed $(OBJCOPY) is available.
erikj@458 517 # An empty section header has sh_addr == 0 and sh_size == 0.
erikj@458 518 # This problem has only been seen on Solaris X64, but we call this tool
erikj@458 519 # on all Solaris builds just in case.
erikj@458 520 #
erikj@458 521 # $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections.
erikj@458 522 # Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available.
erikj@458 523 $$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo : $$($1_TARGET) \
erikj@458 524 $(FIX_EMPTY_SEC_HDR_FLAGS) $(ADD_GNU_DEBUGLINK)
erikj@458 525 $(RM) $$@
erikj@458 526 $(FIX_EMPTY_SEC_HDR_FLAGS) $$<
erikj@458 527 $(OBJCOPY) --only-keep-debug $$< $$@
erikj@459 528 $(CD) $$(@D) && $(ADD_GNU_DEBUGLINK) $$(@F) $$<
erikj@458 529 else # not solaris
erikj@458 530 $$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo : $$($1_TARGET)
erikj@458 531 $(RM) $$@
erikj@458 532 $(OBJCOPY) --only-keep-debug $$< $$@
erikj@459 533 $(CD) $$(@D) && $(OBJCOPY) --add-gnu-debuglink=$$(@F) $$<
erikj@458 534 endif
erikj@459 535 $(TOUCH) $$@
erikj@458 536
erikj@458 537 ifeq ($(ZIP_DEBUGINFO_FILES), 1)
erikj@458 538 $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).diz
erikj@458 539
erikj@458 540 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 541 $$($1_OBJECT_DIR)/$$($1_PROGRAM).diz : $$($1_TARGET)
erikj@458 542 $(CD) $$($1_OBJECT_DIR) \
erikj@458 543 && $(ZIP) -q $$@ $$($1_PROGRAM).map $$($1_PROGRAM).pdb
erikj@458 544 else
erikj@458 545 $$($1_OBJECT_DIR)/$$(PROGRAM_PREFIX)$$($1_PROGRAM).diz : $$($1_TARGET) \
erikj@458 546 $$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo
erikj@458 547 $(CD) $$($1_OBJECT_DIR) \
erikj@458 548 && $(ZIP) -q $$@ $$($1_PROGRAM).debuginfo
erikj@458 549 endif
erikj@458 550 else
erikj@458 551 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 552 $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).map \
erikj@458 553 $$($1_OUTPUT_DIR)/$$($1_PROGRAM).pdb
erikj@458 554 else
erikj@458 555 $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).debuginfo
erikj@458 556 endif
erikj@458 557 endif
erikj@458 558 endif
erikj@458 559 endif
erikj@458 560
erikj@458 561 $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_GEN_MANIFEST)
erikj@458 562 $$(call LINKING_EXE_MSG,$$($1_BASENAME))
erikj@458 563 $$($1_LDEXE) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(EXE_OUT_OPTION)$$($1_TARGET) \
erikj@445 564 $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_LDFLAGS_SUFFIX) \
erikj@445 565 $$($1_EXTRA_LDFLAGS_SUFFIX)
erikj@445 566 ifneq (,$$($1_GEN_MANIFEST))
erikj@445 567 $(MT) -nologo /manifest $$($1_GEN_MANIFEST) /outputresource:$$@;#1
erikj@445 568 endif
erikj@458 569
ohair@425 570 endif
ohair@425 571 endef

mercurial