1 #
   2 # Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.
   8 #
   9 # This code is distributed in the hope that it will be useful, but WITHOUT
  10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12 # version 2 for more details (a copy is included in the LICENSE file that
  13 # accompanied this code).
  14 #
  15 # You should have received a copy of the GNU General Public License version
  16 # 2 along with this work; if not, write to the Free Software Foundation,
  17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18 #
  19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20 # or visit www.oracle.com if you need additional information or have any
  21 # questions.
  22 #
  23 #
  24 
  25 # This makefile creates a build tree and lights off a build.
  26 # You can go back into the build tree and perform rebuilds or
  27 # incremental builds as desired. Be sure to reestablish
  28 # environment variable settings for LD_LIBRARY_PATH and JAVA_HOME.
  29 
  30 # The make process now relies on java and javac. These can be
  31 # specified either implicitly on the PATH, by setting the
  32 # (JDK-inherited) ALT_BOOTDIR environment variable to full path to a
  33 # JDK in which bin/java and bin/javac are present and working (e.g.,
  34 # /usr/local/java/jdk1.3/solaris), or via the (JDK-inherited)
  35 # default BOOTDIR path value. Note that one of ALT_BOOTDIR
  36 # or BOOTDIR has to be set. We do *not* search javac, javah, rmic etc.
  37 # from the PATH.
  38 #
  39 # One can set ALT_BOOTDIR or BOOTDIR to point to a jdk that runs on
  40 # an architecture that differs from the target architecture, as long
  41 # as the bootstrap jdk runs under the same flavor of OS as the target
  42 # (i.e., if the target is linux, point to a jdk that runs on a linux
  43 # box).  In order to use such a bootstrap jdk, set the make variable
  44 # REMOTE to the desired remote command mechanism, e.g.,
  45 #
  46 #    make REMOTE="rsh -l me myotherlinuxbox"
  47 
  48 # Along with VM, Serviceability Agent (SA) is built for SA/JDI binding.
  49 # JDI binding on SA produces two binaries:
  50 #  1. sa-jdi.jar       - This is built before building libjvm.so
  51 #                        Please refer to ./makefiles/sa.make
  52 #  2. libsa.so         - Native library for SA - This is built after
  53 #                        libjsig.so (signal interposition library)
  54 #                        Please refer to ./makefiles/vm.make
  55 # If $(GAMMADIR)/agent dir is not present, SA components are not built.
  56 
  57 ifeq ($(GAMMADIR),)
  58 include ../../make/defs.make
  59 else
  60 include $(GAMMADIR)/make/defs.make
  61 endif
  62 include $(GAMMADIR)/make/$(OSNAME)/makefiles/rules.make
  63 
  64 ifndef CC_INTERP
  65   ifndef FORCE_TIERED
  66     FORCE_TIERED=1
  67   endif
  68 endif
  69 
  70 ifdef LP64
  71   ifeq ("$(filter $(LP64_ARCH),$(BUILDARCH))","")
  72     _JUNK_ := $(shell echo >&2 \
  73        $(OSNAME) $(ARCH) "*** ERROR: this platform does not support 64-bit compilers!")
  74         @exit 1
  75   endif
  76 endif
  77 
  78 # we need to set up LP64 correctly to satisfy sanity checks in adlc
  79 ifneq ("$(filter $(LP64_ARCH),$(BUILDARCH))","")
  80   MFLAGS += " LP64=1 "
  81 endif
  82 
  83 # pass USE_SUNCC further, through MFLAGS
  84 ifdef USE_SUNCC
  85   MFLAGS += " USE_SUNCC=1 "
  86 endif
  87 
  88 # The following renders pathnames in generated Makefiles valid on
  89 # machines other than the machine containing the build tree.
  90 #
  91 # For example, let's say my build tree lives on /files12 on
  92 # exact.east.sun.com.  This logic will cause GAMMADIR to begin with
  93 # /net/exact/files12/...
  94 #
  95 # We only do this on SunOS variants, for a couple of reasons:
  96 #  * It is extremely rare that source trees exist on other systems
  97 #  * It has been claimed that the Linux automounter is flakey, so
  98 #    changing GAMMADIR in a way that exercises the automounter could
  99 #    prove to be a source of unreliability in the build process.
 100 # Obviously, this Makefile is only relevant on SunOS boxes to begin
 101 # with, but the SunOS conditionalization will make it easier to
 102 # combine Makefiles in the future (assuming we ever do that).
 103 
 104 ifeq ($(OSNAME),solaris)
 105 
 106   #   prepend current directory to relative pathnames.
 107   NEW_GAMMADIR :=                                    \
 108     $(shell echo $(GAMMADIR) |                       \
 109       sed -e "s=^\([^/].*\)=$(shell pwd)/\1="        \
 110      )
 111   unexport NEW_GAMMADIR
 112 
 113   # If NEW_GAMMADIR doesn't already start with "/net/":
 114   ifeq ($(strip $(filter /net/%,$(NEW_GAMMADIR))),)
 115     #   prepend /net/$(HOST)
 116     #   remove /net/$(HOST) if name already began with /home/
 117     #   remove /net/$(HOST) if name already began with /java/
 118     #   remove /net/$(HOST) if name already began with /lab/
 119     NEW_GAMMADIR :=                                     \
 120          $(shell echo $(NEW_GAMMADIR) |                 \
 121                  sed -e "s=^\(.*\)=/net/$(HOST)\1="     \
 122                      -e "s=^/net/$(HOST)/home/=/home/=" \
 123                      -e "s=^/net/$(HOST)/java/=/java/=" \
 124                      -e "s=^/net/$(HOST)/lab/=/lab/="   \
 125           )
 126     # Don't use the new value for GAMMADIR unless a file with the new
 127     # name actually exists.
 128     ifneq ($(wildcard $(NEW_GAMMADIR)),)
 129       GAMMADIR := $(NEW_GAMMADIR)
 130     endif
 131   endif
 132 
 133 endif
 134 
 135 # BUILDARCH is set to "zero" for Zero builds.  VARIANTARCH
 136 # is used to give the build directories meaningful names.
 137 VARIANTARCH = $(subst i386,i486,$(ZERO_LIBARCH))
 138 
 139 # There is a (semi-) regular correspondence between make targets and actions:
 140 #
 141 #       Target          Tree Type       Build Dir
 142 #
 143 #       debug           compiler2       <os>_<arch>_compiler2/debug
 144 #       fastdebug       compiler2       <os>_<arch>_compiler2/fastdebug
 145 #       optimized       compiler2       <os>_<arch>_compiler2/optimized
 146 #       product         compiler2       <os>_<arch>_compiler2/product
 147 #
 148 #       debug1          compiler1       <os>_<arch>_compiler1/debug
 149 #       fastdebug1      compiler1       <os>_<arch>_compiler1/fastdebug
 150 #       optimized1      compiler1       <os>_<arch>_compiler1/optimized
 151 #       product1        compiler1       <os>_<arch>_compiler1/product
 152 #
 153 #       debugcore       core            <os>_<arch>_core/debug
 154 #       fastdebugcore   core            <os>_<arch>_core/fastdebug
 155 #       optimizedcore   core            <os>_<arch>_core/optimized
 156 #       productcore     core            <os>_<arch>_core/product
 157 #
 158 #       debugzero       zero            <os>_<arch>_zero/debug
 159 #       fastdebugzero   zero            <os>_<arch>_zero/fastdebug
 160 #       optimizedzero   zero            <os>_<arch>_zero/optimized
 161 #       productzero     zero            <os>_<arch>_zero/product
 162 #
 163 #       debugshark      shark           <os>_<arch>_shark/debug
 164 #       fastdebugshark  shark           <os>_<arch>_shark/fastdebug
 165 #       optimizedshark  shark           <os>_<arch>_shark/optimized
 166 #       productshark    shark           <os>_<arch>_shark/product
 167 #
 168 #       fastdebugminimal1 minimal1      <os>_<arch>_minimal1/fastdebug
 169 #       debugminimal1     minimal1      <os>_<arch>_minimal1/debug
 170 #       productminimal1   minimal1      <os>_<arch>_minimal1/product
 171 #
 172 # What you get with each target:
 173 #
 174 # debug*     - debug compile with asserts enabled
 175 # fastdebug* - optimized compile, but with asserts enabled
 176 # optimized* - optimized compile, no asserts
 177 # product*   - the shippable thing:  optimized compile, no asserts, -DPRODUCT
 178 
 179 # This target list needs to be coordinated with the usage message
 180 # in the build.sh script:
 181 TARGETS           = debug fastdebug optimized product
 182 
 183 ifeq ($(findstring true, $(JVM_VARIANT_ZERO) $(JVM_VARIANT_ZEROSHARK)), true)
 184   SUBDIR_DOCS     = $(OSNAME)_$(VARIANTARCH)_docs
 185 else
 186   SUBDIR_DOCS     = $(OSNAME)_$(BUILDARCH)_docs
 187 endif
 188 SUBDIRS_C1        = $(addprefix $(OSNAME)_$(BUILDARCH)_compiler1/,$(TARGETS))
 189 SUBDIRS_C2        = $(addprefix $(OSNAME)_$(BUILDARCH)_compiler2/,$(TARGETS))
 190 SUBDIRS_TIERED    = $(addprefix $(OSNAME)_$(BUILDARCH)_tiered/,$(TARGETS))
 191 SUBDIRS_CORE      = $(addprefix $(OSNAME)_$(BUILDARCH)_core/,$(TARGETS))
 192 SUBDIRS_ZERO      = $(addprefix $(OSNAME)_$(VARIANTARCH)_zero/,$(TARGETS))
 193 SUBDIRS_SHARK     = $(addprefix $(OSNAME)_$(VARIANTARCH)_shark/,$(TARGETS))
 194 SUBDIRS_MINIMAL1  = $(addprefix $(OSNAME)_$(BUILDARCH)_minimal1/,$(TARGETS))
 195 
 196 TARGETS_C2        = $(TARGETS)
 197 TARGETS_C1        = $(addsuffix 1,$(TARGETS))
 198 TARGETS_TIERED    = $(addsuffix tiered,$(TARGETS))
 199 TARGETS_CORE      = $(addsuffix core,$(TARGETS))
 200 TARGETS_ZERO      = $(addsuffix zero,$(TARGETS))
 201 TARGETS_SHARK     = $(addsuffix shark,$(TARGETS))
 202 TARGETS_MINIMAL1  = $(addsuffix minimal1,$(TARGETS))
 203 
 204 BUILDTREE_MAKE    = $(GAMMADIR)/make/$(OSNAME)/makefiles/buildtree.make
 205 BUILDTREE_VARS    = GAMMADIR=$(GAMMADIR) OS_FAMILY=$(OSNAME) SRCARCH=$(SRCARCH) BUILDARCH=$(BUILDARCH) LIBARCH=$(LIBARCH) LIBRARY_SUFFIX=$(LIBRARY_SUFFIX)
 206 BUILDTREE_VARS   += HOTSPOT_RELEASE_VERSION=$(HOTSPOT_RELEASE_VERSION) HOTSPOT_BUILD_VERSION=$(HOTSPOT_BUILD_VERSION) JRE_RELEASE_VERSION=$(JRE_RELEASE_VERSION)
 207 BUILDTREE_VARS   += ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS) OBJCOPY=$(OBJCOPY) STRIP_POLICY=$(STRIP_POLICY) ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES) ZIPEXE=$(ZIPEXE)
 208 
 209 BUILDTREE         = $(MAKE) -f $(BUILDTREE_MAKE) $(BUILDTREE_VARS)
 210 
 211 #-------------------------------------------------------------------------------
 212 
 213 # Could make everything by default, but that would take a while.
 214 all:
 215         @echo "Try '$(MAKE) <target> ...'  where <target> is one or more of"
 216         @echo "  $(TARGETS_C2)"
 217         @echo "  $(TARGETS_C1)"
 218         @echo "  $(TARGETS_CORE)"
 219         @echo "  $(TARGETS_ZERO)"
 220         @echo "  $(TARGETS_SHARK)"
 221         @echo "  $(TARGETS_MINIMAL1)"
 222 
 223 checks: check_os_version check_j2se_version
 224 
 225 # We do not want people accidentally building on old systems (e.g. Linux 2.2.x,
 226 # Solaris 2.5.1, 2.6).
 227 # Disable this check by setting DISABLE_HOTSPOT_OS_VERSION_CHECK=ok.
 228 
 229 #SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 2.7%
 230 DISABLE_HOTSPOT_OS_VERSION_CHECK = ok
 231 OS_VERSION := $(shell uname -r)
 232 EMPTY_IF_NOT_SUPPORTED = $(filter $(SUPPORTED_OS_VERSION),$(OS_VERSION))
 233 
 234 check_os_version:
 235 ifeq ($(DISABLE_HOTSPOT_OS_VERSION_CHECK)$(EMPTY_IF_NOT_SUPPORTED),)
 236         $(QUIETLY) >&2 echo "*** This OS is not supported:" `uname -a`; exit 1;
 237 endif
 238 
 239 # jvmti.make requires XSLT (J2SE 1.4.x or newer):
 240 XSLT_CHECK      = $(REMOTE) $(RUN.JAVAP) javax.xml.transform.TransformerFactory
 241 # If not found then fail fast.
 242 check_j2se_version:
 243         $(QUIETLY) $(XSLT_CHECK) > /dev/null 2>&1; \
 244         if [ $$? -ne 0 ]; then \
 245           $(REMOTE) $(RUN.JAVA) -version; \
 246           echo "*** An XSLT processor (J2SE 1.4.x or newer) is required" \
 247           "to bootstrap this build" 1>&2; \
 248           exit 1; \
 249         fi
 250 
 251 $(SUBDIRS_TIERED): $(BUILDTREE_MAKE)
 252         $(QUIETLY) $(MAKE) -f $(GAMMADIR)/make/$(OSNAME)/Makefile checks
 253         +$(BUILDTREE) VARIANT=tiered
 254 
 255 $(SUBDIRS_C2): $(BUILDTREE_MAKE)
 256 ifeq ($(FORCE_TIERED),1)
 257         $(QUIETLY) $(MAKE) -f $(GAMMADIR)/make/$(OSNAME)/Makefile checks
 258         +$(BUILDTREE) VARIANT=tiered FORCE_TIERED=1
 259 else
 260         $(QUIETLY) $(MAKE) -f $(GAMMADIR)/make/$(OSNAME)/Makefile checks
 261         +$(BUILDTREE) VARIANT=compiler2
 262 endif
 263 
 264 $(SUBDIRS_C1): $(BUILDTREE_MAKE)
 265         $(QUIETLY) $(MAKE) -f $(GAMMADIR)/make/$(OSNAME)/Makefile checks
 266         +$(BUILDTREE) VARIANT=compiler1
 267 
 268 $(SUBDIRS_CORE): $(BUILDTREE_MAKE)
 269         $(QUIETLY) $(MAKE) -f $(GAMMADIR)/make/$(OSNAME)/Makefile checks
 270         +$(BUILDTREE) VARIANT=core
 271 
 272 $(SUBDIRS_ZERO): $(BUILDTREE_MAKE) platform_zero
 273         $(QUIETLY) $(MAKE) -f $(GAMMADIR)/make/$(OSNAME)/Makefile checks
 274         +$(BUILDTREE) VARIANT=zero VARIANTARCH=$(VARIANTARCH)
 275 
 276 $(SUBDIRS_SHARK): $(BUILDTREE_MAKE) platform_zero
 277         $(QUIETLY) $(MAKE) -f $(GAMMADIR)/make/$(OSNAME)/Makefile checks
 278         +$(BUILDTREE) VARIANT=shark VARIANTARCH=$(VARIANTARCH)
 279 
 280 $(SUBDIRS_MINIMAL1): $(BUILDTREE_MAKE)
 281         $(QUIETLY) $(MAKE) -f $(GAMMADIR)/make/$(OSNAME)/Makefile checks
 282         +$(BUILDTREE) VARIANT=minimal1
 283 
 284 platform_zero: $(GAMMADIR)/make/$(OSNAME)/platform_zero.in
 285         $(SED) 's/@ZERO_ARCHDEF@/$(ZERO_ARCHDEF)/g;s/@ZERO_LIBARCH@/$(ZERO_LIBARCH)/g;' < $< > $@
 286 
 287 # Define INSTALL=y at command line to automatically copy JVM into JAVA_HOME
 288 
 289 $(TARGETS_C2):  $(SUBDIRS_C2)
 290         cd $(OSNAME)_$(BUILDARCH)_compiler2/$@ && $(MAKE) $(MFLAGS)
 291 ifdef INSTALL
 292         cd $(OSNAME)_$(BUILDARCH)_compiler2/$@ && $(MAKE) $(MFLAGS) install
 293 endif
 294 
 295 $(TARGETS_TIERED):  $(SUBDIRS_TIERED)
 296         cd $(OSNAME)_$(BUILDARCH)_tiered/$(patsubst %tiered,%,$@) && $(MAKE) $(MFLAGS)
 297 ifdef INSTALL
 298         cd $(OSNAME)_$(BUILDARCH)_tiered/$(patsubst %tiered,%,$@) && $(MAKE) $(MFLAGS) install
 299 endif
 300 
 301 $(TARGETS_C1):  $(SUBDIRS_C1)
 302         cd $(OSNAME)_$(BUILDARCH)_compiler1/$(patsubst %1,%,$@) && $(MAKE) $(MFLAGS)
 303 ifdef INSTALL
 304         cd $(OSNAME)_$(BUILDARCH)_compiler1/$(patsubst %1,%,$@) && $(MAKE) $(MFLAGS) install
 305 endif
 306 
 307 $(TARGETS_CORE):  $(SUBDIRS_CORE)
 308         cd $(OSNAME)_$(BUILDARCH)_core/$(patsubst %core,%,$@) && $(MAKE) $(MFLAGS)
 309 ifdef INSTALL
 310         cd $(OSNAME)_$(BUILDARCH)_core/$(patsubst %core,%,$@) && $(MAKE) $(MFLAGS) install
 311 endif
 312 
 313 $(TARGETS_ZERO):  $(SUBDIRS_ZERO)
 314         cd $(OSNAME)_$(VARIANTARCH)_zero/$(patsubst %zero,%,$@) && $(MAKE) $(MFLAGS)
 315 ifdef INSTALL
 316         cd $(OSNAME)_$(VARIANTARCH)_zero/$(patsubst %zero,%,$@) && $(MAKE) $(MFLAGS) install
 317 endif
 318 
 319 $(TARGETS_SHARK):  $(SUBDIRS_SHARK)
 320         cd $(OSNAME)_$(VARIANTARCH)_shark/$(patsubst %shark,%,$@) && $(MAKE) $(MFLAGS)
 321 ifdef INSTALL
 322         cd $(OSNAME)_$(VARIANTARCH)_shark/$(patsubst %shark,%,$@) && $(MAKE) $(MFLAGS) install
 323 endif
 324 
 325 $(TARGETS_MINIMAL1):  $(SUBDIRS_MINIMAL1)
 326         cd $(OSNAME)_$(BUILDARCH)_minimal1/$(patsubst %minimal1,%,$@) && $(MAKE) $(MFLAGS)
 327 ifdef INSTALL
 328         cd $(OSNAME)_$(BUILDARCH)_minimal1/$(patsubst %minimal1,%,$@) && $(MAKE) $(MFLAGS) install
 329 endif
 330 
 331 # Just build the tree, and nothing else:
 332 tree:      $(SUBDIRS_C2)
 333 tree1:     $(SUBDIRS_C1)
 334 treecore:  $(SUBDIRS_CORE)
 335 treezero:  $(SUBDIRS_ZERO)
 336 treeshark: $(SUBDIRS_SHARK)
 337 treeminimal1: $(SUBDIRS_MINIMAL1)
 338 
 339 # Doc target.  This is the same for all build options.
 340 #     Hence create a docs directory beside ...$(ARCH)_[...]
 341 # We specify 'BUILD_FLAVOR=product' so that the proper
 342 # ENABLE_FULL_DEBUG_SYMBOLS value is used.
 343 docs: checks
 344         $(QUIETLY) mkdir -p $(SUBDIR_DOCS)
 345         $(MAKE) -f $(GAMMADIR)/make/$(OSNAME)/makefiles/jvmti.make $(MFLAGS) $(BUILDTREE_VARS) JvmtiOutDir=$(SUBDIR_DOCS) BUILD_FLAVOR=product jvmtidocs
 346 
 347 # Synonyms for win32-like targets.
 348 compiler2:  debug product
 349 
 350 compiler1:  debug1 product1
 351 
 352 core: debugcore productcore
 353 
 354 zero: debugzero productzero
 355 
 356 shark: debugshark productshark
 357 
 358 warn_jvmg_deprecated:
 359         echo "Warning: The jvmg target has been replaced with debug"
 360         echo "Warning: Please update your usage"
 361 
 362 jvmg: warn_jvmg_deprecated debug
 363 
 364 jvmg1: warn_jvmg_deprecated debug1
 365 
 366 jvmgcore: warn_jvmg_deprecated debugcore
 367 
 368 jvmgzero: warn_jvmg_deprecated debugzero
 369 
 370 jvmgshark: warn_jvmg_deprecated debugshark
 371 
 372 clean_docs:
 373         rm -rf $(SUBDIR_DOCS)
 374 
 375 clean_compiler1 clean_compiler2 clean_core clean_zero clean_shark clean_minimal1:
 376         rm -rf $(OSNAME)_$(BUILDARCH)_$(subst clean_,,$@)
 377 
 378 clean:  clean_compiler2 clean_compiler1 clean_core clean_zero clean_shark clean_minimal1 clean_docs
 379 
 380 include $(GAMMADIR)/make/cscope.make
 381 
 382 #
 383 # Include alternate Makefile if it exists.
 384 #
 385 -include $(HS_ALT_MAKE)/$(OSNAME)/Makefile.make
 386 
 387 #-------------------------------------------------------------------------------
 388 
 389 .PHONY: $(TARGETS_C2) $(TARGETS_C1) $(TARGETS_CORE) $(TARGETS_ZERO) $(TARGETS_SHARK) $(TARGETS_MINIMAL1)
 390 .PHONY: tree tree1 treecore treezero treeshark
 391 .PHONY: all compiler1 compiler2 core zero shark
 392 .PHONY: clean clean_compiler1 clean_compiler2 clean_core clean_zero clean_shark docs clean_docs
 393 .PHONY: checks check_os_version check_j2se_version
 394 .PHONY: $(HS_ALT_MAKE)/$(OSNAME)/Makefile.make
 395 
 396 .NOTPARALLEL: