author | poonam |
Tue, 24 Jun 2014 02:19:59 -0700 | |
changeset 25335 | 2557b9b45520 |
parent 25052 | 66e77563d9e7 |
child 25639 | 61be16de0fd5 |
permissions | -rw-r--r-- |
1 | 1 |
# |
25052
66e77563d9e7
8043492: ad_x86_64_misc.obj : error LNK2011: precompiled object not linked in; image may not run
ctornqvi
parents:
22248
diff
changeset
|
2 |
# Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
# |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3818
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3818
diff
changeset
|
20 |
# or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3818
diff
changeset
|
21 |
# questions. |
1 | 22 |
# |
23 |
# |
|
24 |
||
25 |
# This makefile is used to build Serviceability Agent code |
|
26 |
# and generate JNI header file for native methods. |
|
27 |
||
28 |
AGENT_DIR = $(WorkSpace)/agent |
|
29 |
checkAndBuildSA:: |
|
30 |
||
31 |
!if "$(BUILD_WIN_SA)" != "1" |
|
32 |
# Already warned about this in build.make |
|
33 |
!else |
|
34 |
||
35 |
# This first part is used to build sa-jdi.jar |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
36 |
!include $(WorkSpace)/make/windows/makefiles/rules.make |
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
37 |
!include $(WorkSpace)/make/sa.files |
1 | 38 |
|
13474 | 39 |
GENERATED = ../generated |
1 | 40 |
|
25335 | 41 |
HS_COMMON_SRC_REL = src |
42 |
||
43 |
!if "$(OPENJDK)" != "true" |
|
44 |
HS_ALT_SRC_REL=src/closed |
|
45 |
HS_ALT_SRC = $(WorkSpace)/$(HS_ALT_SRC_REL) |
|
46 |
!ifndef HS_ALT_MAKE |
|
47 |
HS_ALT_MAKE=$(WorkSpace)/make/closed |
|
48 |
!endif |
|
49 |
!endif |
|
50 |
||
51 |
HS_COMMON_SRC = $(WorkSpace)/$(HS_COMMON_SRC_REL) |
|
52 |
||
53 |
!ifdef HS_ALT_MAKE |
|
54 |
!include $(HS_ALT_MAKE)/windows/makefiles/sa.make |
|
55 |
!endif |
|
56 |
||
1 | 57 |
# tools.jar is needed by the JDI - SA binding |
13474 | 58 |
SA_CLASSPATH = $(BOOT_JAVA_HOME)/lib/tools.jar |
1 | 59 |
|
13474 | 60 |
SA_CLASSDIR = $(GENERATED)/saclasses |
1 | 61 |
|
62 |
SA_BUILD_VERSION_PROP = sun.jvm.hotspot.runtime.VM.saBuildVersion=$(SA_BUILD_VERSION) |
|
63 |
||
13474 | 64 |
SA_PROPERTIES = $(SA_CLASSDIR)/sa.properties |
1 | 65 |
|
13474 | 66 |
default:: $(GENERATED)/sa-jdi.jar |
1 | 67 |
|
1609
5eacab926e22
6743339: Enable building sa-jdi.jar and sawindbg.dll on Windows with hotspot build
poonam
parents:
1546
diff
changeset
|
68 |
# Remove the space between $(SA_BUILD_VERSION_PROP) and > below as it adds a white space |
5eacab926e22
6743339: Enable building sa-jdi.jar and sawindbg.dll on Windows with hotspot build
poonam
parents:
1546
diff
changeset
|
69 |
# at the end of SA version string and causes a version mismatch with the target VM version. |
5eacab926e22
6743339: Enable building sa-jdi.jar and sawindbg.dll on Windows with hotspot build
poonam
parents:
1546
diff
changeset
|
70 |
|
13474 | 71 |
$(GENERATED)/sa-jdi.jar: $(AGENT_FILES) |
72 |
$(QUIETLY) mkdir -p $(SA_CLASSDIR) |
|
73 |
@echo ...Building sa-jdi.jar into $(SA_CLASSDIR) |
|
9127
c3fc6f9ed68d
7010849: 5/5 Extraneous javac source/target options when building sa-jdi
andrew
parents:
5547
diff
changeset
|
74 |
@echo ...$(COMPILE_JAVAC) -classpath $(SA_CLASSPATH) -d $(SA_CLASSDIR) .... |
13474 | 75 |
@$(COMPILE_JAVAC) -classpath $(SA_CLASSPATH) -sourcepath $(AGENT_SRC_DIR) -d $(SA_CLASSDIR) $(AGENT_FILES) |
1 | 76 |
$(COMPILE_RMIC) -classpath $(SA_CLASSDIR) -d $(SA_CLASSDIR) sun.jvm.hotspot.debugger.remote.RemoteDebuggerServer |
1609
5eacab926e22
6743339: Enable building sa-jdi.jar and sawindbg.dll on Windows with hotspot build
poonam
parents:
1546
diff
changeset
|
77 |
$(QUIETLY) echo $(SA_BUILD_VERSION_PROP)> $(SA_PROPERTIES) |
1073 | 78 |
$(QUIETLY) rm -f $(SA_CLASSDIR)/sun/jvm/hotspot/utilities/soql/sa.js |
79 |
$(QUIETLY) cp $(AGENT_SRC_DIR)/sun/jvm/hotspot/utilities/soql/sa.js $(SA_CLASSDIR)/sun/jvm/hotspot/utilities/soql |
|
1609
5eacab926e22
6743339: Enable building sa-jdi.jar and sawindbg.dll on Windows with hotspot build
poonam
parents:
1546
diff
changeset
|
80 |
$(QUIETLY) rm -rf $(SA_CLASSDIR)/sun/jvm/hotspot/ui/resources |
13474 | 81 |
$(QUIETLY) mkdir $(SA_CLASSDIR)/sun/jvm/hotspot/ui/resources |
1609
5eacab926e22
6743339: Enable building sa-jdi.jar and sawindbg.dll on Windows with hotspot build
poonam
parents:
1546
diff
changeset
|
82 |
$(QUIETLY) cp $(AGENT_SRC_DIR)/sun/jvm/hotspot/ui/resources/*.png $(SA_CLASSDIR)/sun/jvm/hotspot/ui/resources |
5eacab926e22
6743339: Enable building sa-jdi.jar and sawindbg.dll on Windows with hotspot build
poonam
parents:
1546
diff
changeset
|
83 |
$(QUIETLY) cp -r $(AGENT_SRC_DIR)/images/* $(SA_CLASSDIR) |
10259 | 84 |
$(RUN_JAR) cf $@ -C $(SA_CLASSDIR) . |
13474 | 85 |
$(RUN_JAR) uf $@ -C $(AGENT_SRC_DIR) META-INF/services/com.sun.jdi.connect.Connector |
1 | 86 |
$(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.windbg.WindbgDebuggerLocal |
87 |
$(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.x86.X86ThreadContext |
|
88 |
$(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.debugger.amd64.AMD64ThreadContext |
|
13873 | 89 |
$(RUN_JAVAH) -classpath $(SA_CLASSDIR) -jni sun.jvm.hotspot.asm.Disassembler |
1 | 90 |
|
91 |
||
92 |
||
93 |
# This second part is used to build sawindbg.dll |
|
94 |
# We currently build it the same way for product, debug, and fastdebug. |
|
95 |
||
96 |
SAWINDBG=sawindbg.dll |
|
97 |
||
98 |
checkAndBuildSA:: $(SAWINDBG) |
|
99 |
||
100 |
# These do not need to be optimized (don't run a lot of code) and it |
|
101 |
# will be useful to have the assertion checks in place |
|
102 |
||
103 |
!if "$(BUILDARCH)" == "ia64" |
|
25052
66e77563d9e7
8043492: ad_x86_64_misc.obj : error LNK2011: precompiled object not linked in; image may not run
ctornqvi
parents:
22248
diff
changeset
|
104 |
SA_CFLAGS = -nologo $(MS_RUNTIME_OPTION) -W3 $(GX_OPTION) -Od -D "WIN32" -D "WIN64" -D "_WINDOWS" -D "_DEBUG" -D "_CONSOLE" -D "_MBCS" -FD -c |
1 | 105 |
!elseif "$(BUILDARCH)" == "amd64" |
25052
66e77563d9e7
8043492: ad_x86_64_misc.obj : error LNK2011: precompiled object not linked in; image may not run
ctornqvi
parents:
22248
diff
changeset
|
106 |
SA_CFLAGS = -nologo $(MS_RUNTIME_OPTION) -W3 $(GX_OPTION) -Od -D "WIN32" -D "WIN64" -D "_WINDOWS" -D "_DEBUG" -D "_CONSOLE" -D "_MBCS" -FD -c |
1 | 107 |
!else |
22187 | 108 |
SA_CFLAGS = -nologo $(MS_RUNTIME_OPTION) -W3 $(GX_OPTION) -Od -D "WIN32" -D "_WINDOWS" -D "_DEBUG" -D "_CONSOLE" -D "_MBCS" -FD -RTC1 -c |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
109 |
!if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1" |
13474 | 110 |
SA_CFLAGS = $(SA_CFLAGS) -ZI |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
111 |
!endif |
1 | 112 |
!endif |
1546
a02228c60567
6764892: VS2008 changes required to compile hotspot sources
tbell
parents:
1073
diff
changeset
|
113 |
!if "$(MT)" != "" |
13474 | 114 |
SA_LD_FLAGS = -manifest $(SA_LD_FLAGS) |
1546
a02228c60567
6764892: VS2008 changes required to compile hotspot sources
tbell
parents:
1073
diff
changeset
|
115 |
!endif |
20386 | 116 |
|
117 |
SASRCFILES = $(AGENT_DIR)/src/os/win32/windbg/sawindbg.cpp \ |
|
118 |
$(AGENT_DIR)/src/share/native/sadis.c |
|
119 |
||
13474 | 120 |
SA_LFLAGS = $(SA_LD_FLAGS) -nologo -subsystem:console -machine:$(MACHINE) |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
121 |
!if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1" |
13474 | 122 |
SA_LFLAGS = $(SA_LFLAGS) -map -debug |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
123 |
!endif |
20665 | 124 |
!if "$(BUILDARCH)" == "i486" |
125 |
SA_LFLAGS = $(SAFESEH_FLAG) $(SA_LFLAGS) |
|
126 |
!endif |
|
1 | 127 |
|
20385
eb45334d783c
8007446: Add /MP to cl.exe speeds up windows builds of OpenJDK.
erikj
parents:
13873
diff
changeset
|
128 |
SA_CFLAGS = $(SA_CFLAGS) $(MP_FLAG) |
eb45334d783c
8007446: Add /MP to cl.exe speeds up windows builds of OpenJDK.
erikj
parents:
13873
diff
changeset
|
129 |
|
1 | 130 |
# Note that we do not keep sawindbj.obj around as it would then |
131 |
# get included in the dumpbin command in build_vm_def.sh |
|
132 |
||
1546
a02228c60567
6764892: VS2008 changes required to compile hotspot sources
tbell
parents:
1073
diff
changeset
|
133 |
# In VS2005 or VS2008 the link command creates a .manifest file that we want |
a02228c60567
6764892: VS2008 changes required to compile hotspot sources
tbell
parents:
1073
diff
changeset
|
134 |
# to insert into the linked artifact so we do not need to track it separately. |
a02228c60567
6764892: VS2008 changes required to compile hotspot sources
tbell
parents:
1073
diff
changeset
|
135 |
# Use ";#2" for .dll and ";#1" for .exe in the MT command below: |
20386 | 136 |
$(SAWINDBG): $(SASRCFILES) |
1 | 137 |
set INCLUDE=$(SA_INCLUDE)$(INCLUDE) |
11721
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
10568
diff
changeset
|
138 |
$(CXX) @<< |
13474 | 139 |
-I"$(BootStrapDir)/include" -I"$(BootStrapDir)/include/win32" |
140 |
-I"$(GENERATED)" $(SA_CFLAGS) |
|
20386 | 141 |
$(SASRCFILES) |
13474 | 142 |
-out:$*.obj |
1 | 143 |
<< |
144 |
set LIB=$(SA_LIB)$(LIB) |
|
20386 | 145 |
$(LD) -out:$@ -DLL sawindbg.obj sadis.obj dbgeng.lib $(SA_LFLAGS) |
1546
a02228c60567
6764892: VS2008 changes required to compile hotspot sources
tbell
parents:
1073
diff
changeset
|
146 |
!if "$(MT)" != "" |
13474 | 147 |
$(MT) -manifest $(@F).manifest -outputresource:$(@F);#2 |
1546
a02228c60567
6764892: VS2008 changes required to compile hotspot sources
tbell
parents:
1073
diff
changeset
|
148 |
!endif |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
149 |
!if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1" |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
150 |
!if "$(ZIP_DEBUGINFO_FILES)" == "1" |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
151 |
$(ZIPEXE) -q $*.diz $*.map $*.pdb |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
152 |
$(RM) $*.map $*.pdb |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
153 |
!endif |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
154 |
!endif |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11721
diff
changeset
|
155 |
-@rm -f $*.obj |
1 | 156 |
|
157 |
cleanall : |
|
13474 | 158 |
rm -rf $(GENERATED)/saclasses |
159 |
rm -rf $(GENERATED)/sa-jdi.jar |
|
1 | 160 |
!endif |