1
|
1 |
#
|
|
2 |
# Copyright 2006-2007 Sun Microsystems, Inc. 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
|
|
20 |
# CA 95054 USA or visit www.sun.com if you need additional information or
|
|
21 |
# have any questions.
|
|
22 |
#
|
|
23 |
#
|
|
24 |
|
|
25 |
# The common definitions for hotspot solaris builds.
|
|
26 |
# Include the top level defs.make under make directory instead of this one.
|
|
27 |
# This file is included into make/defs.make.
|
|
28 |
|
|
29 |
# Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name
|
|
30 |
SLASH_JAVA ?= /java
|
|
31 |
ARCH:=$(shell uname -p)
|
|
32 |
PATH_SEP = :
|
|
33 |
ifeq ($(LP64), 1)
|
|
34 |
ARCH_DATA_MODEL=64
|
|
35 |
else
|
|
36 |
ARCH_DATA_MODEL=32
|
|
37 |
endif
|
|
38 |
|
|
39 |
ifeq ($(ARCH),sparc)
|
|
40 |
ifeq ($(ARCH_DATA_MODEL), 64)
|
|
41 |
MAKE_ARGS += LP64=1
|
|
42 |
PLATFORM=solaris-sparcv9
|
|
43 |
VM_PLATFORM=solaris_sparcv9
|
|
44 |
else
|
|
45 |
PLATFORM=solaris-sparc
|
|
46 |
VM_PLATFORM=solaris_sparc
|
|
47 |
endif
|
|
48 |
HS_ARCH=sparc
|
|
49 |
else
|
|
50 |
ifeq ($(ARCH_DATA_MODEL), 64)
|
|
51 |
MAKE_ARGS += LP64=1
|
|
52 |
PLATFORM=solaris-amd64
|
|
53 |
VM_PLATFORM=solaris_amd64
|
|
54 |
HS_ARCH=x86
|
|
55 |
else
|
|
56 |
PLATFORM=solaris-i586
|
|
57 |
VM_PLATFORM=solaris_i486
|
|
58 |
HS_ARCH=x86
|
|
59 |
endif
|
|
60 |
endif
|
|
61 |
|
|
62 |
JDK_INCLUDE_SUBDIR=solaris
|
|
63 |
|
|
64 |
# FIXUP: The subdirectory for a debug build is NOT the same on all platforms
|
|
65 |
VM_DEBUG=jvmg
|
|
66 |
|
|
67 |
EXPORT_LIST += $(EXPORT_DOCS_DIR)/platform/jvmti/jvmti.html
|
|
68 |
EXPORT_SERVER_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/server
|
|
69 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt
|
|
70 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjsig.so
|
|
71 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.so
|
|
72 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.so
|
|
73 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.so
|
|
74 |
ifeq ($(ARCH_DATA_MODEL), 32)
|
|
75 |
EXPORT_CLIENT_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/client
|
|
76 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt
|
|
77 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjsig.so
|
|
78 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.so
|
|
79 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.so
|
|
80 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.so
|
|
81 |
ifeq ($(ARCH),sparc)
|
|
82 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.so
|
|
83 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.so
|
|
84 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.so
|
|
85 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.so
|
|
86 |
endif
|
|
87 |
endif
|
|
88 |
|
|
89 |
EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.so
|
|
90 |
EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar
|