author | jrose |
Wed, 02 Jun 2010 22:45:42 -0700 | |
changeset 5702 | 201c5cde25bb |
parent 5547 | f4b087cbb361 |
parent 5691 | 3b7ff7652596 |
child 6176 | 4d9030fe341f |
permissions | -rw-r--r-- |
1 | 1 |
# |
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4018
diff
changeset
|
2 |
# Copyright (c) 2006, 2008, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
# |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4018
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4018
diff
changeset
|
20 |
# or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4018
diff
changeset
|
21 |
# questions. |
1 | 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 |
|
4018
a73b8aa8e89d
6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents:
670
diff
changeset
|
68 |
|
a73b8aa8e89d
6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents:
670
diff
changeset
|
69 |
# client and server subdirectories have symbolic links to ../libjsig.so |
a73b8aa8e89d
6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents:
670
diff
changeset
|
70 |
EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.so |
a73b8aa8e89d
6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents:
670
diff
changeset
|
71 |
|
1 | 72 |
EXPORT_SERVER_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/server |
73 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt |
|
74 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.so |
|
75 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.so |
|
76 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.so |
|
77 |
ifeq ($(ARCH_DATA_MODEL), 32) |
|
78 |
EXPORT_CLIENT_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/client |
|
79 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt |
|
80 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.so |
|
81 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.so |
|
82 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.so |
|
5691
3b7ff7652596
6490487: java support on 64 bit solaris x86 machines is broken.
never
parents:
4018
diff
changeset
|
83 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.so |
3b7ff7652596
6490487: java support on 64 bit solaris x86 machines is broken.
never
parents:
4018
diff
changeset
|
84 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.so |
3b7ff7652596
6490487: java support on 64 bit solaris x86 machines is broken.
never
parents:
4018
diff
changeset
|
85 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.so |
3b7ff7652596
6490487: java support on 64 bit solaris x86 machines is broken.
never
parents:
4018
diff
changeset
|
86 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.so |
1 | 87 |
endif |
88 |
||
89 |
EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.so |
|
90 |
EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar |