common/autoconf/spec.gmk.in

Tue, 10 Apr 2012 08:18:28 -0700

author
ohair
date
Tue, 10 Apr 2012 08:18:28 -0700
changeset 425
e1830598f0b7
child 445
efd26e051e50
permissions
-rw-r--r--

7074397: Build infrastructure changes (makefile re-write)
Summary: New makefiles transition, old and new living side by side for now.
Reviewed-by: ohair, jjg, dholmes, ohrstrom, erikj, ihse, tgranat, ykantser
Contributed-by: ohrstrom <fredrik.ohrstrom@oracle.com>, erikj <erik.joelsson@oracle.com>, ihse <magnus.ihse.bursie@oracle.com>, tgranat <torbjorn.granat@oracle.com>, ykantser <yekaterina.kantserova@oracle.com>

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 # Configured @DATE_WHEN_CONFIGURED@ to build for a @HOST@ system,
ohair@425 27 # using ./configure @CONFIGURE_COMMAND_LINE@
ohair@425 28
ohair@425 29 # When calling macros, the spaces between arguments are
ohair@425 30 # often semantically important! Sometimes we need to subst
ohair@425 31 # spaces and commas, therefore we need the following macros.
ohair@425 32 X:=
ohair@425 33 SPACE:=$(X) $(X)
ohair@425 34 COMMA:=,
ohair@425 35 HASH:=\#
ohair@425 36 SQUOTE:='
ohair@425 37 #'
ohair@425 38 DQUOTE:="
ohair@425 39 #"
ohair@425 40 define NEWLINE:=
ohair@425 41 endef
ohair@425 42
ohair@425 43
ohair@425 44 # Pass along the verbosity setting.
ohair@425 45 ifeq (,$(findstring VERBOSE=,$(MAKE)))
ohair@425 46 MAKE:=$(MAKE) $(VERBOSE) VERBOSE="$(VERBOSE)"
ohair@425 47 endif
ohair@425 48
ohair@425 49 # No implicit variables or rules!
ohair@425 50 ifeq (,$(findstring -R,$(MAKE)))
ohair@425 51 MAKE:=$(MAKE) -R
ohair@425 52 endif
ohair@425 53
ohair@425 54 # Specify where the spec file is.
ohair@425 55 ifeq (,$(findstring SPEC=,$(MAKE)))
ohair@425 56 MAKE:=$(MAKE) SPEC=@SPEC@
ohair@425 57 endif
ohair@425 58
ohair@425 59 # Specify where the common include directory for makefiles is.
ohair@425 60 ifeq (,$(findstring -I @SRC_ROOT@/common/makefiles,$(MAKE)))
ohair@425 61 MAKE:=$(MAKE) -I @SRC_ROOT@/common/makefiles
ohair@425 62 endif
ohair@425 63
ohair@425 64 # A self-referential reference to this file.
ohair@425 65 SPEC:=@SPEC@
ohair@425 66
ohair@425 67 # The built jdk will run in this host system.
ohair@425 68 HOST:=@HOST@
ohair@425 69 HOST_OS:=@HOST_OS@
ohair@425 70 HOST_OS_FAMILY:=@HOST_OS_FAMILY@
ohair@425 71 HOST_OS_API:=@HOST_OS_API@
ohair@425 72
ohair@425 73 HOST_CPU:=@HOST_CPU@
ohair@425 74 HOST_CPU_ARCH:=@HOST_CPU_ARCH@
ohair@425 75 HOST_CPU_BITS:=@HOST_CPU_BITS@
ohair@425 76 HOST_CPU_ENDIAN:=@HOST_CPU_ENDIAN@
ohair@425 77
ohair@425 78 # We are building on this build system.
ohair@425 79 # When not cross-compiling, it is the same as the host.
ohair@425 80 BUILD:=@BUILD@
ohair@425 81 BUILD_OS:=@BUILD_OS@
ohair@425 82 BUILD_OS_FAMILY:=@BUILD_OS_FAMILY@
ohair@425 83 BUILD_OS_API:=@BUILD_OS_API@
ohair@425 84
ohair@425 85 BUILD_CPU:=@BUILD_CPU@
ohair@425 86 BUILD_CPU_ARCH:=@BUILD_CPU_ARCH@
ohair@425 87 BUILD_CPU_BITS:=@BUILD_CPU_BITS@
ohair@425 88 BUILD_CPU_ENDIAN:=@BUILD_CPU_ENDIAN@
ohair@425 89
ohair@425 90 # Old name for HOST_OS (aix,bsd,hpux,linux,macosx,solaris,windows etc)
ohair@425 91 PLATFORM:=@HOST_OS@
ohair@425 92 # Old name for HOST_CPU, uses i586 and amd64, instead of ia32 and x64.
ohair@425 93 ARCH:=@LEGACY_HOST_CPU1@
ohair@425 94 # Yet another name for arch used for an extra subdir below the jvm lib.
ohair@425 95 # Uses i386 and amd64, instead of ia32 and x64.
ohair@425 96 LIBARCH:=@LEGACY_HOST_CPU2@
ohair@425 97 # Use to switch between solaris and windows subdirs in the jdk.
ohair@425 98 LEGACY_HOST_OS_API:=@LEGACY_HOST_OS_API@
ohair@425 99 # 32 or 64 bit
ohair@425 100 ARCH_DATA_MODEL:=@HOST_CPU_BITS@
ohair@425 101 # Legacy setting for building for a 64 bit machine.
ohair@425 102 # If yes then this expands to _LP64:=1
ohair@425 103 @LP64@
ohair@425 104 ENDIAN:=@HOST_CPU_ENDIAN@
ohair@425 105 @SET_OPENJDK@
ohair@425 106 JIGSAW:=@JIGSAW@
ohair@425 107 LIBM:=-lm
ohair@425 108
ohair@425 109 # colon or semicolon
ohair@425 110 PATH_SEP:=@PATH_SEP@
ohair@425 111
ohair@425 112 # Set special env variables, to be passed to external tools.
ohair@425 113 # Used for cygwin setups.
ohair@425 114 @SETUPDEVENV@
ohair@425 115
ohair@425 116 # The sys root where standard headers and libraries are found.
ohair@425 117 # Usually not needed since the configure script should have
ohair@425 118 # taken it into account already when setting CFLAGS et al.
ohair@425 119 SYS_ROOT:=@SYS_ROOT@
ohair@425 120
ohair@425 121 # Paths to the source code
ohair@425 122 SRC_ROOT:=@SRC_ROOT@
ohair@425 123 ADD_SRC_ROOT:=@ADD_SRC_ROOT@
ohair@425 124 OVERRIDE_SRC_ROOT:=@OVERRIDE_SRC_ROOT@
ohair@425 125 TOPDIR:=@SRC_ROOT@
ohair@425 126 OUTPUT_ROOT:=@OUTPUT_ROOT@
ohair@425 127 JDK_MAKE_SHARED_DIR:=@JDK_TOPDIR@/makefiles/common/shared
ohair@425 128 JDK_TOPDIR:=@JDK_TOPDIR@
ohair@425 129 LANGTOOLS_TOPDIR:=@LANGTOOLS_TOPDIR@
ohair@425 130 CORBA_TOPDIR:=@CORBA_TOPDIR@
ohair@425 131 JAXP_TOPDIR:=@JAXP_TOPDIR@
ohair@425 132 JAXWS_TOPDIR:=@JAXWS_TOPDIR@
ohair@425 133 HOTSPOT_TOPDIR:=@HOTSPOT_TOPDIR@
ohair@425 134 COPYRIGHT_YEAR:=@COPYRIGHT_YEAR@
ohair@425 135
ohair@425 136 # Information gathered from the version.numbers file.
ohair@425 137 JDK_MAJOR_VERSION:=@JDK_MAJOR_VERSION@
ohair@425 138 JDK_MINOR_VERSION:=@JDK_MINOR_VERSION@
ohair@425 139 JDK_MICRO_VERSION:=@JDK_MICRO_VERSION@
ohair@425 140 JDK_UPDATE_VERSION:=@JDK_UPDATE_VERSION@
ohair@425 141 JDK_BUILD_NUMBER:=@JDK_BUILD_NUMBER@
ohair@425 142 MILESTONE:=@MILESTONE@
ohair@425 143 LAUNCHER_NAME:=@LAUNCHER_NAME@
ohair@425 144 PRODUCT_NAME:=@PRODUCT_NAME@
ohair@425 145 PRODUCT_SUFFIX:=@PRODUCT_SUFFIX@
ohair@425 146 JDK_RC_PLATFORM_NAME:=@JDK_RC_PLATFORM_NAME@
ohair@425 147 COMPANY_NAME:=@COMPANY_NAME@
ohair@425 148
ohair@425 149 # Different version strings generated from the above information.
ohair@425 150 JDK_VERSION:=@JDK_VERSION@
ohair@425 151 RUNTIME_NAME:=@RUNTIME_NAME@
ohair@425 152 FULL_VERSION:=@FULL_VERSION@
ohair@425 153 JRE_RELEASE_VERSION:=@FULL_VERSION@
ohair@425 154 RELEASE:=@RELEASE@
ohair@425 155 COOKED_BUILD_NUMBER:=@COOKED_BUILD_NUMBER@
ohair@425 156
ohair@425 157 # How to compile the code: release, fastdebug or slowdebug
ohair@425 158 DEBUG_LEVEL:=@DEBUG_LEVEL@
ohair@425 159
ohair@425 160 # This is the JDK variant to build.
ohair@425 161 # The JDK variant is a name for a specific set of modules to be compiled for the JDK.
ohair@425 162 JDK_VARIANT:=@JDK_VARIANT@
ohair@425 163
ohair@425 164 # Legacy defines controlling the JDK variant embedded.
ohair@425 165 @JAVASE_EMBEDDED@
ohair@425 166 @MINIMIZE_RAM_USAGE@
ohair@425 167
ohair@425 168 # Should we compile support for running with a graphical UI? (ie headful)
ohair@425 169 # Should we compile support for running without? (ie headless)
ohair@425 170 SUPPORT_HEADFUL:=@SUPPORT_HEADFUL@
ohair@425 171 SUPPORT_HEADLESS:=@SUPPORT_HEADLESS@
ohair@425 172 # Legacy defines controlled by the SUPPORT_HEADLESS and SUPPORT_HEADFUL options.
ohair@425 173 @BUILD_HEADLESS@
ohair@425 174 @BUILD_HEADLESS_ONLY@
ohair@425 175
ohair@425 176 # These are the libjvms that we want to build.
ohair@425 177 # The java launcher uses the default.
ohair@425 178 # The other can be selected by specifying -client -server -kernel -zero or -zeroshark
ohair@425 179 # on the java launcher command line.
ohair@425 180 DEFAULT_JVM_VARIANT:=@DEFAULT_JVM_VARIANT@
ohair@425 181 JVM_VARIANTS:=@JVM_VARIANTS@
ohair@425 182 JVM_VARIANT_SERVER:=@JVM_VARIANT_SERVER@
ohair@425 183 JVM_VARIANT_CLIENT:=@JVM_VARIANT_CLIENT@
ohair@425 184 JVM_VARIANT_KERNEL:=@JVM_VARIANT_KERNEL@
ohair@425 185 JVM_VARIANT_ZERO:=@JVM_VARIANT_ZERO@
ohair@425 186 JVM_VARIANT_ZEROSHARK:=@JVM_VARIANT_ZEROSHARK@
ohair@425 187
ohair@425 188 # Legacy setting: OPT or DBG
ohair@425 189 VARIANT:=@VARIANT@
ohair@425 190 # Legacy setting: true or false
ohair@425 191 FASTDEBUG:=@FASTDEBUG@
ohair@425 192 # Legacy setting: debugging the class files?
ohair@425 193 DEBUG_CLASSFILES:=@DEBUG_CLASSFILES@
ohair@425 194 # Legacy setting: -debug or -fastdebug
ohair@425 195 BUILD_VARIANT_RELEASE:=@BUILD_VARIANT_RELEASE@
ohair@425 196
ohair@425 197 LANGTOOLS_OUTPUTDIR:=@OUTPUT_ROOT@/langtools
ohair@425 198 LANGTOOLS_DIST:=@OUTPUT_ROOT@/langtools/dist
ohair@425 199 LANGTOOLS_MAKE_ARGS:=@LANGTOOLS_MAKE_ARGS@
ohair@425 200
ohair@425 201 CORBA_OUTPUTDIR:=@OUTPUT_ROOT@/corba
ohair@425 202 CORBA_DIST:=@OUTPUT_ROOT@/corba/dist
ohair@425 203 CORBA_MAKE_ARGS:=@CORBA_MAKE_ARGS@
ohair@425 204
ohair@425 205 JAXP_OUTPUTDIR:=@OUTPUT_ROOT@/jaxp
ohair@425 206 JAXP_DIST:=@OUTPUT_ROOT@/jaxp/dist
ohair@425 207 JAXP_MAKE_ARGS:=@JAXP_MAKE_ARGS@
ohair@425 208
ohair@425 209 JAXWS_OUTPUTDIR:=@OUTPUT_ROOT@/jaxws
ohair@425 210 JAXWS_DIST:=@OUTPUT_ROOT@/jaxws/dist
ohair@425 211 JAXWS_MAKE_ARGS:=@JAXWS_MAKE_ARGS@
ohair@425 212
ohair@425 213 HOTSPOT_OUTPUTDIR:=@OUTPUT_ROOT@/hotspot
ohair@425 214 HOTSPOT_DIST:=@OUTPUT_ROOT@/hotspot/dist
ohair@425 215 HOTSPOT_MAKE_ARGS:=@HOTSPOT_MAKE_ARGS@
ohair@425 216
ohair@425 217 # This where a working jvm is built.
ohair@425 218 # You can run $(JDK_OUTPUTDIR)/bin/java
ohair@425 219 # Though the layout of the contents of $(JDK_OUTPUTDIR) is not
ohair@425 220 # yet the same as a default installation.
ohair@425 221 HOTSPOT_IMPORT_PATH:=@OUTPUT_ROOT@/hotspot/dist
ohair@425 222 JDK_OUTPUTDIR:=@OUTPUT_ROOT@/jdk
ohair@425 223 JDK_MAKE_ARGS:=@JDK_MAKE_ARGS@
ohair@425 224
ohair@425 225 # When you run "make install" it will create the standardized
ohair@425 226 # layout for the jdk and the jre inside the images subdir.
ohair@425 227 # Then it will copy the contents of the jdk into the installation
ohair@425 228 # directory.
ohair@425 229 IMAGES_OUTPUTDIR:=@OUTPUT_ROOT@/images
ohair@425 230 IMAGES_MAKE_ARGS:=@IMAGES_MAKE_ARGS@
ohair@425 231 # Legacy variables used by Release.gmk
ohair@425 232 JDK_IMAGE_DIR:=$(IMAGES_OUTPUTDIR)/j2sdk-image
ohair@425 233 JRE_IMAGE_DIR:=$(IMAGES_OUTPUTDIR)/j2re-image
ohair@425 234
ohair@425 235 # Can be /sparcv9 or /amd64 on Solaris
ohair@425 236 ISA_DIR:=@LEGACY_HOST_CPU3@
ohair@425 237 BINDIR:=$(JDK_OUTPUTDIR)/bin$(ISA_DIR)
ohair@425 238
ohair@425 239 # The boot jdk to use
ohair@425 240 ALT_BOOTDIR:=@BOOT_JDK@
ohair@425 241 BOOT_JDK:=@BOOT_JDK@
ohair@425 242 BOOT_JDK_JVMARGS:=@BOOT_JDK_JVMARGS@
ohair@425 243 BOOT_JAVAC_ARGS:=@BOOT_JAVAC_ARGS@
ohair@425 244 BOOT_RTJAR:=@BOOT_RTJAR@
ohair@425 245 BOOT_TOOLSJAR:=@BOOT_TOOLSJAR@
ohair@425 246
ohair@425 247 # When compiling Java source to be run by the boot jdk
ohair@425 248 # use these extra flags, eg -source 6 -target 6
ohair@425 249 BOOT_JDK_SOURCETARGET:=@BOOT_JDK_SOURCETARGET@
ohair@425 250
ohair@425 251 # Information about the build system
ohair@425 252 NUM_CORES:=@NUM_CORES@
ohair@425 253 # This is used from the libjvm build for C/C++ code.
ohair@425 254 HOTSPOT_BUILD_JOBS:=@CONCURRENT_BUILD_JOBS@
ohair@425 255 # This is used from the jdk build for C/C++ code.
ohair@425 256 PARALLEL_COMPILE_JOBS:=@CONCURRENT_BUILD_JOBS@
ohair@425 257 # Store javac server synchronization files here, and
ohair@425 258 # the javac server log files.
ohair@425 259 JAVAC_SERVERS:=@JAVAC_SERVERS@
ohair@425 260 # Should we use a javac server or not? The javac server gives
ohair@425 261 # an enormous performance improvement since it reduces the
ohair@425 262 # startup costs of javac and reuses as much as possible of intermediate
ohair@425 263 # compilation work. But if we want to compile with a non-Java
ohair@425 264 # javac compiler, like gcj. Then we cannot use javac server and
ohair@425 265 # this variable is set to false.
ohair@425 266 JAVAC_USE_REMOTE:=@JAVAC_USE_REMOTE@
ohair@425 267 # We can block the Javac server to never use more cores than this.
ohair@425 268 # This is not for performance reasons, but for memory usage, since each
ohair@425 269 # core requires its own JavaCompiler. We might have 64 cores and 4GB
ohair@425 270 # of memory, 64 JavaCompilers will currently not fit in a 3GB heap.
ohair@425 271 # Since there is no sharing of data between the JavaCompilers.
ohair@425 272 JAVAC_SERVER_CORES:=@JAVAC_SERVER_CORES@
ohair@425 273 # Should we use dependency tracking between Java packages? true or false.
ohair@425 274 JAVAC_USE_DEPS:=@JAVAC_USE_DEPS@
ohair@425 275 # We can invoke javac: SINGLE_THREADED_BATCH or MULTI_CORE_CONCURRENT
ohair@425 276 JAVAC_USE_MODE:=@JAVAC_USE_MODE@
ohair@425 277
ohair@425 278 # The OpenJDK makefiles should be changed to using the standard
ohair@425 279 # configure output ..._CFLAGS and ..._LIBS. In the meantime we
ohair@425 280 # extract the information here.
ohair@425 281 FREETYPE2_LIB_PATH:=@FREETYPE2_LIB_PATH@
ohair@425 282 FREETYPE2_LIBS:=@FREETYPE2_LIBS@
ohair@425 283 FREETYPE2_CFLAGS:=@FREETYPE2_CFLAGS@
ohair@425 284 USING_SYSTEM_FT_LIB=@USING_SYSTEM_FT_LIB@
ohair@425 285 ALT_CUPS_HEADERS_PATH:=$(patsubst -I%,%,$(filter -I%,@CUPS_CFLAGS@))
ohair@425 286 CUPS_CFLAGS:=@CUPS_CFLAGS@
ohair@425 287
ohair@425 288 PACKAGE_PATH=@PACKAGE_PATH@
ohair@425 289
ohair@425 290 CACERTS_FILE:=$(SRC_ROOT)/jdk/src/share/lib/security/cacerts
ohair@425 291 #CACERTS_INT=$(CLOSED_SHARE_SRC)/lib/security/cacerts.internal
ohair@425 292
ohair@425 293 #MOZILLA_HEADERS_PATH:=
ohair@425 294
ohair@425 295 # Necessary additional compiler flags to compile X11
ohair@425 296 X_CFLAGS:=@X_CFLAGS@
ohair@425 297 X_LIBS:=@X_LIBS@
ohair@425 298 OPENWIN_HOME:=@OPENWIN_HOME@
ohair@425 299
ohair@425 300 # There are two types: CC or CL
ohair@425 301 # CC is gcc and others behaving reasonably similar.
ohair@425 302 # CL is cl.exe only.
ohair@425 303 COMPILER_TYPE:=@COMPILER_TYPE@
ohair@425 304
ohair@425 305 CC_OUT_OPTION:=@CC_OUT_OPTION@
ohair@425 306 EXE_OUT_OPTION:=@EXE_OUT_OPTION@
ohair@425 307 LD_OUT_OPTION:=@LD_OUT_OPTION@
ohair@425 308 AR_OUT_OPTION:=@AR_OUT_OPTION@
ohair@425 309
ohair@425 310 # Flags used for overriding the default opt setting for a C/C++ source file.
ohair@425 311 C_O_FLAG_HI:=@C_O_FLAG_HI@
ohair@425 312 C_O_FLAG_NORM:=@C_O_FLAG_NORM@
ohair@425 313 C_O_FLAG_NONE:=@C_O_FLAG_NONE@
ohair@425 314 CXX_O_FLAG_HI:=@CXX_O_FLAG_HI@
ohair@425 315 CXX_O_FLAG_NORM:=@CXX_O_FLAG_NORM@
ohair@425 316 CXX_O_FLAG_NONE:=@CXX_O_FLAG_NONE@
ohair@425 317
ohair@425 318 # Tools that potentially need to be cross compilation aware.
ohair@425 319 CC:=@UNCYGDRIVE@ @CCACHE@ @CC@
ohair@425 320
ohair@425 321 # CFLAGS used to compile the jdk native libraries (C-code)
ohair@425 322 CFLAGS_JDKLIB:=@CFLAGS_JDKLIB@
ohair@425 323 CXXFLAGS_JDKLIB:=@CXXFLAGS_JDKLIB@
ohair@425 324
ohair@425 325 # CFLAGS used to compile the jdk native launchers (C-code)
ohair@425 326 CFLAGS_JDKEXE:=@CFLAGS_JDKEXE@
ohair@425 327 CXXFLAGS_JDKEXE:=@CXXFLAGS_JDKEXE@
ohair@425 328
ohair@425 329 CXX:=@UNCYGDRIVE@ @CCACHE@ @CXX@
ohair@425 330 #CXXFLAGS:=@CXXFLAGS@
ohair@425 331
ohair@425 332 OBJC:=@CCACHE@ @OBJC@
ohair@425 333 #OBJCFLAGS:=@OBJCFLAGS@
ohair@425 334
ohair@425 335 CPP:=@UNCYGDRIVE@ @CPP@
ohair@425 336 #CPPFLAGS:=@CPPFLAGS@
ohair@425 337
ohair@425 338 # The linker can be gcc or ld on posix systems, or link.exe on winapi systems.
ohair@425 339 LD:=@UNCYGDRIVE@ @LD@
ohair@425 340
ohair@425 341 # LDFLAGS used to link the jdk native libraries (C-code)
ohair@425 342 LDFLAGS_JDKLIB:=@LDFLAGS_JDKLIB@
ohair@425 343 LDFLAGS_JDKLIB_SUFFIX:=@LDFLAGS_JDKLIB_SUFFIX@
ohair@425 344
ohair@425 345 # On some platforms the linker cannot be used to create executables, thus
ohair@425 346 # the need for a separate LDEXE command.
ohair@425 347 LDEXE:=@UNCYGDRIVE@ @LDEXE@
ohair@425 348
ohair@425 349 # LDFLAGS used to link the jdk native launchers (C-code)
ohair@425 350 LDFLAGS_JDKEXE:=@LDFLAGS_JDKEXE@
ohair@425 351 LDFLAGS_JDKEXE_SUFFIX:=@LDFLAGS_JDKEXE_SUFFIX@
ohair@425 352
ohair@425 353 # Sometimes a different linker is needed for c++ libs
ohair@425 354 LDCXX:=@UNCYGDRIVE@ @LDCXX@
ohair@425 355 # The flags for linking libstdc++ linker.
ohair@425 356 LIBCXX:=@LIBCXX@
ohair@425 357
ohair@425 358 # Sometimes a different linker is needed for c++ executables
ohair@425 359 LDEXECXX:=@UNCYGDRIVE@ @LDEXECXX@
ohair@425 360
ohair@425 361 # If cross compiling, then define CROSS_COMPILE_ARCH:=cpu_name here.
ohair@425 362 @DEFINE_CROSS_COMPILE_ARCH@
ohair@425 363 # The HOSTCC should really be named BUILDCC, ie build executable for
ohair@425 364 # the build platform. Same as CC when not cross compiling.
ohair@425 365 HOSTCC:=@HOSTCC@
ohair@425 366 HOSTCXX:=@HOSTCXX@
ohair@425 367 # And of course, the jdk spells HOSTCC as NIO_CC/HOST_CC
ohair@425 368 HOST_CC:=@HOSTCC@
ohair@425 369 NIO_CC:=@HOSTCC@
ohair@425 370
ohair@425 371 AS:=@AS@
ohair@425 372 ASFLAGS:=@ASFLAGS@
ohair@425 373
ohair@425 374 # AR is used to create a static library (is ar in posix, lib.exe in winapi)
ohair@425 375 AR:=@UNCYGDRIVE@ @AR@
ohair@425 376 ARFLAGS:=@ARFLAGS@
ohair@425 377
ohair@425 378 NM:=@NM@
ohair@425 379 STRIP:=@STRIP@
ohair@425 380 MCS:=@MCS@
ohair@425 381
ohair@425 382 # Command to create a shared library
ohair@425 383 SHARED_LIBRARY_FLAGS:=@SHARED_LIBRARY_FLAGS@
ohair@425 384
ohair@425 385 # Options to linker to specify a mapfile.
ohair@425 386 # (Note absence of := assignment, because we do not want to evaluate the macro body here)
ohair@425 387 SET_SHARED_LIBRARY_MAPFILE=@SET_SHARED_LIBRARY_MAPFILE@
ohair@425 388
ohair@425 389 # Options to linker to specify the library name.
ohair@425 390 # (Note absence of := assignment, because we do not want to evaluate the macro body here)
ohair@425 391 SET_SHARED_LIBRARY_NAME=@SET_SHARED_LIBRARY_NAME@
ohair@425 392
ohair@425 393 # Set origin using the linker, ie use the relative path to the dependent library to find the dependees.
ohair@425 394 # (Note absence of := assignment, because we do not want to evaluate the macro body here)
ohair@425 395 SET_SHARED_LIBRARY_ORIGIN=@SET_SHARED_LIBRARY_ORIGIN@
ohair@425 396
ohair@425 397 # Different OS:es have different ways of naming shared libraries.
ohair@425 398 # The SHARED_LIBRARY macro takes "verify" as and argument and returns:
ohair@425 399 # "libverify.so" or "libverify.dylib" or "verify.dll" depending on platform.
ohair@425 400 # (Note absence of := assignment, because we do not want to evaluate the macro body here)
ohair@425 401 SHARED_LIBRARY=@SHARED_LIBRARY@
ohair@425 402 STATIC_LIBRARY=@STATIC_LIBRARY@
ohair@425 403 LIBRARY_PREFIX:=@LIBRARY_PREFIX@
ohair@425 404 SHARED_LIBRARY_SUFFIX:=@SHARED_LIBRARY_SUFFIX@
ohair@425 405 STATIC_LIBRARY_SUFFIX:=@STATIC_LIBRARY_SUFFIX@
ohair@425 406 EXE_SUFFIX:=@EXE_SUFFIX@
ohair@425 407 OBJ_SUFFIX:=@OBJ_SUFFIX@
ohair@425 408
ohair@425 409 JAVA_FLAGS:=@BOOT_JDK_JVMARGS@
ohair@425 410
ohair@425 411 JAVA=@UNCYGDRIVE@ @JAVA@ $(JAVA_FLAGS)
ohair@425 412
ohair@425 413 JAVAC:=@UNCYGDRIVE@ @JAVAC@
ohair@425 414 JAVAC_FLAGS:=@JAVAC_FLAGS@
ohair@425 415
ohair@425 416 JAVAH:=@UNCYGDRIVE@ @JAVAH@
ohair@425 417
ohair@425 418 JAR:=@UNCYGDRIVE@ @JAR@
ohair@425 419
ohair@425 420 RMIC:=@UNCYGDRIVE@ @RMIC@
ohair@425 421
ohair@425 422 BOOT_JAR_CMD:=@UNCYGDRIVE@ @JAR@
ohair@425 423 BOOT_JAR_JFLAGS:=
ohair@425 424
ohair@425 425 # Base flags for RC
ohair@425 426 # Guarding this against resetting value. Legacy make files include spec multiple
ohair@425 427 # times.
ohair@425 428 ifndef RC_FLAGS
ohair@425 429 RC_FLAGS:=@RC_FLAGS@
ohair@425 430 endif
ohair@425 431
ohair@425 432 # A specific java binary with specific options can be used to run
ohair@425 433 # the long running background javac server and other long running tasks.
ohair@425 434 SERVER_JAVA:=@UNCYGDRIVE@ @SERVER_JAVA@
ohair@425 435
ohair@425 436 # Tools adhering to a minimal and common standard of posix compliance.
ohair@425 437 AWK:=@AWK@
ohair@425 438 CAT:=@CAT@
ohair@425 439 CCACHE:=@CCACHE@
ohair@425 440 # CD is going away, but remains to cater for legacy makefiles.
ohair@425 441 CD:=cd
ohair@425 442 CHMOD:=@CHMOD@
ohair@425 443 CP:=@CP@
ohair@425 444 CPIO:=@CPIO@
ohair@425 445 CUT:=@CUT@
ohair@425 446 DATE:=@DATE@
ohair@425 447 DF:=@DF@
ohair@425 448 DIFF:=@DIFF@
ohair@425 449 FIND:=@FIND@
ohair@425 450 FIND_DELETE:=@FIND_DELETE@
ohair@425 451 ECHO:=@ECHO@
ohair@425 452 EGREP:=@EGREP@
ohair@425 453 FGREP:=@FGREP@
ohair@425 454 GREP:=@GREP@
ohair@425 455 HEAD:=@HEAD@
ohair@425 456 LS:=@LS@
ohair@425 457 LN:=@LN@
ohair@425 458 MKDIR:=@MKDIR@
ohair@425 459 MV:=@MV@
ohair@425 460 NAWK:=@NAWK@
ohair@425 461 PRINTF:=@PRINTF@
ohair@425 462 PWD:=@THEPWDCMD@
ohair@425 463 RM:=@RM@
ohair@425 464 SED:=@SED@
ohair@425 465 SH:=@SH@
ohair@425 466 SORT:=@SORT@
ohair@425 467 TAR:=@TAR@
ohair@425 468 TAIL:=@TAIL@
ohair@425 469 TEE:=@TEE@
ohair@425 470 TR:=@TR@
ohair@425 471 TOUCH:=@TOUCH@
ohair@425 472 WC:=@WC@
ohair@425 473 XARGS:=@XARGS@
ohair@425 474 ZIPEXE:=@ZIP@
ohair@425 475 ZIP:=@ZIP@
ohair@425 476 UNZIP:=@UNZIP@
ohair@425 477 MT:=@UNCYGDRIVE@ @MT@
ohair@425 478 RC:=@UNCYGDRIVE@ @RC@
ohair@425 479 DUMPBIN:=@UNCYGDRIVE@ @DUMPBIN@
ohair@425 480 CYGPATH:=@CYGPATH@
ohair@425 481 LDD:=@LDD@
ohair@425 482 OTOOL:=@OTOOL@
ohair@425 483 READELF:=@READELF@
ohair@425 484 EXPR:=@EXPR@
ohair@425 485 FILE:=@FILE@
ohair@425 486
ohair@425 487 UNCYGDRIVE:=@UNCYGDRIVE@
ohair@425 488
ohair@425 489 # Where the build output is stored for your convenience.
ohair@425 490 BUILD_LOG:=@BUILD_LOG@
ohair@425 491 BUILD_LOG_WRAPPER:=@BUILD_LOG_WRAPPER@
ohair@425 492
ohair@425 493 # Build setup
ohair@425 494 ENABLE_DOCS:=@ENABLE_DOCS@
ohair@425 495 GENERATE_DOCS:=@ENABLE_DOCS@
ohair@425 496 DISABLE_NIMBUS:=@DISABLE_NIMBUS@
ohair@425 497 USE_EXTERNAL_LIBJPEG:=@USE_EXTERNAL_LIBJPEG@
ohair@425 498 USE_EXTERNAL_LIBGIF:=@USE_EXTERNAL_LIBGIF@
ohair@425 499 USE_EXTERNAL_LIBZ:=@USE_EXTERNAL_LIBZ@
ohair@425 500 CHECK_FOR_VCINSTALLDIR=@CHECK_FOR_VCINSTALLDIR@
ohair@425 501 MSVCRNN_DLL:=@MSVCR100DLL@
ohair@425 502
ohair@425 503 # ADD_SRCS takes a single argument with source roots
ohair@425 504 # and appends any corresponding source roots found
ohair@425 505 # below --with-add-source-root and below
ohair@425 506 # --with-override-source-root. It is the responsibility
ohair@425 507 # of the next macro to get rid of superfluous files.
ohair@425 508 ADD_SRCS=$1
ohair@425 509 ifneq (,$(ADD_SRC_ROOT))
ohair@425 510 # Append wildcard rule to pickup any matching source roots found below ADD_SRC_ROOT
ohair@425 511 ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(ADD_SRC_ROOT),$1))
ohair@425 512 endif
ohair@425 513 ifneq (,$(OVERRIDE_SRC_ROOT))
ohair@425 514 # Append wildcard rule to pickup any matching source roots found below OVERRIDE_SRC_ROOT
ohair@425 515 ADD_SRCS+=$(wildcard $(subst $(SRC_ROOT),$(OVERRIDE_SRC_ROOT),$1))
ohair@425 516 endif
ohair@425 517
ohair@425 518 # OVR_SRCS creates a filter expression to filter out sources in
ohair@425 519 # the original source directory that lie inside directories below
ohair@425 520 # --with-override-source-root.
ohair@425 521 # Use := here since we want to scan for these files here. To avoid recomputation later.
ohair@425 522 # We cannot do the scan in configure, since that would force us to rerun configure when
ohair@425 523 # we add overridden sources.
ohair@425 524 ifneq (,$(OVERRIDE_SRC_ROOT))
ohair@425 525 OVR_SRCS:=$(addsuffix %,$(subst $(OVERRIDE_SRC_ROOT),$(SRC_ROOT),$(sort $(dir $(shell $(FIND) $(OVERRIDE_SRC_ROOT) -type f)))))
ohair@425 526 else
ohair@425 527 OVR_SRCS:=
ohair@425 528 endif
ohair@425 529
ohair@425 530 ####################################################
ohair@425 531 #
ohair@425 532 # INSTALLATION
ohair@425 533 #
ohair@425 534
ohair@425 535 # Common prefix for all installed files. Defaults to /usr/local,
ohair@425 536 # but /opt/myjdk is another common version.
ohair@425 537 INSTALL_PREFIX=@prefix@
ohair@425 538
ohair@425 539 # Directories containing architecture-dependent files should be relative to exec_prefix
ohair@425 540 INSTALL_EXECPREFIX=@exec_prefix@
ohair@425 541
ohair@425 542 # java,javac,javah,javap etc are installed here.
ohair@425 543 INSTALL_BINDIR=@bindir@
ohair@425 544
ohair@425 545 # Read only architecture-independent data
ohair@425 546 INSTALL_DATADIR=@datadir@
ohair@425 547
ohair@425 548 # Root of above.
ohair@425 549 INSTALL_DATAROOTDIR=@datarootdir@
ohair@425 550
ohair@425 551 # Doc files, other than info and man.
ohair@425 552 INSTALL_DOCDIR=@docdir@
ohair@425 553
ohair@425 554 # Html documentation
ohair@425 555 INSTALL_HTMLDIR=@htmldir@
ohair@425 556
ohair@425 557 # Installing C header files, JNI headers for example.
ohair@425 558 INSTALL_INCLUDEDIR=@includedir@
ohair@425 559
ohair@425 560 # Installing library files....
ohair@425 561 INSTALL_INCLUDEDIR=@libdir@
ohair@425 562
ohair@425 563 # Executables that other programs run.
ohair@425 564 INSTALL_LIBEXECDIR=@libexecdir@
ohair@425 565
ohair@425 566 # Locale-dependent but architecture-independent data, such as message catalogs.
ohair@425 567 INSTALL_LOCALEDIR=@localedir@
ohair@425 568
ohair@425 569 # Modifiable single-machine data
ohair@425 570 INSTALL_LOCALSTATEDIR=@localstatedir@
ohair@425 571
ohair@425 572 # Man pages
ohair@425 573 INSTALL_MANDIR=@mandir@
ohair@425 574
ohair@425 575 # Modifiable architecture-independent data.
ohair@425 576 INSTALL_SHAREDSTATEDIR=@sharedstatedir@
ohair@425 577
ohair@425 578 # Read-only single-machine data
ohair@425 579 INSTALL_SYSCONFDIR=@sysconfdir@
ohair@425 580
ohair@425 581
ohair@425 582 ####################################################
ohair@425 583 #
ohair@425 584 # Misc
ohair@425 585 #
ohair@425 586
ohair@425 587 # Control wether Hotspot runs Queens test after building
ohair@425 588 TEST_IN_BUILD=@TEST_IN_BUILD@

mercurial