author | dholmes |
Thu, 09 Dec 2010 20:12:06 -0500 | |
changeset 7445 | 57d387675180 |
parent 6176 | 4d9030fe341f |
child 7662 | 5f31baaff55b |
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 linux 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 |
SLASH_JAVA ?= /java |
|
30 |
||
31 |
# Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name |
|
32 |
ARCH:=$(shell uname -m) |
|
33 |
PATH_SEP = : |
|
34 |
ifeq ($(LP64), 1) |
|
35 |
ARCH_DATA_MODEL ?= 64 |
|
36 |
else |
|
37 |
ARCH_DATA_MODEL ?= 32 |
|
38 |
endif |
|
39 |
||
4013 | 40 |
# zero |
41 |
ifeq ($(ZERO_BUILD), true) |
|
42 |
ifeq ($(ARCH_DATA_MODEL), 64) |
|
43 |
MAKE_ARGS += LP64=1 |
|
44 |
endif |
|
45 |
PLATFORM = linux-zero |
|
46 |
VM_PLATFORM = linux_$(subst i386,i486,$(ZERO_LIBARCH)) |
|
47 |
HS_ARCH = zero |
|
48 |
ARCH = zero |
|
49 |
endif |
|
50 |
||
1 | 51 |
# ia64 |
52 |
ifeq ($(ARCH), ia64) |
|
53 |
ARCH_DATA_MODEL = 64 |
|
54 |
MAKE_ARGS += LP64=1 |
|
55 |
PLATFORM = linux-ia64 |
|
56 |
VM_PLATFORM = linux_ia64 |
|
57 |
HS_ARCH = ia64 |
|
58 |
endif |
|
59 |
||
60 |
# sparc |
|
61 |
ifeq ($(ARCH), sparc64) |
|
62 |
ifeq ($(ARCH_DATA_MODEL), 64) |
|
63 |
ARCH_DATA_MODEL = 64 |
|
64 |
MAKE_ARGS += LP64=1 |
|
65 |
PLATFORM = linux-sparcv9 |
|
66 |
VM_PLATFORM = linux_sparcv9 |
|
67 |
else |
|
68 |
ARCH_DATA_MODEL = 32 |
|
69 |
PLATFORM = linux-sparc |
|
70 |
VM_PLATFORM = linux_sparc |
|
71 |
endif |
|
72 |
HS_ARCH = sparc |
|
73 |
endif |
|
74 |
||
75 |
# x86_64 |
|
76 |
ifeq ($(ARCH), x86_64) |
|
77 |
ifeq ($(ARCH_DATA_MODEL), 64) |
|
78 |
ARCH_DATA_MODEL = 64 |
|
79 |
MAKE_ARGS += LP64=1 |
|
80 |
PLATFORM = linux-amd64 |
|
81 |
VM_PLATFORM = linux_amd64 |
|
82 |
HS_ARCH = x86 |
|
83 |
else |
|
84 |
ARCH_DATA_MODEL = 32 |
|
85 |
PLATFORM = linux-i586 |
|
86 |
VM_PLATFORM = linux_i486 |
|
87 |
HS_ARCH = x86 |
|
88 |
# We have to reset ARCH to i686 since SRCARCH relies on it |
|
89 |
ARCH = i686 |
|
90 |
endif |
|
91 |
endif |
|
92 |
||
93 |
# i686 |
|
94 |
ifeq ($(ARCH), i686) |
|
95 |
ARCH_DATA_MODEL = 32 |
|
96 |
PLATFORM = linux-i586 |
|
97 |
VM_PLATFORM = linux_i486 |
|
98 |
HS_ARCH = x86 |
|
99 |
endif |
|
100 |
||
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
101 |
# ARM |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
102 |
ifeq ($(ARCH), arm) |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
103 |
ARCH_DATA_MODEL = 32 |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
104 |
PLATFORM = linux-arm |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
105 |
VM_PLATFORM = linux_arm |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
106 |
HS_ARCH = arm |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
107 |
endif |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
108 |
|
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
109 |
# PPC |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
110 |
ifeq ($(ARCH), ppc) |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
111 |
ARCH_DATA_MODEL = 32 |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
112 |
PLATFORM = linux-ppc |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
113 |
VM_PLATFORM = linux_ppc |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
114 |
HS_ARCH = ppc |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
115 |
endif |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
116 |
|
1 | 117 |
JDK_INCLUDE_SUBDIR=linux |
118 |
||
119 |
# FIXUP: The subdirectory for a debug build is NOT the same on all platforms |
|
120 |
VM_DEBUG=jvmg |
|
121 |
||
122 |
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:
4013
diff
changeset
|
123 |
|
a73b8aa8e89d
6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents:
4013
diff
changeset
|
124 |
# 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:
4013
diff
changeset
|
125 |
EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.so |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
126 |
EXPORT_SERVER_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/server |
4018
a73b8aa8e89d
6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents:
4013
diff
changeset
|
127 |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
128 |
ifndef BUILD_CLIENT_ONLY |
1 | 129 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt |
130 |
EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.so |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
131 |
endif |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
132 |
|
4013 | 133 |
ifneq ($(ZERO_BUILD), true) |
134 |
ifeq ($(ARCH_DATA_MODEL), 32) |
|
135 |
EXPORT_CLIENT_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/client |
|
136 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt |
|
137 |
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.so |
|
138 |
endif |
|
1 | 139 |
endif |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
140 |
|
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
141 |
# Serviceability Binaries |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
142 |
# No SA Support for PPC, IA64, ARM or zero |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
143 |
ADD_SA_BINARIES/x86 = $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.so \ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
144 |
$(EXPORT_LIB_DIR)/sa-jdi.jar |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
145 |
ADD_SA_BINARIES/sparc = $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.so \ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
146 |
$(EXPORT_LIB_DIR)/sa-jdi.jar |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
147 |
ADD_SA_BINARIES/ppc = |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
148 |
ADD_SA_BINARIES/ia64 = |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
149 |
ADD_SA_BINARIES/arm = |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
150 |
ADD_SA_BINARIES/zero = |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
151 |
|
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
152 |
EXPORT_LIST += $(ADD_SA_BINARIES/$(HS_ARCH)) |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
153 |
|
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
154 |