jdk/make/common/shared/PrivateDefs.gmk-example
author kvn
Wed, 05 Mar 2008 11:33:31 -0800
changeset 210 6da234892f4a
parent 2 90ce3da70b43
permissions -rw-r--r--
6671250: In Parse::do_if() old Cmp node 'c' should be replaced with new one after BoolNode transformation Summary: In Parse::do_if() 'c' (CmpNode) node may be changed during BoolNode transformation so 'c' may became dead but the node is referenced later in the code. Reviewed-by: never


# This file, when re-named to PrivateDefs.gmk will get included in the
#   makefile definitions (before the ALT_ variables are read) so that you can
#   override makefile settings permanently for a workspace.
#   Use of this file will cause WARNING errors, repeatedly, for a reason.
#
# WARNING: Use with caution.
#

# EXAMPLE: Testing a special build of hotspot
#    (this is the build/solaris/export-solaris-sparc directory from doing
#     a 'cd hotspot/make; gnumake' build)
#
ifeq ($(PLATFORM),solaris)
  ifeq ($(ARCH),sparc)
    ALT_HOTSPOT_IMPORT_PATH=$(JDK_TOPDIR)/../export-solaris-sparc
  endif
endif