sa.make 6.1 KB
Newer Older
D
duke 已提交
1
#
P
poonam 已提交
2
# Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
19 20 21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
D
duke 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35
#  
#

# This makefile is used to build Serviceability Agent code
# and generate JNI header file for native methods.

AGENT_DIR = $(WorkSpace)/agent
checkAndBuildSA::

!if "$(BUILD_WIN_SA)" != "1"
# Already warned about this in build.make
!else

# This first part is used to build sa-jdi.jar
36 37
!include $(WorkSpace)/make/windows/makefiles/rules.make
!include $(WorkSpace)/make/sa.files
D
duke 已提交
38

39
GENERATED = ../generated
D
duke 已提交
40

P
poonam 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
HS_COMMON_SRC_REL = src

!if "$(OPENJDK)" != "true"
HS_ALT_SRC_REL=src/closed
HS_ALT_SRC = $(WorkSpace)/$(HS_ALT_SRC_REL)
!ifndef HS_ALT_MAKE
HS_ALT_MAKE=$(WorkSpace)/make/closed
!endif
!endif

HS_COMMON_SRC = $(WorkSpace)/$(HS_COMMON_SRC_REL)

!ifdef HS_ALT_MAKE
!include $(HS_ALT_MAKE)/windows/makefiles/sa.make
!endif

D
duke 已提交
57
# tools.jar is needed by the JDI - SA binding
58
SA_CLASSPATH = $(BOOT_JAVA_HOME)/lib/tools.jar
D
duke 已提交
59

60
SA_CLASSDIR = $(GENERATED)/saclasses
D
duke 已提交
61 62 63

SA_BUILD_VERSION_PROP = sun.jvm.hotspot.runtime.VM.saBuildVersion=$(SA_BUILD_VERSION)

64
SA_PROPERTIES = $(SA_CLASSDIR)/sa.properties
D
duke 已提交
65

66
default::  $(GENERATED)/sa-jdi.jar
D
duke 已提交
67

68 69 70
# Remove the space between $(SA_BUILD_VERSION_PROP) and > below as it adds a white space
# at the end of SA version string and causes a version mismatch with the target VM version.

71 72 73
$(GENERATED)/sa-jdi.jar: $(AGENT_FILES)
	$(QUIETLY) mkdir -p $(SA_CLASSDIR)
	@echo ...Building sa-jdi.jar into $(SA_CLASSDIR)
74
	@echo ...$(COMPILE_JAVAC) -classpath $(SA_CLASSPATH) -d $(SA_CLASSDIR) ....
75
	@$(COMPILE_JAVAC) -classpath $(SA_CLASSPATH) -sourcepath $(AGENT_SRC_DIR) -d $(SA_CLASSDIR) $(AGENT_FILES)
D
duke 已提交
76
	$(COMPILE_RMIC) -classpath $(SA_CLASSDIR) -d $(SA_CLASSDIR) sun.jvm.hotspot.debugger.remote.RemoteDebuggerServer
77
	$(QUIETLY) echo $(SA_BUILD_VERSION_PROP)> $(SA_PROPERTIES)
78 79
	$(QUIETLY) rm -f $(SA_CLASSDIR)/sun/jvm/hotspot/utilities/soql/sa.js
	$(QUIETLY) cp $(AGENT_SRC_DIR)/sun/jvm/hotspot/utilities/soql/sa.js $(SA_CLASSDIR)/sun/jvm/hotspot/utilities/soql
80
	$(QUIETLY) rm -rf $(SA_CLASSDIR)/sun/jvm/hotspot/ui/resources
81
	$(QUIETLY) mkdir $(SA_CLASSDIR)/sun/jvm/hotspot/ui/resources
82 83
	$(QUIETLY) cp $(AGENT_SRC_DIR)/sun/jvm/hotspot/ui/resources/*.png $(SA_CLASSDIR)/sun/jvm/hotspot/ui/resources
	$(QUIETLY) cp -r $(AGENT_SRC_DIR)/images/* $(SA_CLASSDIR)
K
kvn 已提交
84
	$(RUN_JAR) cf $@ -C $(SA_CLASSDIR) .
85
	$(RUN_JAR) uf $@ -C $(AGENT_SRC_DIR) META-INF/services/com.sun.jdi.connect.Connector
D
duke 已提交
86 87 88
	$(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.windbg.WindbgDebuggerLocal
	$(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.x86.X86ThreadContext 
	$(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.amd64.AMD64ThreadContext 
89
	$(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.asm.Disassembler
D
duke 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103



# This second part is used to build sawindbg.dll
# We currently build it the same way for product, debug, and fastdebug.

SAWINDBG=sawindbg.dll

checkAndBuildSA:: $(SAWINDBG)

# These do not need to be optimized (don't run a lot of code) and it
# will be useful to have the assertion checks in place

!if "$(BUILDARCH)" == "ia64"
104
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
D
duke 已提交
105
!elseif "$(BUILDARCH)" == "amd64"
106
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
107
!if "$(COMPILER_NAME)" == "VS2005"
D
duke 已提交
108 109
# On amd64, VS2005 compiler requires bufferoverflowU.lib on the link command line, 
# otherwise we get missing __security_check_cookie externals at link time. 
110
SA_LD_FLAGS = bufferoverflowU.lib
111
!endif
D
duke 已提交
112
!else
113
SA_CFLAGS = -nologo $(MS_RUNTIME_OPTION) -W3 -Gm $(GX_OPTION) -Od -D "WIN32" -D "_WINDOWS" -D "_DEBUG" -D "_CONSOLE" -D "_MBCS" -YX -FD -GZ -c
114
!if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
115
SA_CFLAGS = $(SA_CFLAGS) -ZI
116
!endif
D
duke 已提交
117
!endif
118
!if "$(MT)" != ""
119
SA_LD_FLAGS = -manifest $(SA_LD_FLAGS)
120
!endif
121 122 123 124

SASRCFILES = $(AGENT_DIR)/src/os/win32/windbg/sawindbg.cpp \
		$(AGENT_DIR)/src/share/native/sadis.c
		            
125
SA_LFLAGS = $(SA_LD_FLAGS) -nologo -subsystem:console -machine:$(MACHINE)
126
!if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
127
SA_LFLAGS = $(SA_LFLAGS) -map -debug
128
!endif
E
erikj 已提交
129
!if "$(BUILDARCH)" == "i486"
130
SA_LFLAGS = /SAFESEH $(SA_LFLAGS)
E
erikj 已提交
131
!endif
D
duke 已提交
132

133 134
SA_CFLAGS = $(SA_CFLAGS) $(MP_FLAG)

D
duke 已提交
135 136 137
# Note that we do not keep sawindbj.obj around as it would then
# get included in the dumpbin command in build_vm_def.sh

138 139 140
# In VS2005 or VS2008 the link command creates a .manifest file that we want
# to insert into the linked artifact so we do not need to track it separately.
# Use ";#2" for .dll and ";#1" for .exe in the MT command below:
141
$(SAWINDBG): $(SASRCFILES)
D
duke 已提交
142
	set INCLUDE=$(SA_INCLUDE)$(INCLUDE)
143
	$(CXX) @<<
144 145
	  -I"$(BootStrapDir)/include" -I"$(BootStrapDir)/include/win32" 
	  -I"$(GENERATED)" $(SA_CFLAGS)
146
	  $(SASRCFILES)
147
	  -out:$*.obj
D
duke 已提交
148 149
<<
	set LIB=$(SA_LIB)$(LIB)
150
	$(LD) -out:$@ -DLL sawindbg.obj sadis.obj dbgeng.lib $(SA_LFLAGS)
151
!if "$(MT)" != ""
152
	$(MT) -manifest $(@F).manifest -outputresource:$(@F);#2
153
!endif
154 155 156 157 158 159 160
!if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
!if "$(ZIP_DEBUGINFO_FILES)" == "1"
	$(ZIPEXE) -q $*.diz $*.map $*.pdb
	$(RM) $*.map $*.pdb
!endif
!endif
	-@rm -f $*.obj
D
duke 已提交
161 162

cleanall :
163 164
	rm -rf $(GENERATED)/saclasses
	rm -rf $(GENERATED)/sa-jdi.jar
D
duke 已提交
165
!endif