make/linux/makefiles/launcher.make

Thu, 27 May 2010 19:08:38 -0700

author
trims
date
Thu, 27 May 2010 19:08:38 -0700
changeset 1907
c18cbe5936b8
parent 1558
167c2986d91b
child 2314
f95d63e2154a
permissions
-rw-r--r--

6941466: Oracle rebranding changes for Hotspot repositories
Summary: Change all the Sun copyrights to Oracle copyright
Reviewed-by: ohair

     1 #
     2 # Copyright (c) 2005, 2008, 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 gamma launcher, used by vm.make
    27 # gamma[_g]: launcher
    29 LAUNCHER   = gamma
    30 LAUNCHER_G = $(LAUNCHER)$(G_SUFFIX)
    32 LAUNCHERDIR   = $(GAMMADIR)/src/os/$(Platform_os_family)/launcher
    33 LAUNCHERFLAGS = $(ARCHFLAG) \
    34                 -I$(LAUNCHERDIR) -I$(GAMMADIR)/src/share/vm/prims \
    35                 -DFULL_VERSION=\"$(HOTSPOT_RELEASE_VERSION)\" \
    36                 -DARCH=\"$(LIBARCH)\" \
    37                 -DGAMMA \
    38                 -DLAUNCHER_TYPE=\"gamma\" \
    39                 -DLINK_INTO_$(LINK_INTO)
    41 ifeq ($(LINK_INTO),AOUT)
    42   LAUNCHER.o                 = launcher.o $(JVM_OBJ_FILES)
    43   LAUNCHER_MAPFILE           = mapfile_reorder
    44   LFLAGS_LAUNCHER$(LDNOMAP) += $(MAPFLAG:FILENAME=$(LAUNCHER_MAPFILE))
    45   LFLAGS_LAUNCHER           += $(SONAMEFLAG:SONAME=$(LIBJVM)) $(STATIC_LIBGCC)
    46   LIBS_LAUNCHER             += $(STATIC_STDCXX) $(LIBS)
    47 else
    48   LAUNCHER.o                 = launcher.o
    49   LFLAGS_LAUNCHER           += -L `pwd`
    50   LIBS_LAUNCHER             += -l$(JVM) $(LIBS)
    51 endif
    53 LINK_LAUNCHER = $(LINK.c)
    55 LINK_LAUNCHER/PRE_HOOK  = $(LINK_LIB.CC/PRE_HOOK)
    56 LINK_LAUNCHER/POST_HOOK = $(LINK_LIB.CC/POST_HOOK)
    58 launcher.o: launcher.c $(LAUNCHERDIR)/java.c $(LAUNCHERDIR)/java_md.c
    59 	$(CC) -g -c -o $@ launcher.c $(LAUNCHERFLAGS) $(CPPFLAGS)
    61 launcher.c:
    62 	@echo Generating $@
    63 	$(QUIETLY) { \
    64 	echo '#define debug launcher_debug'; \
    65 	echo '#include "java.c"'; \
    66 	echo '#include "java_md.c"'; \
    67 	} > $@
    69 $(LAUNCHER): $(LAUNCHER.o) $(LIBJVM) $(LAUNCHER_MAPFILE)
    70 	$(QUIETLY) { \
    71 	    echo Linking launcher...; \
    72 	    $(LINK_LAUNCHER/PRE_HOOK) \
    73 	    $(LINK_LAUNCHER) $(LFLAGS_LAUNCHER) -o $@ $(LAUNCHER.o) $(LIBS_LAUNCHER); \
    74 	    $(LINK_LAUNCHER/POST_HOOK) \
    75 	    [ -f $(LAUNCHER_G) ] || { ln -s $@ $(LAUNCHER_G); }; \
    76         }

mercurial