make/linux/makefiles/launcher.make

Tue, 23 Nov 2010 13:22:55 -0800

author
stefank
date
Tue, 23 Nov 2010 13:22:55 -0800
changeset 2314
f95d63e2154a
parent 1907
c18cbe5936b8
child 2327
cb2d0a362639
permissions
-rw-r--r--

6989984: Use standard include model for Hospot
Summary: Replaced MakeDeps and the includeDB files with more standardized solutions.
Reviewed-by: coleenp, kvn, kamg

duke@435 1 #
stefank@2314 2 # Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
duke@435 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 #
duke@435 5 # This code is free software; you can redistribute it and/or modify it
duke@435 6 # under the terms of the GNU General Public License version 2 only, as
duke@435 7 # published by the Free Software Foundation.
duke@435 8 #
duke@435 9 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 # version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 # accompanied this code).
duke@435 14 #
duke@435 15 # You should have received a copy of the GNU General Public License version
duke@435 16 # 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 #
trims@1907 19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 # or visit www.oracle.com if you need additional information or have any
trims@1907 21 # questions.
duke@435 22 #
duke@435 23 #
duke@435 24
duke@435 25 # Rules to build gamma launcher, used by vm.make
duke@435 26
duke@435 27 # gamma[_g]: launcher
phh@1558 28
phh@1558 29 LAUNCHER = gamma
phh@1558 30 LAUNCHER_G = $(LAUNCHER)$(G_SUFFIX)
duke@435 31
duke@435 32 LAUNCHERDIR = $(GAMMADIR)/src/os/$(Platform_os_family)/launcher
duke@435 33 LAUNCHERFLAGS = $(ARCHFLAG) \
duke@435 34 -I$(LAUNCHERDIR) -I$(GAMMADIR)/src/share/vm/prims \
duke@435 35 -DFULL_VERSION=\"$(HOTSPOT_RELEASE_VERSION)\" \
duke@435 36 -DARCH=\"$(LIBARCH)\" \
duke@435 37 -DGAMMA \
duke@435 38 -DLAUNCHER_TYPE=\"gamma\" \
duke@435 39 -DLINK_INTO_$(LINK_INTO)
duke@435 40
duke@435 41 ifeq ($(LINK_INTO),AOUT)
duke@435 42 LAUNCHER.o = launcher.o $(JVM_OBJ_FILES)
duke@435 43 LAUNCHER_MAPFILE = mapfile_reorder
duke@435 44 LFLAGS_LAUNCHER$(LDNOMAP) += $(MAPFLAG:FILENAME=$(LAUNCHER_MAPFILE))
duke@435 45 LFLAGS_LAUNCHER += $(SONAMEFLAG:SONAME=$(LIBJVM)) $(STATIC_LIBGCC)
duke@435 46 LIBS_LAUNCHER += $(STATIC_STDCXX) $(LIBS)
duke@435 47 else
duke@435 48 LAUNCHER.o = launcher.o
duke@435 49 LFLAGS_LAUNCHER += -L `pwd`
duke@435 50 LIBS_LAUNCHER += -l$(JVM) $(LIBS)
duke@435 51 endif
duke@435 52
duke@435 53 LINK_LAUNCHER = $(LINK.c)
duke@435 54
duke@435 55 LINK_LAUNCHER/PRE_HOOK = $(LINK_LIB.CC/PRE_HOOK)
duke@435 56 LINK_LAUNCHER/POST_HOOK = $(LINK_LIB.CC/POST_HOOK)
duke@435 57
duke@435 58 launcher.o: launcher.c $(LAUNCHERDIR)/java.c $(LAUNCHERDIR)/java_md.c
stefank@2314 59 $(CC) -g -c -o $@ launcher.c $(LAUNCHERFLAGS) $(CPPFLAGS) $(TARGET_DEFINES)
duke@435 60
duke@435 61 launcher.c:
duke@435 62 @echo Generating $@
duke@435 63 $(QUIETLY) { \
duke@435 64 echo '#define debug launcher_debug'; \
duke@435 65 echo '#include "java.c"'; \
duke@435 66 echo '#include "java_md.c"'; \
duke@435 67 } > $@
duke@435 68
duke@435 69 $(LAUNCHER): $(LAUNCHER.o) $(LIBJVM) $(LAUNCHER_MAPFILE)
duke@435 70 $(QUIETLY) { \
duke@435 71 echo Linking launcher...; \
duke@435 72 $(LINK_LAUNCHER/PRE_HOOK) \
duke@435 73 $(LINK_LAUNCHER) $(LFLAGS_LAUNCHER) -o $@ $(LAUNCHER.o) $(LIBS_LAUNCHER); \
duke@435 74 $(LINK_LAUNCHER/POST_HOOK) \
phh@1558 75 [ -f $(LAUNCHER_G) ] || { ln -s $@ $(LAUNCHER_G); }; \
duke@435 76 }

mercurial