common/makefiles/NativeCompilation.gmk

Tue, 03 Jul 2012 16:11:12 -0700

author
erikj
date
Tue, 03 Jul 2012 16:11:12 -0700
changeset 458
c8d320b48626
parent 445
efd26e051e50
child 459
3156dff953b1
permissions
-rw-r--r--

7181504: Update of latest build-infra Makefiles
Reviewed-by: ohair

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