agent/src/os/bsd/Makefile

Thu, 13 Oct 2011 09:35:42 -0700

author
dcubed
date
Thu, 13 Oct 2011 09:35:42 -0700
changeset 3202
436b4a3231bf
parent 3156
f08d439fab8c
child 4750
39432a1cefdd
permissions
-rw-r--r--

7098194: integrate macosx-port changes
Summary: Integrate bsd-port/hotspot and macosx-port/hotspot changes as of 2011.09.29.
Reviewed-by: kvn, dholmes, never, phh
Contributed-by: Christos Zoulas <christos@zoulas.com>, Greg Lewis <glewis@eyesbeyond.com>, Kurt Miller <kurt@intricatesoftware.com>, Alexander Strange <astrange@apple.com>, Mike Swingler <swingler@apple.com>, Roger Hoover <rhoover@apple.com>, Victor Hernandez <vhernandez@apple.com>, Pratik Solanki <psolanki@apple.com>

     1 #
     2 # Copyright (c) 2002, 2009, Oracle and/or its affiliates. All rights reserved.
     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 #
    19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20 # or visit www.oracle.com if you need additional information or have any
    21 # questions.
    22 #  
    23 #
    25 ARCH := $(shell if ([ `uname -m` = "ia64" ])  ; then echo ia64 ; elif ([ `uname -m` = "amd64" ]) ; then echo amd64; elif ([ `uname -m` = "sparc64" ]) ; then echo sparc; else echo i386 ; fi )
    26 GCC      = gcc
    28 JAVAH    = ${JAVA_HOME}/bin/javah
    30 SOURCES  = salibelf.c   \
    31         symtab.c        \
    32 	libproc_impl.c  \
    33 	ps_proc.c       \
    34 	ps_core.c       \
    35 	BsdDebuggerLocal.c
    37 INCLUDES = -I${JAVA_HOME}/include -I${JAVA_HOME}/include/$(shell uname -s | tr "[:upper:]" "[:lower:]")
    39 OBJS     = $(SOURCES:.c=.o)
    41 LIBS     = -lutil -lthread_db
    43 CFLAGS   = -c -fPIC -g -Wall -D_ALLBSD_SOURCE -D_GNU_SOURCE -D$(ARCH) $(INCLUDES)
    45 LIBSA = $(ARCH)/libsaproc.so
    47 all: $(LIBSA)
    49 BsdDebuggerLocal.o: BsdDebuggerLocal.c
    50 	$(JAVAH) -jni -classpath ../../../../../build/bsd-i586/hotspot/outputdir/bsd_i486_compiler2/generated/saclasses  \
    51 		sun.jvm.hotspot.debugger.x86.X86ThreadContext \
    52 		sun.jvm.hotspot.debugger.amd64.AMD64ThreadContext
    53 	$(GCC) $(CFLAGS) $<
    55 .c.obj:
    56 	$(GCC) $(CFLAGS)
    58 ifndef LDNOMAP
    59   LFLAGS_LIBSA = -Xlinker --version-script=mapfile
    60 endif
    62 $(LIBSA): $(OBJS) mapfile
    63 	if [ ! -d $(ARCH) ] ; then mkdir $(ARCH) ; fi
    64 	$(GCC) -shared $(LFLAGS_LIBSA) -o $(LIBSA) $(OBJS) $(LIBS)
    66 test.o: $(LIBSA) test.c
    67 	$(GCC) -c -o test.o -g -D_GNU_SOURCE -D$(ARCH) $(INCLUDES) test.c
    69 test: test.o
    70 	$(GCC) -o test test.o -L$(ARCH) -lsaproc $(LIBS)
    72 clean:
    73 	rm -f $(LIBSA)
    74 	rm -f $(OBJS)
    75 	rm -f test.o
    76 	-rmdir $(ARCH)

mercurial