0N/A#
3364N/A# Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
1472N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1472N/A# or visit www.oracle.com if you need additional information or have any
1472N/A# questions.
0N/A#
0N/A#
0N/A
0N/A# This makefile is used to build Serviceability Agent code
0N/A# and generate JNI header file for native methods.
0N/A
0N/AAGENT_DIR = $(WorkSpace)/agent
0N/AcheckAndBuildSA::
0N/A
0N/A!if "$(BUILD_WIN_SA)" != "1"
0N/A# Already warned about this in build.make
0N/A!else
0N/A
0N/A# This first part is used to build sa-jdi.jar
91N/A!include $(WorkSpace)/make/windows/makefiles/rules.make
91N/A!include $(WorkSpace)/make/sa.files
0N/A
3953N/AGENERATED = ../generated
0N/A
0N/A# tools.jar is needed by the JDI - SA binding
3953N/ASA_CLASSPATH = $(BOOT_JAVA_HOME)/lib/tools.jar
0N/A
3953N/ASA_CLASSDIR = $(GENERATED)/saclasses
0N/A
0N/ASA_BUILD_VERSION_PROP = sun.jvm.hotspot.runtime.VM.saBuildVersion=$(SA_BUILD_VERSION)
0N/A
3953N/ASA_PROPERTIES = $(SA_CLASSDIR)/sa.properties
0N/A
3953N/Adefault:: $(GENERATED)/sa-jdi.jar
0N/A
456N/A# Remove the space between $(SA_BUILD_VERSION_PROP) and > below as it adds a white space
456N/A# at the end of SA version string and causes a version mismatch with the target VM version.
456N/A
3953N/A$(GENERATED)/sa-jdi.jar: $(AGENT_FILES)
3953N/A $(QUIETLY) mkdir -p $(SA_CLASSDIR)
3953N/A @echo ...Building sa-jdi.jar into $(SA_CLASSDIR)
2318N/A @echo ...$(COMPILE_JAVAC) -classpath $(SA_CLASSPATH) -d $(SA_CLASSDIR) ....
3953N/A @$(COMPILE_JAVAC) -classpath $(SA_CLASSPATH) -sourcepath $(AGENT_SRC_DIR) -d $(SA_CLASSDIR) $(AGENT_FILES)
0N/A $(COMPILE_RMIC) -classpath $(SA_CLASSDIR) -d $(SA_CLASSDIR) sun.jvm.hotspot.debugger.remote.RemoteDebuggerServer
456N/A $(QUIETLY) echo $(SA_BUILD_VERSION_PROP)> $(SA_PROPERTIES)
311N/A $(QUIETLY) rm -f $(SA_CLASSDIR)/sun/jvm/hotspot/utilities/soql/sa.js
311N/A $(QUIETLY) cp $(AGENT_SRC_DIR)/sun/jvm/hotspot/utilities/soql/sa.js $(SA_CLASSDIR)/sun/jvm/hotspot/utilities/soql
456N/A $(QUIETLY) rm -rf $(SA_CLASSDIR)/sun/jvm/hotspot/ui/resources
3953N/A $(QUIETLY) mkdir $(SA_CLASSDIR)/sun/jvm/hotspot/ui/resources
456N/A $(QUIETLY) cp $(AGENT_SRC_DIR)/sun/jvm/hotspot/ui/resources/*.png $(SA_CLASSDIR)/sun/jvm/hotspot/ui/resources
456N/A $(QUIETLY) cp -r $(AGENT_SRC_DIR)/images/* $(SA_CLASSDIR)
2671N/A $(RUN_JAR) cf $@ -C $(SA_CLASSDIR) .
3953N/A $(RUN_JAR) uf $@ -C $(AGENT_SRC_DIR) META-INF/services/com.sun.jdi.connect.Connector
0N/A $(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.windbg.WindbgDebuggerLocal
0N/A $(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.x86.X86ThreadContext
0N/A $(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.ia64.IA64ThreadContext
0N/A $(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.amd64.AMD64ThreadContext
0N/A
0N/A
0N/A
0N/A# This second part is used to build sawindbg.dll
0N/A# We currently build it the same way for product, debug, and fastdebug.
0N/A
0N/ASAWINDBG=sawindbg.dll
0N/A
0N/AcheckAndBuildSA:: $(SAWINDBG)
0N/A
0N/A# These do not need to be optimized (don't run a lot of code) and it
0N/A# will be useful to have the assertion checks in place
0N/A
0N/A!if "$(BUILDARCH)" == "ia64"
3953N/ASA_CFLAGS = -nologo $(MS_RUNTIME_OPTION) -W3 $(GX_OPTION) -Od -D "WIN32" -D "WIN64" -D "_WINDOWS" -D "_DEBUG" -D "_CONSOLE" -D "_MBCS" -YX -FD -c
0N/A!elseif "$(BUILDARCH)" == "amd64"
3953N/ASA_CFLAGS = -nologo $(MS_RUNTIME_OPTION) -W3 $(GX_OPTION) -Od -D "WIN32" -D "WIN64" -D "_WINDOWS" -D "_DEBUG" -D "_CONSOLE" -D "_MBCS" -YX -FD -c
645N/A!if "$(COMPILER_NAME)" == "VS2005"
0N/A# On amd64, VS2005 compiler requires bufferoverflowU.lib on the link command line,
0N/A# otherwise we get missing __security_check_cookie externals at link time.
3178N/ASA_LD_FLAGS = bufferoverflowU.lib
645N/A!endif
0N/A!else
3953N/ASA_CFLAGS = -nologo $(MS_RUNTIME_OPTION) -W3 -Gm $(GX_OPTION) -Od -D "WIN32" -D "_WINDOWS" -D "_DEBUG" -D "_CONSOLE" -D "_MBCS" -YX -FD -GZ -c
3364N/A!if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
3953N/ASA_CFLAGS = $(SA_CFLAGS) -ZI
3364N/A!endif
0N/A!endif
427N/A!if "$(MT)" != ""
3953N/ASA_LD_FLAGS = -manifest $(SA_LD_FLAGS)
427N/A!endif
0N/ASASRCFILE = $(AGENT_DIR)/src/os/win32/windbg/sawindbg.cpp
3953N/ASA_LFLAGS = $(SA_LD_FLAGS) -nologo -subsystem:console -machine:$(MACHINE)
3364N/A!if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
3953N/ASA_LFLAGS = $(SA_LFLAGS) -map -debug
3364N/A!endif
0N/A
0N/A# Note that we do not keep sawindbj.obj around as it would then
0N/A# get included in the dumpbin command in build_vm_def.sh
0N/A
427N/A# In VS2005 or VS2008 the link command creates a .manifest file that we want
427N/A# to insert into the linked artifact so we do not need to track it separately.
427N/A# Use ";#2" for .dll and ";#1" for .exe in the MT command below:
0N/A$(SAWINDBG): $(SASRCFILE)
0N/A set INCLUDE=$(SA_INCLUDE)$(INCLUDE)
3178N/A $(CXX) @<<
3953N/A -I"$(BootStrapDir)/include" -I"$(BootStrapDir)/include/win32"
3953N/A -I"$(GENERATED)" $(SA_CFLAGS)
0N/A $(SASRCFILE)
3953N/A -out:$*.obj
0N/A<<
0N/A set LIB=$(SA_LIB)$(LIB)
3953N/A $(LD) -out:$@ -DLL $*.obj dbgeng.lib $(SA_LFLAGS)
427N/A!if "$(MT)" != ""
3953N/A $(MT) -manifest $(@F).manifest -outputresource:$(@F);#2
427N/A!endif
3364N/A!if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
3364N/A!if "$(ZIP_DEBUGINFO_FILES)" == "1"
3364N/A $(ZIPEXE) -q $*.diz $*.map $*.pdb
3364N/A $(RM) $*.map $*.pdb
3364N/A!endif
3364N/A!endif
3364N/A -@rm -f $*.obj
0N/A
0N/Acleanall :
3953N/A rm -rf $(GENERATED)/saclasses
3953N/A rm -rf $(GENERATED)/sa-jdi.jar
0N/A!endif