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