common/makefiles/NativeCompilation.gmk

Fri, 26 Oct 2012 14:29:57 -0700

author
ohair
date
Fri, 26 Oct 2012 14:29:57 -0700
changeset 494
e64f2cb57d05
parent 478
2ba6f4da4bf3
child 533
e175ecff1391
permissions
-rw-r--r--

8000992: Update new build-infra makefiles
Summary: Build-infra project integration. Multiple authors on this work: erikj and ihse primarily, also changes from ohair, tbell, and dholmes. Special credit to ohstrom for his smartjavac work.
Reviewed-by: erikj, ihse, dholmes, 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@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@494 132 $(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))
ohair@494 133 $(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))
ohair@478 134 $(if $(26),$(error Internal makefile error: Too many arguments to SetupNativeCompilation, please update NativeCompilation.gmk))
erikj@458 135
erikj@458 136 ifneq (,$$($1_BIN))
erikj@458 137 $$(error BIN has been replaced with OBJECT_DIR)
erikj@458 138 endif
erikj@458 139
erikj@458 140 ifneq (,$$($1_LIB))
erikj@458 141 $$(error LIB has been replaced with LIBRARY)
erikj@458 142 endif
erikj@458 143
erikj@458 144 ifneq (,$$($1_EXE))
erikj@458 145 $$(error EXE has been replaced with PROGRAM)
erikj@458 146 endif
erikj@458 147
erikj@458 148 ifneq (,$$($1_LIBRARY))
erikj@458 149 ifeq (,$$($1_OUTPUT_DIR))
erikj@458 150 $$(error LIBRARY requires OUTPUT_DIR)
erikj@458 151 endif
erikj@458 152
erikj@458 153 ifneq ($$($1_LIBRARY),$(basename $$($1_LIBRARY)))
erikj@458 154 $$(error directory of LIBRARY should be specified using OUTPUT_DIR)
erikj@458 155 endif
erikj@458 156
erikj@458 157 ifneq (,$(findstring $(SHARED_LIBRARY_SUFFIX),$$($1_LIBRARY)))
erikj@458 158 $$(error LIBRARY should be specified without SHARED_LIBRARY_SUFFIX: $(SHARED_LIBRARY_SUFFIX))
erikj@458 159 endif
erikj@458 160
erikj@458 161 ifneq (,$(findstring $(LIBRARY_PREFIX),$$($1_LIBRARY)))
erikj@458 162 $$(error LIBRARY should be specified without LIBRARY_PREFIX: $(LIBRARY_PREFIX))
erikj@458 163 endif
erikj@458 164
erikj@458 165 $1_BASENAME:=$(LIBRARY_PREFIX)$$($1_LIBRARY)$(SHARED_LIBRARY_SUFFIX)
erikj@458 166 $1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME)
erikj@458 167
erikj@458 168 endif
erikj@458 169
erikj@458 170 ifneq (,$$($1_STATIC_LIBRARY))
erikj@458 171 ifeq (,$$($1_OUTPUT_DIR))
erikj@458 172 $$(error STATIC_LIBRARY requires OUTPUT_DIR)
erikj@458 173 endif
erikj@458 174
erikj@458 175 ifneq ($$($1_STATIC_LIBRARY),$(basename $$($1_STATIC_LIBRARY)))
erikj@458 176 $$(error directory of STATIC_LIBRARY should be specified using OUTPUT_DIR)
erikj@458 177 endif
erikj@458 178
erikj@458 179 ifneq (,$(findstring $(STATIC_LIBRARY_SUFFIX),$$($1_STATIC_LIBRARY)))
erikj@458 180 $$(error STATIC_LIBRARY should be specified without STATIC_LIBRARY_SUFFIX: $(STATIC_LIBRARY_SUFFIX))
erikj@458 181 endif
erikj@458 182
erikj@458 183 ifneq (,$(findstring $(LIBRARY_PREFIX),$$($1_STATIC_LIBRARY)))
erikj@458 184 $$(error STATIC_LIBRARY should be specified without LIBRARY_PREFIX: $(LIBRARY_PREFIX))
erikj@458 185 endif
erikj@458 186
erikj@458 187 $1_BASENAME:=$(LIBRARY_PREFIX)$$($1_STATIC_LIBRARY)$(STATIC_LIBRARY_SUFFIX)
erikj@458 188 $1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME)
erikj@458 189 endif
erikj@458 190
erikj@458 191 ifneq (,$$($1_PROGRAM))
erikj@458 192 ifeq (,$$($1_OUTPUT_DIR))
erikj@458 193 $$(error PROGRAM requires OUTPUT_DIR)
erikj@458 194 endif
erikj@458 195
erikj@458 196 ifneq ($$($1_PROGRAM),$(basename $$($1_PROGRAM)))
erikj@458 197 $$(error directory of PROGRAM should be specified using OUTPUT_DIR)
erikj@458 198 endif
erikj@458 199
erikj@458 200 ifneq (,$(findstring $(EXE_SUFFIX),$$($1_PROGRAM)))
erikj@458 201 $$(error PROGRAM should be specified without EXE_SUFFIX: $(EXE_SUFFIX))
erikj@458 202 endif
erikj@458 203
erikj@458 204 $1_BASENAME:=$$($1_PROGRAM)$(EXE_SUFFIX)
erikj@458 205 $1_TARGET:=$$($1_OUTPUT_DIR)/$$($1_BASENAME)
erikj@458 206
erikj@458 207 endif
erikj@458 208
erikj@458 209 ifeq (,$$($1_TARGET))
erikj@458 210 $$(error Neither PROGRAM, LIBRARY nor STATIC_LIBRARY has been specified for SetupNativeCompilation)
erikj@458 211 endif
ohair@425 212
ohair@425 213 ifeq (,$$($1_LANG))
ohair@425 214 $$(error You have to specify LANG for native compilation $1)
ohair@425 215 endif
ohair@425 216 ifeq (C,$$($1_LANG))
ohair@494 217 ifeq ($$($1_LDEXE),)
erikj@458 218 $1_LDEXE:=$(LDEXE)
ohair@494 219 endif
ohair@425 220 $1_LD:=$(LD)
ohair@425 221 else
ohair@425 222 ifeq (C++,$$($1_LANG))
ohair@425 223 $1_LD:=$(LDCXX)
ohair@425 224 $1_LDEXE:=$(LDEXECXX)
ohair@425 225 else
ohair@425 226 $$(error Unknown native language $$($1_LANG) for $1)
ohair@425 227 endif
ohair@425 228 endif
ohair@425 229
erikj@458 230 ifeq ($$($1_CC),)
erikj@458 231 $1_CC:=$(CC)
erikj@458 232 endif
erikj@458 233
ohair@425 234 # Make sure the dirs exist.
ohair@494 235 $$(eval $$(call MakeDir,$$($1_OBJECT_DIR) $$($1_OUTPUT_DIR)))
ohair@494 236 $$(foreach d,$$($1_SRC), $$(if $$(wildcard $$d),,$$(error SRC specified to SetupNativeCompilation $1 contains missing directory $$d)))
ohair@494 237
ohair@425 238 # Find all files in the source trees. Sort to remove duplicates.
ohair@494 239 $1_ALL_SRCS := $$(sort $$(shell $(FIND) $$($1_SRC) -type f))
ohair@425 240 # Extract the C/C++ files.
ohair@425 241 $1_EXCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_EXCLUDE_FILES)))
ohair@425 242 $1_INCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_INCLUDE_FILES)))
ohair@425 243 ifneq ($$($1_EXCLUDE_FILES),)
ohair@425 244 $1_EXCLUDE_FILES:=$$(addprefix %,$$($1_EXCLUDE_FILES))
ohair@425 245 endif
erikj@458 246 $1_SRCS := $$(filter-out $$($1_EXCLUDE_FILES),$$(filter %.s %.c %.cpp %.m,$$($1_ALL_SRCS)))
ohair@425 247 ifneq (,$$(strip $$($1_INCLUDE_FILES)))
ohair@425 248 $1_SRCS := $$(filter $$($1_INCLUDE_FILES),$$($1_SRCS))
ohair@425 249 endif
ohair@425 250 ifeq (,$$($1_SRCS))
ohair@425 251 $$(error No sources found for $1 when looking inside the dirs $$($1_SRC))
ohair@425 252 endif
ohair@425 253 # There can be only a single bin dir root, no need to foreach over the roots.
erikj@458 254 $1_BINS := $$(wildcard $$($1_OBJECT_DIR)/*$(OBJ_SUFFIX))
ohair@425 255 # Now we have a list of all c/c++ files to compile: $$($1_SRCS)
ohair@425 256 # and we have a list of all existing object files: $$($1_BINS)
ohair@425 257
ohair@425 258 # Prepend the source/bin path to the filter expressions. Then do the filtering.
ohair@425 259 ifneq ($$($1_INCLUDES),)
ohair@425 260 $1_SRC_INCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_INCLUDES))))
ohair@425 261 $1_SRCS := $$(filter $$($1_SRC_INCLUDES),$$($1_SRCS))
ohair@425 262 endif
ohair@425 263 ifneq ($$($1_EXCLUDES),)
ohair@425 264 $1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES))))
ohair@425 265 $1_SRCS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_SRCS))
ohair@425 266 endif
ohair@425 267
ohair@425 268 # Calculate the expected output from compiling the sources (sort to remove duplicates. Also provides
ohair@425 269 # a reproducable order on the input files to the linker).
erikj@458 270 $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 271 # Are there too many object files on disk? Perhaps because some source file was removed?
ohair@425 272 $1_SUPERFLOUS_OBJS:=$$(sort $$(filter-out $$($1_EXPECTED_OBJS),$$($1_BINS)))
ohair@425 273 # Clean out the superfluous object files.
ohair@494 274 ifneq ($$($1_SUPERFLUOUS_OBJS),)
ohair@494 275 $$(shell $(RM) -f $$($1_SUPERFLUOUS_OBJS))
ohair@494 276 endif
ohair@425 277
erikj@458 278 # Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables for CFLAGS.
erikj@458 279 $1_EXTRA_CFLAGS:=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_CFLAGS_$(OPENJDK_TARGET_OS))
ohair@425 280 ifneq ($(DEBUG_LEVEL),release)
ohair@425 281 # Pickup extra debug dependent variables for CFLAGS
ohair@425 282 $1_EXTRA_CFLAGS+=$$($1_CFLAGS_debug)
erikj@458 283 $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)_debug)
erikj@458 284 $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS)_debug)
ohair@425 285 else
ohair@425 286 $1_EXTRA_CFLAGS+=$$($1_CFLAGS_release)
erikj@458 287 $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS_API)_release)
erikj@458 288 $1_EXTRA_CFLAGS+=$$($1_CFLAGS_$(OPENJDK_TARGET_OS)_release)
ohair@425 289 endif
ohair@425 290
erikj@458 291 # Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables for CXXFLAGS.
erikj@458 292 $1_EXTRA_CXXFLAGS:=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_CXXFLAGS_$(OPENJDK_TARGET_OS))
ohair@425 293 ifneq ($(DEBUG_LEVEL),release)
ohair@425 294 # Pickup extra debug dependent variables for CXXFLAGS
ohair@425 295 $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_debug)
erikj@458 296 $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)_debug)
erikj@458 297 $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS)_debug)
ohair@425 298 else
ohair@425 299 $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_release)
erikj@458 300 $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS_API)_release)
erikj@458 301 $1_EXTRA_CXXFLAGS+=$$($1_CXXFLAGS_$(OPENJDK_TARGET_OS)_release)
ohair@425 302 endif
ohair@425 303
ohair@478 304 ifneq (,$$($1_DEBUG_SYMBOLS))
ohair@478 305 ifeq ($(ENABLE_DEBUG_SYMBOLS), yes)
ohair@478 306 # Programs don't get the debug symbols added in the old build. It's not clear if
ohair@478 307 # this is intentional.
ohair@478 308 ifeq ($$($1_PROGRAM),)
ohair@478 309 $1_EXTRA_CFLAGS+=$(CFLAGS_DEBUG_SYMBOLS)
ohair@478 310 $1_EXTRA_CXXFLAGS+=$(CXXFLAGS_DEBUG_SYMBOLS)
ohair@478 311 endif
ohair@478 312 endif
ohair@478 313 endif
ohair@478 314
ohair@425 315 ifeq ($$($1_CXXFLAGS),)
ohair@425 316 $1_CXXFLAGS:=$$($1_CFLAGS)
ohair@425 317 endif
ohair@425 318 ifeq ($$(strip $$($1_EXTRA_CXXFLAGS)),)
ohair@425 319 $1_EXTRA_CXXFLAGS:=$$($1_EXTRA_CFLAGS)
ohair@425 320 endif
ohair@425 321
erikj@445 322 ifneq (,$$($1_REORDER))
erikj@445 323 $1_EXTRA_CFLAGS += $$(C_FLAG_REORDER)
erikj@445 324 $1_EXTRA_CXXFLAGS += $$(CXX_FLAG_REORDER)
erikj@445 325 endif
erikj@445 326
erikj@458 327 ifeq (NONE, $$($1_OPTIMIZATION))
ohair@478 328 $1_EXTRA_CFLAGS += $(C_O_FLAG_NONE)
ohair@478 329 $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_NONE)
erikj@458 330 else ifeq (LOW, $$($1_OPTIMIZATION))
ohair@478 331 $1_EXTRA_CFLAGS += $(C_O_FLAG_NORM)
ohair@478 332 $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_NORM)
erikj@458 333 else ifeq (HIGH, $$($1_OPTIMIZATION))
ohair@478 334 $1_EXTRA_CFLAGS += $(C_O_FLAG_HI)
ohair@478 335 $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_HI)
erikj@458 336 else ifeq (HIGHEST, $$($1_OPTIMIZATION))
ohair@478 337 $1_EXTRA_CFLAGS += $(C_O_FLAG_HIGHEST)
ohair@478 338 $1_EXTRA_CXXFLAGS += $(CXX_O_FLAG_HIGHEST)
erikj@458 339 else ifneq (, $$($1_OPTIMIZATION))
ohair@478 340 $$(error Unknown value for OPTIMIZATION: $$($1_OPTIMIZATION))
erikj@458 341 endif
erikj@458 342
ohair@425 343 # Now call add_native_source for each source file we are going to compile.
ohair@425 344 $$(foreach p,$$($1_SRCS),\
erikj@458 345 $$(eval $$(call add_native_source,$1,$$p,$$($1_OBJECT_DIR),\
erikj@458 346 $$($1_CFLAGS) $$($1_EXTRA_CFLAGS),$$($1_CC),\
erikj@458 347 $$($1_CXXFLAGS) $$($1_EXTRA_CXXFLAGS),$(CXX),$$($1_ASFLAGS))))
ohair@425 348
ohair@425 349 # On windows we need to create a resource file
ohair@478 350 ifeq ($(OPENJDK_TARGET_OS), windows)
ohair@425 351 ifneq (,$$($1_VERSIONINFO_RESOURCE))
erikj@458 352 $1_RES:=$$($1_OBJECT_DIR)/$$($1_BASENAME).res
ohair@425 353 $$($1_RES): $$($1_VERSIONINFO_RESOURCE)
ohair@425 354 $(RC) $$($1_RC_FLAGS) $(CC_OUT_OPTION)$$@ $$($1_VERSIONINFO_RESOURCE)
ohair@425 355 endif
erikj@445 356 ifneq (,$$($1_MANIFEST))
erikj@458 357 $1_GEN_MANIFEST:=$$($1_OBJECT_DIR)/$$($1_PROGRAM).manifest
erikj@445 358 IMVERSIONVALUE:=$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION).$(JDK_UPDATE_VERSION).$(COOKED_BUILD_NUMBER)
erikj@445 359 $$($1_GEN_MANIFEST): $$($1_MANIFEST)
erikj@445 360 $(SED) 's%IMVERSION%$$(IMVERSIONVALUE)%g;s%PROGRAM%$$($1_PROGRAM)%g' $$< > $$@
erikj@445 361 endif
erikj@445 362 endif
erikj@445 363
erikj@445 364 # mapfile doesnt seem to be implemented on macosx (yet??)
erikj@458 365 ifneq ($(OPENJDK_TARGET_OS),macosx)
erikj@458 366 ifneq ($(OPENJDK_TARGET_OS),windows)
erikj@458 367 $1_REAL_MAPFILE:=$$($1_MAPFILE)
erikj@445 368 ifneq (,$$($1_REORDER))
erikj@458 369 $1_REAL_MAPFILE:=$$($1_OBJECT_DIR)/mapfile
erikj@445 370
erikj@445 371 $$($1_REAL_MAPFILE) : $$($1_MAPFILE) $$($1_REORDER)
erikj@445 372 $$(MKDIR) -p $$(@D)
erikj@445 373 $$(CP) $$($1_MAPFILE) $$@.tmp
erikj@458 374 $$(SED) -e 's=OUTPUTDIR=$$($1_OBJECT_DIR)=' $$($1_REORDER) >> $$@.tmp
erikj@445 375 $$(MV) $$@.tmp $$@
erikj@445 376 endif
erikj@445 377 endif
ohair@425 378 endif
erikj@445 379
ohair@478 380 # Pickup extra OPENJDK_TARGET_OS_API and/or OPENJDK_TARGET_OS dependent variables
ohair@478 381 # for LDFLAGS and LDFLAGS_SUFFIX
erikj@458 382 $1_EXTRA_LDFLAGS:=$$($1_LDFLAGS_$(OPENJDK_TARGET_OS_API)) $$($1_LDFLAGS_$(OPENJDK_TARGET_OS))
erikj@458 383 $1_EXTRA_LDFLAGS_SUFFIX:=$$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS_API)) $$($1_LDFLAGS_SUFFIX_$(OPENJDK_TARGET_OS))
erikj@458 384 ifneq (,$$($1_REAL_MAPFILE))
erikj@458 385 $1_EXTRA_LDFLAGS += $(call SET_SHARED_LIBRARY_MAPFILE,$$($1_REAL_MAPFILE))
erikj@458 386 endif
erikj@458 387
erikj@458 388 $1 := $$($1_TARGET)
erikj@458 389 ifneq (,$$($1_LIBRARY))
erikj@458 390 # Generating a dynamic library.
erikj@458 391 $1_EXTRA_LDFLAGS+=$$(call SET_SHARED_LIBRARY_NAME,$$($1_BASENAME))
erikj@458 392 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 393 $1_EXTRA_LDFLAGS+="-implib:$$($1_OBJECT_DIR)/$$($1_LIBRARY).lib"
erikj@458 394 endif
erikj@458 395
erikj@458 396 ifneq (,$$($1_DEBUG_SYMBOLS))
erikj@458 397 ifeq ($(ENABLE_DEBUG_SYMBOLS), yes)
erikj@458 398 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 399 $1_EXTRA_LDFLAGS+="-pdb:$$($1_OBJECT_DIR)/$$($1_LIBRARY).pdb" \
erikj@458 400 "-map:$$($1_OBJECT_DIR)/$$($1_LIBRARY).map"
erikj@458 401 endif
erikj@458 402
ohair@478 403 ifneq ($$($1_OUTPUT_DIR),$$($1_OBJECT_DIR))
ohair@478 404 $$($1_OUTPUT_DIR)/% : $$($1_OBJECT_DIR)/%
erikj@458 405 $(CP) $$< $$@
ohair@478 406 endif
erikj@458 407
erikj@458 408 ifeq ($(OPENJDK_TARGET_OS), solaris)
erikj@458 409 # gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set.
erikj@458 410 # Use $(FIX_EMPTY_SEC_HDR_FLAGS) to clear the SHF_ALLOC flag (if set) from
erikj@458 411 # empty section headers until a fixed $(OBJCOPY) is available.
erikj@458 412 # An empty section header has sh_addr == 0 and sh_size == 0.
erikj@458 413 # This problem has only been seen on Solaris X64, but we call this tool
erikj@458 414 # on all Solaris builds just in case.
erikj@458 415 #
erikj@458 416 # $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections.
erikj@458 417 # Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available.
erikj@458 418 $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo : $$($1_TARGET) \
erikj@458 419 $(FIX_EMPTY_SEC_HDR_FLAGS) $(ADD_GNU_DEBUGLINK)
erikj@458 420 $(RM) $$@
ohair@494 421 $(FIX_EMPTY_SEC_HDR_FLAGS) $(LOG_INFO) $$<
erikj@458 422 $(OBJCOPY) --only-keep-debug $$< $$@
ohair@494 423 $(CD) $$(@D) && $(ADD_GNU_DEBUGLINK) $(LOG_INFO) $$(@F) $$<
erikj@458 424 else # not solaris
erikj@458 425 $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo : $$($1_TARGET)
erikj@458 426 $(RM) $$@
erikj@458 427 $(OBJCOPY) --only-keep-debug $$< $$@
erikj@459 428 $(CD) $$(@D) && $(OBJCOPY) --add-gnu-debuglink=$$(@F) $$<
erikj@459 429 endif # Touch to not retrigger rule on rebuild
erikj@459 430 $(TOUCH) $$@
erikj@458 431
erikj@458 432 ifeq ($(ZIP_DEBUGINFO_FILES), 1)
erikj@458 433 $1 += $$($1_OUTPUT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz
erikj@458 434
erikj@458 435 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 436 $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz : $$($1_TARGET)
erikj@458 437 $(CD) $$($1_OBJECT_DIR) \
erikj@458 438 && $(ZIP) -q $$@ $$($1_LIBRARY).map $$($1_LIBRARY).pdb
erikj@458 439 else
erikj@458 440 $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).diz : $$($1_TARGET) \
erikj@458 441 $$($1_OBJECT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo
erikj@458 442 $(CD) $$($1_OBJECT_DIR) \
erikj@458 443 && $(ZIP) -q $$@ $$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo
erikj@458 444 endif
erikj@458 445 else
erikj@458 446 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 447 $1 += $$($1_OUTPUT_DIR)/$$($1_LIBRARY).map \
erikj@458 448 $$($1_OUTPUT_DIR)/$$($1_LIBRARY).pdb
erikj@458 449 else
erikj@458 450 $1 += $$($1_OUTPUT_DIR)/$$(LIBRARY_PREFIX)$$($1_LIBRARY).debuginfo
erikj@458 451 endif
erikj@458 452 endif
erikj@458 453 endif
erikj@458 454 endif
erikj@458 455
erikj@458 456 $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_REAL_MAPFILE)
erikj@458 457 $$(call LINKING_MSG,$$($1_BASENAME))
erikj@458 458 $$($1_LD) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(LD_OUT_OPTION)$$@ \
erikj@458 459 $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_LDFLAGS_SUFFIX) \
erikj@458 460 $$($1_EXTRA_LDFLAGS_SUFFIX)
erikj@458 461
erikj@458 462 endif
erikj@458 463
erikj@458 464 ifneq (,$$($1_STATIC_LIBRARY))
erikj@458 465 # Generating a static library, ie object file archive.
erikj@458 466 $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES)
erikj@458 467 $$(call ARCHIVING_MSG,$$($1_LIBRARY))
erikj@458 468 $(AR) $$($1_AR_FLAGS) $(AR_OUT_OPTION)$$($1_TARGET) $$($1_EXPECTED_OBJS) \
ohair@425 469 $$($1_RES) $$($1_LDFLAGS_SUFFIX) $$($1_EXTRA_LDFLAGS_SUFFIX)
ohair@425 470 endif
erikj@458 471
erikj@458 472 ifneq (,$$($1_PROGRAM))
ohair@425 473 # A executable binary has been specified, setup the target for it.
erikj@458 474 ifneq (,$$($1_DEBUG_SYMBOLS))
erikj@458 475 ifeq ($(ENABLE_DEBUG_SYMBOLS), yes)
erikj@458 476 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 477 $1_EXTRA_LDFLAGS+="-pdb:$$($1_OBJECT_DIR)/$$($1_PROGRAM).pdb" \
erikj@458 478 "-map:$$($1_OBJECT_DIR)/$$($1_PROGRAM).map"
erikj@458 479 endif
erikj@458 480
ohair@478 481 ifneq ($$($1_OUTPUT_DIR),$$($1_OBJECT_DIR))
ohair@478 482 $$($1_OUTPUT_DIR)/% : $$($1_OBJECT_DIR)/%
erikj@458 483 $(CP) $$< $$@
ohair@478 484 endif
erikj@458 485
erikj@458 486 ifeq ($(OPENJDK_TARGET_OS), solaris)
erikj@458 487 # gobjcopy crashes on "empty" section headers with the SHF_ALLOC flag set.
erikj@458 488 # Use $(FIX_EMPTY_SEC_HDR_FLAGS) to clear the SHF_ALLOC flag (if set) from
erikj@458 489 # empty section headers until a fixed $(OBJCOPY) is available.
erikj@458 490 # An empty section header has sh_addr == 0 and sh_size == 0.
erikj@458 491 # This problem has only been seen on Solaris X64, but we call this tool
erikj@458 492 # on all Solaris builds just in case.
erikj@458 493 #
erikj@458 494 # $(OBJCOPY) --add-gnu-debuglink=... corrupts SUNW_* sections.
erikj@458 495 # Use $(ADD_GNU_DEBUGLINK) until a fixed $(OBJCOPY) is available.
erikj@458 496 $$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo : $$($1_TARGET) \
erikj@458 497 $(FIX_EMPTY_SEC_HDR_FLAGS) $(ADD_GNU_DEBUGLINK)
erikj@458 498 $(RM) $$@
ohair@494 499 $(FIX_EMPTY_SEC_HDR_FLAGS) $(LOG_INFO) $$<
erikj@458 500 $(OBJCOPY) --only-keep-debug $$< $$@
ohair@494 501 $(CD) $$(@D) && $(ADD_GNU_DEBUGLINK) $(LOG_INFO) $$(@F) $$<
erikj@458 502 else # not solaris
erikj@458 503 $$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo : $$($1_TARGET)
erikj@458 504 $(RM) $$@
erikj@458 505 $(OBJCOPY) --only-keep-debug $$< $$@
erikj@459 506 $(CD) $$(@D) && $(OBJCOPY) --add-gnu-debuglink=$$(@F) $$<
erikj@458 507 endif
erikj@459 508 $(TOUCH) $$@
erikj@458 509
erikj@458 510 ifeq ($(ZIP_DEBUGINFO_FILES), 1)
erikj@458 511 $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).diz
erikj@458 512
erikj@458 513 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 514 $$($1_OBJECT_DIR)/$$($1_PROGRAM).diz : $$($1_TARGET)
erikj@458 515 $(CD) $$($1_OBJECT_DIR) \
erikj@458 516 && $(ZIP) -q $$@ $$($1_PROGRAM).map $$($1_PROGRAM).pdb
erikj@458 517 else
erikj@458 518 $$($1_OBJECT_DIR)/$$(PROGRAM_PREFIX)$$($1_PROGRAM).diz : $$($1_TARGET) \
erikj@458 519 $$($1_OBJECT_DIR)/$$($1_PROGRAM).debuginfo
erikj@458 520 $(CD) $$($1_OBJECT_DIR) \
erikj@458 521 && $(ZIP) -q $$@ $$($1_PROGRAM).debuginfo
erikj@458 522 endif
erikj@458 523 else
erikj@458 524 ifeq ($(OPENJDK_TARGET_OS), windows)
erikj@458 525 $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).map \
erikj@458 526 $$($1_OUTPUT_DIR)/$$($1_PROGRAM).pdb
erikj@458 527 else
erikj@458 528 $1 += $$($1_OUTPUT_DIR)/$$($1_PROGRAM).debuginfo
erikj@458 529 endif
erikj@458 530 endif
erikj@458 531 endif
erikj@458 532 endif
erikj@458 533
erikj@458 534 $$($1_TARGET) : $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_GEN_MANIFEST)
erikj@458 535 $$(call LINKING_EXE_MSG,$$($1_BASENAME))
erikj@458 536 $$($1_LDEXE) $$($1_LDFLAGS) $$($1_EXTRA_LDFLAGS) $(EXE_OUT_OPTION)$$($1_TARGET) \
erikj@445 537 $$($1_EXPECTED_OBJS) $$($1_RES) $$($1_LDFLAGS_SUFFIX) \
erikj@445 538 $$($1_EXTRA_LDFLAGS_SUFFIX)
erikj@445 539 ifneq (,$$($1_GEN_MANIFEST))
ohair@494 540 $(MT) -nologo -manifest $$($1_GEN_MANIFEST) -outputresource:$$@;#1
erikj@445 541 endif
erikj@458 542
ohair@425 543 endif
ohair@425 544 endef

mercurial