make/solaris/makefiles/defs.make

Wed, 09 Apr 2008 14:22:48 -0400

author
kamg
date
Wed, 09 Apr 2008 14:22:48 -0400
changeset 526
a294fd0c4b38
parent 435
build/solaris/makefiles/defs.make@a61af66fc99e
child 631
d1605aabd0a1
permissions
-rw-r--r--

6583644: Move all managed/SCCS files out of 'build' into 'make' directory
Summary: Moved makefiles out of build and build/closed into make/
Reviewed-by: kvn, ohair

duke@435 1 #
duke@435 2 # Copyright 2006-2007 Sun Microsystems, Inc. All Rights Reserved.
duke@435 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 #
duke@435 5 # This code is free software; you can redistribute it and/or modify it
duke@435 6 # under the terms of the GNU General Public License version 2 only, as
duke@435 7 # published by the Free Software Foundation.
duke@435 8 #
duke@435 9 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 # version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 # accompanied this code).
duke@435 14 #
duke@435 15 # You should have received a copy of the GNU General Public License version
duke@435 16 # 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 #
duke@435 19 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 # CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 # have any questions.
duke@435 22 #
duke@435 23 #
duke@435 24
duke@435 25 # The common definitions for hotspot solaris builds.
duke@435 26 # Include the top level defs.make under make directory instead of this one.
duke@435 27 # This file is included into make/defs.make.
duke@435 28
duke@435 29 # Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name
duke@435 30 SLASH_JAVA ?= /java
duke@435 31 ARCH:=$(shell uname -p)
duke@435 32 PATH_SEP = :
duke@435 33 ifeq ($(LP64), 1)
duke@435 34 ARCH_DATA_MODEL=64
duke@435 35 else
duke@435 36 ARCH_DATA_MODEL=32
duke@435 37 endif
duke@435 38
duke@435 39 ifeq ($(ARCH),sparc)
duke@435 40 ifeq ($(ARCH_DATA_MODEL), 64)
duke@435 41 MAKE_ARGS += LP64=1
duke@435 42 PLATFORM=solaris-sparcv9
duke@435 43 VM_PLATFORM=solaris_sparcv9
duke@435 44 else
duke@435 45 PLATFORM=solaris-sparc
duke@435 46 VM_PLATFORM=solaris_sparc
duke@435 47 endif
duke@435 48 HS_ARCH=sparc
duke@435 49 else
duke@435 50 ifeq ($(ARCH_DATA_MODEL), 64)
duke@435 51 MAKE_ARGS += LP64=1
duke@435 52 PLATFORM=solaris-amd64
duke@435 53 VM_PLATFORM=solaris_amd64
duke@435 54 HS_ARCH=x86
duke@435 55 else
duke@435 56 PLATFORM=solaris-i586
duke@435 57 VM_PLATFORM=solaris_i486
duke@435 58 HS_ARCH=x86
duke@435 59 endif
duke@435 60 endif
duke@435 61
duke@435 62 JDK_INCLUDE_SUBDIR=solaris
duke@435 63
duke@435 64 # FIXUP: The subdirectory for a debug build is NOT the same on all platforms
duke@435 65 VM_DEBUG=jvmg
duke@435 66
duke@435 67 EXPORT_LIST += $(EXPORT_DOCS_DIR)/platform/jvmti/jvmti.html
duke@435 68 EXPORT_SERVER_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/server
duke@435 69 EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt
duke@435 70 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjsig.so
duke@435 71 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.so
duke@435 72 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.so
duke@435 73 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.so
duke@435 74 ifeq ($(ARCH_DATA_MODEL), 32)
duke@435 75 EXPORT_CLIENT_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/client
duke@435 76 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt
duke@435 77 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjsig.so
duke@435 78 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.so
duke@435 79 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.so
duke@435 80 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.so
duke@435 81 ifeq ($(ARCH),sparc)
duke@435 82 EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.so
duke@435 83 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.so
duke@435 84 EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.so
duke@435 85 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.so
duke@435 86 endif
duke@435 87 endif
duke@435 88
duke@435 89 EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.so
duke@435 90 EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar

mercurial