source: trunk/openjdk/hotspot/make/solaris/makefiles/defs.make

Last change on this file was 309, checked in by dmik, 14 years ago

trunk: Merged in openjdk6 b24 from branches/vendor/oracle.

File size: 3.1 KB
Line 
1#
2# Copyright (c) 2006, 2010, Oracle and/or its affiliates. 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20# or visit www.oracle.com if you need additional information or have any
21# 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
30SLASH_JAVA ?= /java
31ARCH:=$(shell uname -p)
32PATH_SEP = :
33ifeq ($(LP64), 1)
34 ARCH_DATA_MODEL=64
35else
36 ARCH_DATA_MODEL=32
37endif
38
39ifeq ($(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
49else
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
60endif
61
62JDK_INCLUDE_SUBDIR=solaris
63
64# FIXUP: The subdirectory for a debug build is NOT the same on all platforms
65VM_DEBUG=jvmg
66
67EXPORT_LIST += $(EXPORT_DOCS_DIR)/platform/jvmti/jvmti.html
68
69# client and server subdirectories have symbolic links to ../libjsig.so
70EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.so
71
72EXPORT_SERVER_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/server
73ifneq ($(BUILD_CLIENT_ONLY),true)
74EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt
75EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.so
76EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.so
77EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.so
78endif
79ifeq ($(ARCH_DATA_MODEL), 32)
80 EXPORT_CLIENT_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/client
81 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt
82 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.so
83 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.so
84 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.so
85 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.so
86 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.so
87 ifneq ($(BUILD_CLIENT_ONLY), true)
88 EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.so
89 EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.so
90 endif
91endif
92
93EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.so
94EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar
Note: See TracBrowser for help on using the repository browser.