2007-12-01 00:00:00 +00:00
|
|
|
#
|
2010-05-28 02:08:38 +00:00
|
|
|
# Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
# 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.
|
|
|
|
#
|
2010-05-28 02:08:38 +00:00
|
|
|
# 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.
|
2007-12-01 00:00:00 +00:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
# This makefile (sa.make) is included from the sa.make in the
|
|
|
|
# build directories.
|
|
|
|
|
|
|
|
# This makefile is used to build Serviceability Agent java code
|
|
|
|
# and generate JNI header file for native methods.
|
|
|
|
|
2008-04-09 18:22:48 +00:00
|
|
|
include $(GAMMADIR)/make/linux/makefiles/rules.make
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
AGENT_DIR = $(GAMMADIR)/agent
|
|
|
|
|
2008-04-09 18:22:48 +00:00
|
|
|
include $(GAMMADIR)/make/sa.files
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
TOPDIR = $(shell echo `pwd`)
|
|
|
|
GENERATED = $(TOPDIR)/../generated
|
|
|
|
|
|
|
|
# tools.jar is needed by the JDI - SA binding
|
|
|
|
SA_CLASSPATH = $(BOOT_JAVA_HOME)/lib/tools.jar
|
|
|
|
|
|
|
|
# gnumake 3.78.1 does not accept the *s that
|
2008-08-28 05:45:38 +00:00
|
|
|
# are in AGENT_FILES1 and AGENT_FILES2, so use the shell to expand them
|
|
|
|
AGENT_FILES1 := $(shell /usr/bin/test -d $(AGENT_DIR) && /bin/ls $(AGENT_FILES1))
|
|
|
|
AGENT_FILES2 := $(shell /usr/bin/test -d $(AGENT_DIR) && /bin/ls $(AGENT_FILES2))
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
SA_CLASSDIR = $(GENERATED)/saclasses
|
|
|
|
|
|
|
|
SA_BUILD_VERSION_PROP = "sun.jvm.hotspot.runtime.VM.saBuildVersion=$(SA_BUILD_VERSION)"
|
|
|
|
|
|
|
|
SA_PROPERTIES = $(SA_CLASSDIR)/sa.properties
|
|
|
|
|
|
|
|
# if $(AGENT_DIR) does not exist, we don't build SA
|
2009-10-13 19:04:21 +00:00
|
|
|
# also, we don't build SA on Itanium or zero.
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
all:
|
2009-10-13 19:04:21 +00:00
|
|
|
if [ -d $(AGENT_DIR) -a "$(SRCARCH)" != "ia64" -a "$(SRCARCH)" != "zero" ] ; then \
|
2007-12-01 00:00:00 +00:00
|
|
|
$(MAKE) -f sa.make $(GENERATED)/sa-jdi.jar; \
|
|
|
|
fi
|
|
|
|
|
2008-08-28 05:45:38 +00:00
|
|
|
$(GENERATED)/sa-jdi.jar: $(AGENT_FILES1) $(AGENT_FILES2)
|
2007-12-01 00:00:00 +00:00
|
|
|
$(QUIETLY) echo "Making $@"
|
|
|
|
$(QUIETLY) if [ "$(BOOT_JAVA_HOME)" = "" ]; then \
|
|
|
|
echo "ALT_BOOTDIR, BOOTDIR or JAVA_HOME needs to be defined to build SA"; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
$(QUIETLY) if [ ! -f $(SA_CLASSPATH) ] ; then \
|
|
|
|
echo "Missing $(SA_CLASSPATH) file. Use 1.6.0 or later version of JDK";\
|
|
|
|
echo ""; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
$(QUIETLY) if [ ! -d $(SA_CLASSDIR) ] ; then \
|
|
|
|
mkdir -p $(SA_CLASSDIR); \
|
|
|
|
fi
|
2008-08-28 05:45:38 +00:00
|
|
|
|
2009-09-12 11:50:07 +00:00
|
|
|
$(QUIETLY) $(REMOTE) $(COMPILE.JAVAC) -source 1.4 -target 1.4 -classpath $(SA_CLASSPATH) -sourcepath $(AGENT_SRC_DIR) -d $(SA_CLASSDIR) $(AGENT_FILES1)
|
|
|
|
$(QUIETLY) $(REMOTE) $(COMPILE.JAVAC) -source 1.4 -target 1.4 -classpath $(SA_CLASSPATH) -sourcepath $(AGENT_SRC_DIR) -d $(SA_CLASSDIR) $(AGENT_FILES2)
|
2008-08-28 05:45:38 +00:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
$(QUIETLY) $(REMOTE) $(COMPILE.RMIC) -classpath $(SA_CLASSDIR) -d $(SA_CLASSDIR) sun.jvm.hotspot.debugger.remote.RemoteDebuggerServer
|
|
|
|
$(QUIETLY) echo "$(SA_BUILD_VERSION_PROP)" > $(SA_PROPERTIES)
|
2008-08-28 05:45:38 +00:00
|
|
|
$(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
|
|
|
|
$(QUIETLY) mkdir -p $(SA_CLASSDIR)/sun/jvm/hotspot/ui/resources
|
|
|
|
$(QUIETLY) rm -f $(SA_CLASSDIR)/sun/jvm/hotspot/ui/resources/*
|
|
|
|
$(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)/
|
2007-12-01 00:00:00 +00:00
|
|
|
$(QUIETLY) $(REMOTE) $(RUN.JAR) cf $@ -C $(SA_CLASSDIR)/ .
|
|
|
|
$(QUIETLY) $(REMOTE) $(RUN.JAR) uf $@ -C $(AGENT_SRC_DIR) META-INF/services/com.sun.jdi.connect.Connector
|
|
|
|
$(QUIETLY) $(REMOTE) $(RUN.JAVAH) -classpath $(SA_CLASSDIR) -d $(GENERATED) -jni sun.jvm.hotspot.debugger.x86.X86ThreadContext
|
|
|
|
$(QUIETLY) $(REMOTE) $(RUN.JAVAH) -classpath $(SA_CLASSDIR) -d $(GENERATED) -jni sun.jvm.hotspot.debugger.ia64.IA64ThreadContext
|
|
|
|
$(QUIETLY) $(REMOTE) $(RUN.JAVAH) -classpath $(SA_CLASSDIR) -d $(GENERATED) -jni sun.jvm.hotspot.debugger.amd64.AMD64ThreadContext
|
|
|
|
$(QUIETLY) $(REMOTE) $(RUN.JAVAH) -classpath $(SA_CLASSDIR) -d $(GENERATED) -jni sun.jvm.hotspot.debugger.sparc.SPARCThreadContext
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf $(SA_CLASSDIR)
|
|
|
|
rm -rf $(GENERATED)/sa-jdi.jar
|