annotate make/solaris/makefiles/defs.make @ 2042:0a8e0d4345b3 hs20-b05 jdk7-b124

7010068: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - first pass Summary: Update the copyright to be 2010 on all changed files in OpenJDK Reviewed-by: jcoomes
author trims
date Mon, 03 Jan 2011 15:30:05 -0800
parents 126ea7725993
children 4aa5974a06dd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
2042
0a8e0d4345b3 7010068: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - first pass
trims
parents: 1681
diff changeset
2 # Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 #
a61af66fc99e Initial load
duke
parents:
diff changeset
5 # This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 # under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 # published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 #
a61af66fc99e Initial load
duke
parents:
diff changeset
9 # This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 # version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 # accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 #
a61af66fc99e Initial load
duke
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 # 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 #
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1015
diff changeset
19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1015
diff changeset
20 # or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1015
diff changeset
21 # questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 #
a61af66fc99e Initial load
duke
parents:
diff changeset
23 #
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # The common definitions for hotspot solaris builds.
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # Include the top level defs.make under make directory instead of this one.
a61af66fc99e Initial load
duke
parents:
diff changeset
27 # This file is included into make/defs.make.
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 # Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name
a61af66fc99e Initial load
duke
parents:
diff changeset
30 SLASH_JAVA ?= /java
a61af66fc99e Initial load
duke
parents:
diff changeset
31 ARCH:=$(shell uname -p)
a61af66fc99e Initial load
duke
parents:
diff changeset
32 PATH_SEP = :
a61af66fc99e Initial load
duke
parents:
diff changeset
33 ifeq ($(LP64), 1)
a61af66fc99e Initial load
duke
parents:
diff changeset
34 ARCH_DATA_MODEL=64
a61af66fc99e Initial load
duke
parents:
diff changeset
35 else
a61af66fc99e Initial load
duke
parents:
diff changeset
36 ARCH_DATA_MODEL=32
a61af66fc99e Initial load
duke
parents:
diff changeset
37 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 ifeq ($(ARCH),sparc)
a61af66fc99e Initial load
duke
parents:
diff changeset
40 ifeq ($(ARCH_DATA_MODEL), 64)
a61af66fc99e Initial load
duke
parents:
diff changeset
41 MAKE_ARGS += LP64=1
a61af66fc99e Initial load
duke
parents:
diff changeset
42 PLATFORM=solaris-sparcv9
a61af66fc99e Initial load
duke
parents:
diff changeset
43 VM_PLATFORM=solaris_sparcv9
a61af66fc99e Initial load
duke
parents:
diff changeset
44 else
a61af66fc99e Initial load
duke
parents:
diff changeset
45 PLATFORM=solaris-sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
46 VM_PLATFORM=solaris_sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
47 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
48 HS_ARCH=sparc
a61af66fc99e Initial load
duke
parents:
diff changeset
49 else
a61af66fc99e Initial load
duke
parents:
diff changeset
50 ifeq ($(ARCH_DATA_MODEL), 64)
a61af66fc99e Initial load
duke
parents:
diff changeset
51 MAKE_ARGS += LP64=1
a61af66fc99e Initial load
duke
parents:
diff changeset
52 PLATFORM=solaris-amd64
a61af66fc99e Initial load
duke
parents:
diff changeset
53 VM_PLATFORM=solaris_amd64
a61af66fc99e Initial load
duke
parents:
diff changeset
54 HS_ARCH=x86
a61af66fc99e Initial load
duke
parents:
diff changeset
55 else
a61af66fc99e Initial load
duke
parents:
diff changeset
56 PLATFORM=solaris-i586
a61af66fc99e Initial load
duke
parents:
diff changeset
57 VM_PLATFORM=solaris_i486
a61af66fc99e Initial load
duke
parents:
diff changeset
58 HS_ARCH=x86
a61af66fc99e Initial load
duke
parents:
diff changeset
59 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
60 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 JDK_INCLUDE_SUBDIR=solaris
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 # FIXUP: The subdirectory for a debug build is NOT the same on all platforms
a61af66fc99e Initial load
duke
parents:
diff changeset
65 VM_DEBUG=jvmg
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 EXPORT_LIST += $(EXPORT_DOCS_DIR)/platform/jvmti/jvmti.html
1015
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 196
diff changeset
68
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 196
diff changeset
69 # client and server subdirectories have symbolic links to ../libjsig.so
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 196
diff changeset
70 EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libjsig.so
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 196
diff changeset
71
0
a61af66fc99e Initial load
duke
parents:
diff changeset
72 EXPORT_SERVER_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/server
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1579
diff changeset
73 ifneq ($(BUILD_CLIENT_ONLY),true)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
74 EXPORT_LIST += $(EXPORT_SERVER_DIR)/Xusage.txt
a61af66fc99e Initial load
duke
parents:
diff changeset
75 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm.so
a61af66fc99e Initial load
duke
parents:
diff changeset
76 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_db.so
a61af66fc99e Initial load
duke
parents:
diff changeset
77 EXPORT_LIST += $(EXPORT_SERVER_DIR)/libjvm_dtrace.so
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1579
diff changeset
78 endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
79 ifeq ($(ARCH_DATA_MODEL), 32)
a61af66fc99e Initial load
duke
parents:
diff changeset
80 EXPORT_CLIENT_DIR = $(EXPORT_JRE_LIB_ARCH_DIR)/client
a61af66fc99e Initial load
duke
parents:
diff changeset
81 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/Xusage.txt
a61af66fc99e Initial load
duke
parents:
diff changeset
82 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm.so
a61af66fc99e Initial load
duke
parents:
diff changeset
83 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_db.so
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1579
diff changeset
84 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/libjvm_dtrace.so
1568
1747f04ad0c4 6490487: java support on 64 bit solaris x86 machines is broken.
never
parents: 1015
diff changeset
85 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.so
1747f04ad0c4 6490487: java support on 64 bit solaris x86 machines is broken.
never
parents: 1015
diff changeset
86 EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.so
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1579
diff changeset
87 ifneq ($(BUILD_CLIENT_ONLY), true)
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1579
diff changeset
88 EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_db.so
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1579
diff changeset
89 EXPORT_LIST += $(EXPORT_SERVER_DIR)/64/libjvm_dtrace.so
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1579
diff changeset
90 endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
91 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 EXPORT_LIST += $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.so
a61af66fc99e Initial load
duke
parents:
diff changeset
94 EXPORT_LIST += $(EXPORT_LIB_DIR)/sa-jdi.jar