hotspot/agent/src/os/linux/Makefile
author never
Mon, 04 May 2009 22:06:47 -0700
changeset 2744 57f0579fbe09
parent 1 489c9b5090e2
child 3261 c7d5aae8d3f7
permissions -rw-r--r--
6837224: libsaproc.so on linux needs version of 6799141 Reviewed-by: kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
# Copyright 2002-2006 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
# accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
# CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
# have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
#  
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
ARCH := $(shell if ([ `uname -m` = "ia64" ])  ; then echo ia64 ; elif ([ `uname -m` = "x86_64" ]) ; then echo amd64; elif ([ `uname -m` = "sparc64" ]) ; then echo sparc; else echo i386 ; fi )
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
GCC      = gcc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
JAVAH    = ${JAVA_HOME}/bin/javah
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
SOURCES  = salibelf.c   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
        symtab.c        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
	libproc_impl.c  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
	ps_proc.c       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
	ps_core.c       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
	LinuxDebuggerLocal.c 
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
INCLUDES = -I${JAVA_HOME}/include -I${JAVA_HOME}/include/linux 
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
OBJS     = $(SOURCES:.c=.o)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
LIBS     = -lthread_db
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
CFLAGS   = -c -fPIC -g -D_GNU_SOURCE -D$(ARCH) $(INCLUDES)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
LIBSA = $(ARCH)/libsaproc.so
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
all: $(LIBSA)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
LinuxDebuggerLocal.o: LinuxDebuggerLocal.c
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
	$(JAVAH) -jni -classpath ../../../build/classes  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
		sun.jvm.hotspot.debugger.x86.X86ThreadContext \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
		sun.jvm.hotspot.debugger.sparc.SPARCThreadContext \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
		sun.jvm.hotspot.debugger.amd64.AMD64ThreadContext 
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
	$(GCC) $(CFLAGS) $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
.c.obj:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
	$(GCC) $(CFLAGS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
ifndef LDNOMAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  LFLAGS_LIBSA = -Xlinker --version-script=mapfile
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
2744
57f0579fbe09 6837224: libsaproc.so on linux needs version of 6799141
never
parents: 1
diff changeset
    63
# If this is a --hash-style=gnu system, use --hash-style=both
57f0579fbe09 6837224: libsaproc.so on linux needs version of 6799141
never
parents: 1
diff changeset
    64
#   The gnu .hash section won't work on some Linux systems like SuSE 10.
57f0579fbe09 6837224: libsaproc.so on linux needs version of 6799141
never
parents: 1
diff changeset
    65
_HAS_HASH_STYLE_GNU:=$(shell $(CC) -dumpspecs | grep -- '--hash-style=gnu')
57f0579fbe09 6837224: libsaproc.so on linux needs version of 6799141
never
parents: 1
diff changeset
    66
ifneq ($(_HAS_HASH_STYLE_GNU),)
57f0579fbe09 6837224: libsaproc.so on linux needs version of 6799141
never
parents: 1
diff changeset
    67
  LDFLAGS_HASH_STYLE = -Wl,--hash-style=both
57f0579fbe09 6837224: libsaproc.so on linux needs version of 6799141
never
parents: 1
diff changeset
    68
endif
57f0579fbe09 6837224: libsaproc.so on linux needs version of 6799141
never
parents: 1
diff changeset
    69
LFLAGS_LIBSA += $(LDFLAGS_HASH_STYLE)
57f0579fbe09 6837224: libsaproc.so on linux needs version of 6799141
never
parents: 1
diff changeset
    70
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
$(LIBSA): $(OBJS) mapfile
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
	if [ ! -d $(ARCH) ] ; then mkdir $(ARCH) ; fi
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
	$(GCC) -shared $(LFLAGS_LIBSA) -o $(LIBSA) $(OBJS) $(LIBS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
test.o: test.c
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
	$(GCC) -c -o test.o -g -D_GNU_SOURCE -D$(ARCH) $(INCLUDES) test.c
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
test: test.o
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
	$(GCC) -o test test.o -L$(ARCH) -lsaproc $(LIBS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
clean:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
	rm -rf $(LIBSA)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
	rm -rf $(OBJS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
	rmdir $(ARCH)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85