make/linux/makefiles/saproc.make

Fri, 25 Mar 2011 09:35:39 +0100

author
roland
date
Fri, 25 Mar 2011 09:35:39 +0100
changeset 2683
7e88bdae86ec
parent 2384
0a8e0d4345b3
child 3150
da0999c4b733
permissions
-rw-r--r--

7029017: Additional architecture support for c2 compiler
Summary: Enables cross building of a c2 VM. Support masking of shift counts when the processor architecture mandates it.
Reviewed-by: kvn, never

     1 #
     2 # Copyright (c) 2005, 2010, 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 # Rules to build serviceability agent library, used by vm.make
    27 # libsaproc[_g].so: serviceability agent
    29 SAPROC = saproc
    30 LIBSAPROC = lib$(SAPROC).so
    32 SAPROC_G = $(SAPROC)$(G_SUFFIX)
    33 LIBSAPROC_G = lib$(SAPROC_G).so
    35 AGENT_DIR = $(GAMMADIR)/agent
    37 SASRCDIR = $(AGENT_DIR)/src/os/$(Platform_os_family)
    39 SASRCFILES = $(SASRCDIR)/salibelf.c                   \
    40              $(SASRCDIR)/symtab.c                     \
    41              $(SASRCDIR)/libproc_impl.c               \
    42              $(SASRCDIR)/ps_proc.c                    \
    43              $(SASRCDIR)/ps_core.c                    \
    44              $(SASRCDIR)/LinuxDebuggerLocal.c
    46 SAMAPFILE = $(SASRCDIR)/mapfile
    48 DEST_SAPROC = $(JDK_LIBDIR)/$(LIBSAPROC)
    50 # DEBUG_BINARIES overrides everything, use full -g debug information
    51 ifeq ($(DEBUG_BINARIES), true)
    52   SA_DEBUG_CFLAGS = -g
    53 endif
    55 # if $(AGENT_DIR) does not exist, we don't build SA
    56 # also, we don't build SA on Itanium, PPC, ARM or zero.
    58 ifneq ($(wildcard $(AGENT_DIR)),)
    59 ifneq ($(filter-out ia64 arm ppc zero,$(SRCARCH)),)
    60   BUILDLIBSAPROC = $(LIBSAPROC)
    61 endif
    62 endif
    65 SA_LFLAGS = $(MAPFLAG:FILENAME=$(SAMAPFILE)) $(LDFLAGS_HASH_STYLE)
    67 $(LIBSAPROC): $(SASRCFILES) $(SAMAPFILE)
    68 	$(QUIETLY) if [ "$(BOOT_JAVA_HOME)" = "" ]; then \
    69 	  echo "ALT_BOOTDIR, BOOTDIR or JAVA_HOME needs to be defined to build SA"; \
    70 	  exit 1; \
    71 	fi
    72 	@echo Making SA debugger back-end...
    73 	$(QUIETLY) $(CC) -D$(BUILDARCH) -D_GNU_SOURCE                   \
    74                    $(SYMFLAG) $(ARCHFLAG) $(SHARED_FLAG) $(PICFLAG)     \
    75 	           -I$(SASRCDIR)                                        \
    76 	           -I$(GENERATED)                                       \
    77 	           -I$(BOOT_JAVA_HOME)/include                          \
    78 	           -I$(BOOT_JAVA_HOME)/include/$(Platform_os_family)    \
    79 	           $(SASRCFILES)                                        \
    80 	           $(SA_LFLAGS)                                         \
    81 	           $(SA_DEBUG_CFLAGS)                                   \
    82 	           -o $@                                                \
    83 	           -lthread_db
    84 	$(QUIETLY) [ -f $(LIBSAPROC_G) ] || { ln -s $@ $(LIBSAPROC_G); }
    86 install_saproc: $(BUILDLIBSAPROC)
    87 	$(QUIETLY) if [ -e $(LIBSAPROC) ] ; then             \
    88 	  echo "Copying $(LIBSAPROC) to $(DEST_SAPROC)";     \
    89 	  cp -f $(LIBSAPROC) $(DEST_SAPROC) && echo "Done";  \
    90 	fi
    92 .PHONY: install_saproc

mercurial