make/solaris/makefiles/vm.make

changeset 526
a294fd0c4b38
parent 435
a61af66fc99e
child 545
a49a647afe9a
equal deleted inserted replaced
525:cf4e16e9ca60 526:a294fd0c4b38
1 #
2 # Copyright 1998-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 # Rules to build JVM and related libraries, included from vm.make in the build
26 # directory.
27
28 # Common build rules.
29 MAKEFILES_DIR=$(GAMMADIR)/make/$(Platform_os_family)/makefiles
30 include $(MAKEFILES_DIR)/rules.make
31
32 default: build
33
34 #----------------------------------------------------------------------
35 # Defs
36
37 GENERATED = ../generated
38
39 # read a generated file defining the set of .o's and the .o .h dependencies
40 include $(GENERATED)/Dependencies
41
42 # read machine-specific adjustments (%%% should do this via buildtree.make?)
43 include $(MAKEFILES_DIR)/$(BUILDARCH).make
44
45 # set VPATH so make knows where to look for source files
46 # Src_Dirs is everything in src/share/vm/*, plus the right os/*/vm and cpu/*/vm
47 # The incls directory contains generated header file lists for inclusion.
48 # The adfiles directory contains ad_<arch>.[ch]pp.
49 # The jvmtifiles directory contains jvmti*.[ch]pp
50 Src_Dirs_V = $(GENERATED)/adfiles $(GENERATED)/jvmtifiles ${Src_Dirs} $(GENERATED)/incls
51 VPATH += $(Src_Dirs_V:%=%:)
52
53 # set INCLUDES for C preprocessor
54 Src_Dirs_I = $(GENERATED)/adfiles $(GENERATED)/jvmtifiles ${Src_Dirs} $(GENERATED)
55 INCLUDES += $(Src_Dirs_I:%=-I%)
56
57 ifeq (${VERSION}, debug)
58 SYMFLAG = -g
59 else
60 SYMFLAG =
61 endif
62
63 # The following variables are defined in the generated flags.make file.
64 BUILD_VERSION = -DHOTSPOT_RELEASE_VERSION="\"$(HS_BUILD_VER)\""
65 JRE_VERSION = -DJRE_RELEASE_VERSION="\"$(JRE_RELEASE_VER)\""
66 BUILD_TARGET = -DHOTSPOT_BUILD_TARGET="\"$(TARGET)\""
67 BUILD_USER = -DHOTSPOT_BUILD_USER="\"$(HOTSPOT_BUILD_USER)\""
68 VM_DISTRO = -DHOTSPOT_VM_DISTRO="\"$(HOTSPOT_VM_DISTRO)\""
69
70 CPPFLAGS = \
71 ${SYSDEFS} \
72 ${INCLUDES} \
73 ${BUILD_VERSION} \
74 ${BUILD_TARGET} \
75 ${BUILD_USER} \
76 ${JRE_VERSION} \
77 ${VM_DISTRO}
78
79 # CFLAGS_WARN holds compiler options to suppress/enable warnings.
80 CFLAGS += $(CFLAGS_WARN)
81
82 # Do not use C++ exception handling
83 CFLAGS += $(CFLAGS/NOEX)
84
85 # Extra flags from gnumake's invocation or environment
86 CFLAGS += $(EXTRA_CFLAGS)
87
88 # Math Library (libm.so), do not use -lm.
89 # There might be two versions of libm.so on the build system:
90 # libm.so.1 and libm.so.2, and we want libm.so.1.
91 # Depending on the Solaris release being used to build with,
92 # /usr/lib/libm.so could point at a libm.so.2, so we are
93 # explicit here so that the libjvm.so you have built will work on an
94 # older Solaris release that might not have libm.so.2.
95 # This is a critical factor in allowing builds on Solaris 10 or newer
96 # to run on Solaris 8 or 9.
97 #
98 LIBM=/usr/lib$(ISA_DIR)/libm.so.1
99
100 ifeq ("${Platform_compiler}", "sparcWorks")
101 # The whole megilla:
102 ifeq ($(shell expr $(COMPILER_REV) \>= 5.5), 1)
103 # Old Comment: List the libraries in the order the compiler was designed for
104 # Not sure what the 'designed for' comment is referring too above.
105 # The order may not be too significant anymore, but I have placed this
106 # older libm before libCrun, just to make sure it's found and used first.
107 LIBS += -lsocket -lsched -ldl $(LIBM) -lCrun -lthread -ldoor -lc
108 else
109 LIBS += -ldl -lthread -lsocket $(LIBM) -lsched -ldoor
110 endif
111 else
112 LIBS += -lsocket -lsched -ldl $(LIBM) -lthread -lc
113 endif
114
115 # By default, link the *.o into the library, not the executable.
116 LINK_INTO$(LINK_INTO) = LIBJVM
117
118 JDK_LIBDIR = $(JAVA_HOME)/jre/lib/$(LIBARCH)
119
120 #----------------------------------------------------------------------
121 # jvm_db & dtrace
122 include $(MAKEFILES_DIR)/dtrace.make
123
124 #----------------------------------------------------------------------
125 # JVM
126
127 JVM = jvm$(G_SUFFIX)
128 LIBJVM = lib$(JVM).so
129
130 JVM_OBJ_FILES = $(Obj_Files) $(DTRACE_OBJS)
131
132 vm_version.o: $(filter-out vm_version.o,$(JVM_OBJ_FILES))
133
134 mapfile : $(MAPFILE) $(MAPFILE_DTRACE_OPT)
135 rm -f $@
136 cat $^ > $@
137
138 mapfile_reorder : mapfile $(MAPFILE_DTRACE_OPT) $(REORDERFILE)
139 rm -f $@
140 cat $^ > $@
141
142 ifeq ($(LINK_INTO),AOUT)
143 LIBJVM.o =
144 LIBJVM_MAPFILE =
145 LIBS_VM = $(LIBS)
146 else
147 LIBJVM.o = $(JVM_OBJ_FILES)
148 LIBJVM_MAPFILE$(LDNOMAP) = mapfile_reorder
149 LFLAGS_VM$(LDNOMAP) += $(MAPFLAG:FILENAME=$(LIBJVM_MAPFILE))
150 LFLAGS_VM += $(SONAMEFLAG:SONAME=$(LIBJVM))
151 ifndef USE_GCC
152 LIBS_VM = $(LIBS)
153 else
154 # JVM is statically linked with libgcc[_s] and libstdc++; this is needed to
155 # get around library dependency and compatibility issues. Must use gcc not
156 # g++ to link.
157 LFLAGS_VM += $(STATIC_LIBGCC)
158 LIBS_VM += $(STATIC_STDCXX) $(LIBS)
159 endif
160 endif
161
162 ifdef USE_GCC
163 LINK_VM = $(LINK_LIB.c)
164 else
165 LINK_VM = $(LINK_LIB.CC)
166 endif
167 # making the library:
168 $(LIBJVM): $(LIBJVM.o) $(LIBJVM_MAPFILE)
169 $(QUIETLY) \
170 case "$(CFLAGS_BROWSE)" in \
171 -sbfast|-xsbfast) \
172 ;; \
173 *) \
174 echo Linking vm...; \
175 $(LINK_LIB.CC/PRE_HOOK) \
176 $(LINK_VM) $(LFLAGS_VM) -o $@ $(LIBJVM.o) $(LIBS_VM); \
177 $(LINK_LIB.CC/POST_HOOK) \
178 rm -f $@.1; ln -s $@ $@.1; \
179 ;; \
180 esac
181
182 DEST_JVM = $(JDK_LIBDIR)/$(VM_SUBDIR)/$(LIBJVM)
183
184 install_jvm: $(LIBJVM)
185 @echo "Copying $(LIBJVM) to $(DEST_JVM)"
186 $(QUIETLY) cp -f $(LIBJVM) $(DEST_JVM) && echo "Done"
187
188 #----------------------------------------------------------------------
189 # Other files
190
191 # Gamma launcher
192 include $(MAKEFILES_DIR)/launcher.make
193
194 # Signal interposition library
195 include $(MAKEFILES_DIR)/jsig.make
196
197 # Serviceability agent
198 include $(MAKEFILES_DIR)/saproc.make
199
200 #----------------------------------------------------------------------
201
202 build: $(LIBJVM) $(LAUNCHER) $(LIBJSIG) $(LIBJVM_DB) $(LIBJVM_DTRACE) checkAndBuildSA dtraceCheck
203
204 install: install_jvm install_jsig install_saproc
205
206 .PHONY: default build install install_jvm

mercurial