2796N/A# Copyright (c) 1999, 2011, Oracle
and/or its affiliates. All rights reserved.
2796N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2796N/A# This code is free software; you can redistribute it
and/or modify it
2796N/A# under the terms of the GNU General Public License version 2 only, as
2796N/A# published by the Free Software Foundation.
2796N/A# This code is distributed in the hope that it will be useful, but WITHOUT
2796N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2796N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
2796N/A# version 2 for more details (a copy is included in the LICENSE file that
2796N/A# You should have received a copy of the GNU General Public License version
2796N/A# 2 along with this work; if not, write to the Free Software Foundation,
2796N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2796N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2796N/A# Rules to build JVM and related libraries, included from
vm.make in the build
2796N/AMAKEFILES_DIR=$(GAMMADIR)/make/$(Platform_os_family)/makefiles
2796N/A#----------------------------------------------------------------------
2796N/ADEP_DIR = $(GENERATED)/dependencies
2796N/A# reads the generated files defining the set of .o's and the .o .h dependencies
2796N/A include $(MAKEFILES_DIR)/$(BUILDARCH).make
2796N/A# set VPATH so make knows where to look for source files
2796N/A# The adfiles directory contains ad_<arch>.[ch]pp.
2796N/A# The jvmtifiles directory contains jvmti*.[ch]pp
2796N/ASrc_Dirs_V += $(GENERATED)/adfiles $(GENERATED)/jvmtifiles
2796N/A# set INCLUDES for C preprocessor.
2796N/A# The order is important for the precompiled headers to work.
2796N/AINCLUDES += $(PRECOMPILED_HEADER_DIR:%=-I%) $(Src_Dirs_I:%=-I%)
2796N/A# HOTSPOT_RELEASE_VERSION and HOTSPOT_BUILD_VERSION are defined
2796N/Aifeq ($(HOTSPOT_BUILD_VERSION),)
2796N/A BUILD_VERSION = -DHOTSPOT_RELEASE_VERSION="\"$(HOTSPOT_RELEASE_VERSION)\""
2796N/A BUILD_VERSION = -DHOTSPOT_RELEASE_VERSION="\"$(HOTSPOT_RELEASE_VERSION)-$(HOTSPOT_BUILD_VERSION)\""
2796N/ABUILD_VERSION = -DHOTSPOT_RELEASE_VERSION="\"$(HS_BUILD_VER)\""
2796N/AJRE_VERSION = -DJRE_RELEASE_VERSION="\"$(JRE_RELEASE_VER)\""
2796N/AHS_LIB_ARCH = -DHOTSPOT_LIB_ARCH=\"$(LIBARCH)\"
2796N/ABUILD_TARGET = -DHOTSPOT_BUILD_TARGET="\"$(TARGET)\""
2796N/ABUILD_USER = -DHOTSPOT_BUILD_USER="\"$(HOTSPOT_BUILD_USER)\""
2796N/AVM_DISTRO = -DHOTSPOT_VM_DISTRO="\"$(HOTSPOT_VM_DISTRO)\""
3177N/A# If not, ccache will not re-use the cache at all, since the version string might contain
2796N/ACPPFLAGS += -DDEFAULT_LIBPATH="\"$(DEFAULT_LIBPATH)\""
2796N/A# Do not use C++ exception handling
2796N/A# Extra flags from gnumake's invocation or environment
2796N/A# Don't set excutable bit on stack segment
2796N/A# the same could be done by separate execstack command
2842N/A# Darwin is non-executable-stack by default
2796N/Aifneq ($(OS_VENDOR), Darwin)
2796N/ALFLAGS += -Xlinker -z -Xlinker noexecstack
2796N/A# By default, link the *.o into the library, not the executable.
2796N/ALINK_INTO$(LINK_INTO) = LIBJVM
2796N/A#----------------------------------------------------------------------
2796N/A#----------------------------------------------------------------------
2796N/A LIBJVM_G = lib$(JVM)$(G_SUFFIX).dylib
2796N/A CFLAGS += -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE
2796N/A LIBJVM_G = lib$(JVM)$(G_SUFFIX).so
2796N/ASPECIAL_PATHS:=adlc c1 gc_implementation opto shark libadt
2796N/A \( -name DUMMY $(foreach dir,$(SPECIAL_PATHS),-o -name $(dir)) \))
2796N/ASOURCE_PATHS+=$(HS_COMMON_SRC)/os/$(Platform_os_family)/vm
2796N/ASOURCE_PATHS+=$(HS_COMMON_SRC)/cpu/$(Platform_arch)/vm
2796N/ASOURCE_PATHS+=$(HS_COMMON_SRC)/os_cpu/$(Platform_os_arch)/vm
2796N/ACORE_PATHS=$(foreach path,$(SOURCE_PATHS),$(call altsrc,$(path)) $(path))
2796N/ACORE_PATHS+=$(GENERATED)/jvmtifiles
2796N/ACOMPILER2_PATHS += $(GENERATED)/adfiles
2796N/ASrc_Dirs := $(Src_Dirs/$(TYPE))
2796N/ACOMPILER1_SPECIFIC_FILES := c1_\*
2796N/ASHARK_SPECIFIC_FILES := shark
2796N/ASrc_Files_EXCLUDE += $(Src_Files_EXCLUDE/$(TYPE))
2796N/A# Special handling of arch model.
2796N/Aifeq ($(Platform_arch_model), x86_32)
2796N/ASrc_Files_EXCLUDE += \*x86_64\*
2796N/Aifeq ($(Platform_arch_model), x86_64)
2796N/ASrc_Files_EXCLUDE += \*x86_32\*
2796N/A# Locate all source files in the given directory, excluding files in Src_Files_EXCLUDE.
2796N/A $(notdir $(shell find $(1)/. ! -name . -prune \
2796N/A -a \( -name \*.c -o -name \*.cpp -o -name \*.s \) \
2796N/A -a ! \( -name DUMMY $(addprefix -o -name ,$(Src_Files_EXCLUDE)) \)))
2796N/ASrc_Files := $(foreach e,$(Src_Dirs),$(call findsrc,$(e)))
2796N/AObj_Files = $(sort $(addsuffix .o,$(basename $(Src_Files))))
2796N/AJVM_OBJ_FILES = $(Obj_Files)
2796N/A awk '{ if ($$0 ~ "INSERT VTABLE SYMBOLS HERE") \
2796N/Amapfile_reorder : mapfile $(REORDERFILE)
2796N/A LIBJVM_MAPFILE$(LDNOMAP) = mapfile_reorder
2796N/A LFLAGS_VM$(LDNOMAP) += $(MAPFLAG:FILENAME=$(LIBJVM_MAPFILE))
2796N/A LFLAGS_VM += $(SONAMEFLAG:SONAME=$(LIBJVM))
2796N/A ifeq ($(OS_VENDOR), Darwin)
2796N/A LFLAGS_VM += -Xlinker -rpath -Xlinker @loader_path/.
2796N/A LFLAGS_VM += -Xlinker -rpath -Xlinker @loader_path/..
2796N/A LFLAGS_VM += -Xlinker -install_name -Xlinker @rpath/$(@F)
2796N/A # JVM is statically linked with libgcc[_s] and libstdc++; this is needed to
2796N/A # get around library dependency and compatibility issues. Must use gcc not
2796N/A LFLAGS_VM += $(STATIC_LIBGCC)
2796N/A LIBS_VM += $(STATIC_STDCXX)
2796N/A LFLAGS_VM += $(LLVM_LDFLAGS)
2796N/A# rule for building precompiled header
2796N/A $(QUIETLY) echo Generating precompiled header $@
2796N/A $(QUIETLY) mkdir -p $(PRECOMPILED_HEADER_DIR)
2796N/A $(QUIETLY) $(
COMPILE.CC) $(DEPFLAGS) -x c++-header $(PRECOMPILED_HEADER_SRC) -o $@ $(COMPILE_DONE)
2796N/A# By default shared library is linked at base address == 0. Modify the
2796N/A# linker script if JVM prefers a different base location. It can also be
2796N/A# implemented with 'prelink -r'. But 'prelink' is not (yet) available on
2796N/A# our build platform (AS-2.1).
2796N/A$(LD_SCRIPT): $(LIBJVM_MAPFILE)
2796N/A $(LINK_VM) -Wl,--verbose $(LFLAGS_VM) 2>&1 | \
2796N/A sed -e '/^======/,/^======/!d' \
2796N/A -e 's/0\( + SIZEOF_HEADERS\)/$(JVM_BASE_ADDR)\1/' \
2796N/ALD_SCRIPT_FLAG = -Wl,-T,$(LD_SCRIPT)
2796N/A $(LINK_VM) $(LD_SCRIPT_FLAG) \
2796N/A rm -f $@.1; ln -s $@ $@.1; \
2796N/A [ -f $(LIBJVM_G) ] || { ln -s $@ $(LIBJVM_G); ln -s $@.1 $(LIBJVM_G).1; }; \
2796N/ADEST_JVM = $(JDK_LIBDIR)/$(VM_SUBDIR)/$(LIBJVM)
2796N/A @echo "Copying $(LIBJVM) to $(DEST_JVM)"
2796N/A $(QUIETLY) cp -f $(LIBJVM) $(DEST_JVM) && echo "Done"
2796N/A#----------------------------------------------------------------------
2796N/A# Signal interposition library
2796N/A#----------------------------------------------------------------------
3129N/Abuild: $(LIBJVM) $(LAUNCHER) $(LIBJSIG) $(BUILDLIBSAPROC) dtraceCheck $(LIBJVM).dSYM
2796N/Abuild: $(LIBJVM) $(LAUNCHER) $(LIBJSIG) $(LIBJVM_DB) $(BUILDLIBSAPROC)
2796N/Ainstall: install_jvm install_jsig install_saproc
2796N/A.PHONY: default build install install_jvm