553N/A# Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
0N/A# Redistribution and use in source and binary forms, with or without
0N/A# modification, are permitted provided that the following conditions
0N/A# - Redistributions of source code must retain the above copyright
0N/A# notice, this list of conditions and the following disclaimer.
0N/A# - Redistributions in binary form must reproduce the above copyright
0N/A# notice, this list of conditions and the following disclaimer in the
0N/A# documentation
and/or other materials provided with the distribution.
0N/A# - Neither the name of Sun Microsystems nor the names of its
0N/A# contributors may be used to endorse or promote products derived
0N/A# from this software without specific prior written permission.
553N/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
553N/A# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
553N/A# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
0N/A# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
0N/A# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
0N/A# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
0N/A# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
0N/A# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
0N/A# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
########################################################################
# Sample GNU Makefile for building JVMTI Demo minst
# gnumake JDK=<java_home> OSNAME=solaris [OPT=true] [LIBARCH=sparc]
# gnumake JDK=<java_home> OSNAME=solaris [OPT=true] [LIBARCH=sparcv9]
# gnumake JDK=<java_home> OSNAME=linux [OPT=true]
# gnumake JDK=<java_home> OSNAME=win32 [OPT=true]
########################################################################
# Name of jar file that needs to be created
# Solaris Sun C Compiler Version 5.5
ifeq ($(OSNAME), solaris)
# Sun Solaris Compiler options needed
# Options that help find errors
COMMON_FLAGS+= -Xa -v -xstrconst -xc99=%none
# Check LIBARCH for any special compiler options
LIBARCH=$(shell uname -p)
COMMON_FLAGS+=-xarch=v8 -xregs=no%appl
ifeq ($(LIBARCH), sparcv9)
COMMON_FLAGS+=-xarch=v9 -xregs=no%appl
CFLAGS=-xO2 $(COMMON_FLAGS)
CFLAGS=-g $(COMMON_FLAGS)
# Object files needed to create library
OBJECTS=$(SOURCES:%.c=%.o)
# Library name and options needed to build it
# Libraries we are dependent on
LIBRARIES=-L $(JDK)
/jre/lib/$(LIBARCH) -ljava_crw_demo -lc
# Building a shared library
LINK_SHARED=$(
LINK.c) -G -o $@
# GNU Compiler options needed to build it
COMMON_FLAGS=-fno-strict-aliasing -fPIC -fno-omit-frame-pointer
# Options that help find errors
COMMON_FLAGS+= -W -Wall -Wno-unused -Wno-parentheses
CFLAGS=-O2 $(COMMON_FLAGS)
CFLAGS=-g $(COMMON_FLAGS)
# Object files needed to create library
OBJECTS=$(SOURCES:%.c=%.o)
# Library name and options needed to build it
LDFLAGS=-Wl,-soname=$(LIBRARY) -static-libgcc -mimpure-text
# Libraries we are dependent on
LIBRARIES=-L $(JDK)
/jre/lib/$(LIBARCH) -ljava_crw_demo -lc
# Building a shared library
LINK_SHARED=$(
LINK.c) -shared -o $@
# Windows Microsoft C/C++ Optimizing Compiler Version 12
# Compiler options needed to build it
# Options that help find errors
CFLAGS= -Ox -Op -Zi $(COMMON_FLAGS)
CFLAGS= -Od -Zi $(COMMON_FLAGS)
# Add in java_crw_demo obj file on windows (easier)
# Object files needed to create library
OBJECTS=$(SOURCES:%.c=%.obj)
# Library name and options needed to build it
# Libraries we are dependent on
# Building a shared library
LINK_SHARED=link -dll -out:$@
CFLAGS += -I../agent_util
CFLAGS += -I../java_crw_demo
CFLAGS += -I$(JDK)/include -I$(JDK)/include/$(OSNAME)
# Default rule (build both native library and jar file)
all: $(LIBRARY) $(JARFILE)
$(LINK_SHARED) $(OBJECTS) $(LIBRARIES)
$(JARFILE): $(JAVA_SOURCES)
rm -f $(LIBRARY) $(JARFILE) $(OBJECTS)
LD_LIBRARY_PATH=. $(JDK)
/bin/java -agentlib:$(LIBNAME) -Xbootclasspath/a:./$(JARFILE) -version
# Compilation rule only needed on Windows